chore: gitignore .understand-anything (local knowledge graph index)
The .understand-anything/ directory is a tool-generated local index, not project code. Remove 4 tracked files from index and add to .gitignore.
This commit is contained in:
parent
7376005868
commit
9e2ccf5ac9
|
|
@ -52,3 +52,6 @@ data/
|
|||
.agents/
|
||||
.trae/
|
||||
.aider*
|
||||
|
||||
# Knowledge graph tooling (local-only, generated index)
|
||||
.understand-anything/
|
||||
|
|
|
|||
|
|
@ -1,315 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Fischer AgentKit - Knowledge Graph Dashboard</title>
|
||||
<script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0f172a; color: #e2e8f0; overflow: hidden; height: 100vh; }
|
||||
.header { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #334155; }
|
||||
.header h1 { font-size: 18px; font-weight: 600; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
||||
.stats { display: flex; gap: 16px; font-size: 13px; color: #94a3b8; }
|
||||
.stats span { padding: 4px 10px; background: #1e293b; border-radius: 6px; border: 1px solid #334155; }
|
||||
.main { display: flex; height: calc(100vh - 52px); }
|
||||
.sidebar { width: 340px; background: #1e293b; border-right: 1px solid #334155; display: flex; flex-direction: column; overflow: hidden; }
|
||||
.search-box { padding: 12px; border-bottom: 1px solid #334155; }
|
||||
.search-box input { width: 100%; padding: 8px 12px; background: #0f172a; border: 1px solid #475569; border-radius: 8px; color: #e2e8f0; font-size: 14px; outline: none; }
|
||||
.search-box input:focus { border-color: #60a5fa; }
|
||||
.tabs { display: flex; border-bottom: 1px solid #334155; }
|
||||
.tab { flex: 1; padding: 8px; text-align: center; font-size: 13px; cursor: pointer; color: #94a3b8; border-bottom: 2px solid transparent; transition: all 0.2s; }
|
||||
.tab.active { color: #60a5fa; border-bottom-color: #60a5fa; }
|
||||
.tab:hover { color: #e2e8f0; }
|
||||
.content { flex: 1; overflow-y: auto; padding: 8px; }
|
||||
.content::-webkit-scrollbar { width: 6px; }
|
||||
.content::-webkit-scrollbar-thumb { background: #475569; border-radius: 3px; }
|
||||
.node-item { padding: 8px 12px; border-radius: 6px; cursor: pointer; margin-bottom: 4px; transition: background 0.15s; border: 1px solid transparent; }
|
||||
.node-item:hover { background: #334155; border-color: #475569; }
|
||||
.node-item.selected { background: #1e3a5f; border-color: #60a5fa; }
|
||||
.node-item .name { font-size: 13px; font-weight: 500; color: #e2e8f0; }
|
||||
.node-item .meta { font-size: 11px; color: #64748b; margin-top: 2px; }
|
||||
.badge { display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 10px; font-weight: 600; margin-left: 6px; }
|
||||
.badge.file { background: #1e3a5f; color: #60a5fa; }
|
||||
.badge.class { background: #3b1f5e; color: #c084fc; }
|
||||
.badge.function { background: #1a3d2e; color: #4ade80; }
|
||||
.badge.api { background: #7c2d12; color: #fb923c; }
|
||||
.badge.service { background: #1e3a5f; color: #60a5fa; }
|
||||
.badge.data { background: #3b1f5e; color: #c084fc; }
|
||||
.badge.utility { background: #1a3d2e; color: #4ade80; }
|
||||
.graph-container { flex: 1; position: relative; }
|
||||
#graph { width: 100%; height: 100%; }
|
||||
.detail-panel { position: absolute; right: 16px; top: 16px; width: 320px; background: rgba(30,41,59,0.95); border: 1px solid #475569; border-radius: 12px; padding: 16px; display: none; backdrop-filter: blur(12px); max-height: calc(100vh - 100px); overflow-y: auto; }
|
||||
.detail-panel.show { display: block; }
|
||||
.detail-panel h3 { font-size: 15px; color: #60a5fa; margin-bottom: 8px; }
|
||||
.detail-panel .summary { font-size: 13px; color: #cbd5e1; line-height: 1.5; margin-bottom: 12px; }
|
||||
.detail-panel .field { font-size: 12px; color: #94a3b8; margin-bottom: 6px; }
|
||||
.detail-panel .field strong { color: #e2e8f0; }
|
||||
.detail-panel .edges-list { margin-top: 8px; }
|
||||
.detail-panel .edge-item { font-size: 12px; padding: 4px 8px; background: #0f172a; border-radius: 4px; margin-bottom: 3px; cursor: pointer; }
|
||||
.detail-panel .edge-item:hover { background: #334155; }
|
||||
.tour-panel { padding: 8px; }
|
||||
.tour-card { background: #0f172a; border: 1px solid #334155; border-radius: 8px; padding: 12px; margin-bottom: 8px; cursor: pointer; transition: border-color 0.2s; }
|
||||
.tour-card:hover { border-color: #60a5fa; }
|
||||
.tour-card h4 { font-size: 13px; color: #e2e8f0; margin-bottom: 4px; }
|
||||
.tour-card p { font-size: 11px; color: #64748b; }
|
||||
.tour-steps { margin-top: 8px; }
|
||||
.tour-step { display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-size: 12px; color: #94a3b8; border-radius: 4px; cursor: pointer; }
|
||||
.tour-step:hover { background: #334155; color: #e2e8f0; }
|
||||
.tour-step .num { width: 20px; height: 20px; background: #334155; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #60a5fa; flex-shrink: 0; }
|
||||
.layer-filter { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px 12px; border-bottom: 1px solid #334155; }
|
||||
.layer-btn { padding: 3px 8px; border-radius: 4px; font-size: 11px; cursor: pointer; border: 1px solid #475569; background: transparent; color: #94a3b8; transition: all 0.15s; }
|
||||
.layer-btn.active { background: #334155; color: #e2e8f0; border-color: #60a5fa; }
|
||||
.close-btn { position: absolute; top: 8px; right: 8px; background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 16px; }
|
||||
.close-btn:hover { color: #e2e8f0; }
|
||||
.loading { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 16px; color: #60a5fa; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<h1>Fischer AgentKit Knowledge Graph</h1>
|
||||
<div class="stats" id="stats"></div>
|
||||
</div>
|
||||
<div class="main">
|
||||
<div class="sidebar">
|
||||
<div class="search-box">
|
||||
<input type="text" id="search" placeholder="Search nodes..." />
|
||||
</div>
|
||||
<div class="layer-filter" id="layerFilter"></div>
|
||||
<div class="tabs">
|
||||
<div class="tab active" data-tab="nodes">Nodes</div>
|
||||
<div class="tab" data-tab="tours">Tours</div>
|
||||
</div>
|
||||
<div class="content" id="nodeList"></div>
|
||||
<div class="content" id="tourList" style="display:none"></div>
|
||||
</div>
|
||||
<div class="graph-container">
|
||||
<div id="graph"></div>
|
||||
<div class="detail-panel" id="detailPanel">
|
||||
<button class="close-btn" onclick="document.getElementById('detailPanel').classList.remove('show')">×</button>
|
||||
<div id="detailContent"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
let graphData = null;
|
||||
let network = null;
|
||||
let nodesDataset = null;
|
||||
let edgesDataset = null;
|
||||
let activeLayers = new Set(['api', 'service', 'data', 'utility', 'unknown']);
|
||||
let selectedNodeId = null;
|
||||
|
||||
const LAYER_COLORS = {
|
||||
api: { bg: '#fb923c', border: '#ea580c', highlight: '#fdba74' },
|
||||
service: { bg: '#60a5fa', border: '#2563eb', highlight: '#93c5fd' },
|
||||
data: { bg: '#c084fc', border: '#9333ea', highlight: '#d8b4fe' },
|
||||
utility: { bg: '#4ade80', border: '#16a34a', highlight: '#86efac' },
|
||||
unknown: { bg: '#94a3b8', border: '#64748b', highlight: '#cbd5e1' }
|
||||
};
|
||||
|
||||
const TYPE_SHAPES = { file: 'box', class: 'diamond', function: 'dot' };
|
||||
|
||||
async function loadGraph() {
|
||||
try {
|
||||
const resp = await fetch('knowledge-graph.json');
|
||||
graphData = await resp.json();
|
||||
initDashboard();
|
||||
} catch(e) {
|
||||
document.getElementById('graph').innerHTML = '<div class="loading">Failed to load knowledge-graph.json</div>';
|
||||
}
|
||||
}
|
||||
|
||||
function initDashboard() {
|
||||
const { nodes, edges, tours, project } = graphData;
|
||||
document.getElementById('stats').innerHTML = `
|
||||
<span>${nodes.length} Nodes</span>
|
||||
<span>${edges.length} Edges</span>
|
||||
<span>${tours.length} Tours</span>
|
||||
<span>${project.languages.join(', ')}</span>
|
||||
`;
|
||||
renderLayerFilter(nodes);
|
||||
renderNodeList(nodes);
|
||||
renderTourList(tours);
|
||||
initGraph(nodes, edges);
|
||||
initSearch(nodes);
|
||||
initTabs();
|
||||
}
|
||||
|
||||
function renderLayerFilter(nodes) {
|
||||
const layers = [...new Set(nodes.map(n => n.layer).filter(Boolean))];
|
||||
const container = document.getElementById('layerFilter');
|
||||
container.innerHTML = layers.map(l =>
|
||||
`<button class="layer-btn active" data-layer="${l}">${l}</button>`
|
||||
).join('');
|
||||
container.querySelectorAll('.layer-btn').forEach(btn => {
|
||||
btn.onclick = () => {
|
||||
const layer = btn.dataset.layer;
|
||||
if (activeLayers.has(layer)) { activeLayers.delete(layer); btn.classList.remove('active'); }
|
||||
else { activeLayers.add(layer); btn.classList.add('active'); }
|
||||
filterGraph();
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
function renderNodeList(nodes) {
|
||||
const container = document.getElementById('nodeList');
|
||||
const filtered = nodes.filter(n => activeLayers.has(n.layer));
|
||||
container.innerHTML = filtered.slice(0, 200).map(n => `
|
||||
<div class="node-item" data-id="${n.id}">
|
||||
<div class="name">${n.name} <span class="badge ${n.type}">${n.type}</span> <span class="badge ${n.layer}">${n.layer}</span></div>
|
||||
<div class="meta">${n.filePath || ''}</div>
|
||||
</div>
|
||||
`).join('');
|
||||
container.querySelectorAll('.node-item').forEach(el => {
|
||||
el.onclick = () => focusNode(el.dataset.id);
|
||||
});
|
||||
}
|
||||
|
||||
function renderTourList(tours) {
|
||||
const container = document.getElementById('tourList');
|
||||
container.innerHTML = tours.map((t, i) => `
|
||||
<div class="tour-card" data-tour="${i}">
|
||||
<h4>${t.name}</h4>
|
||||
<p>${t.description}</p>
|
||||
<div class="tour-steps">
|
||||
${t.steps.map((s, j) => `
|
||||
<div class="tour-step" data-node="${s.nodeId}">
|
||||
<span class="num">${j+1}</span>
|
||||
<span>${s.why || s.nodeId}</span>
|
||||
</div>
|
||||
`).join('')}
|
||||
</div>
|
||||
</div>
|
||||
`).join('');
|
||||
container.querySelectorAll('.tour-step').forEach(el => {
|
||||
el.onclick = (e) => { e.stopPropagation(); focusNode(el.dataset.node); };
|
||||
});
|
||||
}
|
||||
|
||||
function initGraph(nodes, edges) {
|
||||
const visNodes = nodes.filter(n => activeLayers.has(n.layer)).map(n => {
|
||||
const colors = LAYER_COLORS[n.layer] || LAYER_COLORS.unknown;
|
||||
return {
|
||||
id: n.id,
|
||||
label: n.name,
|
||||
shape: TYPE_SHAPES[n.type] || 'dot',
|
||||
color: colors,
|
||||
font: { color: '#e2e8f0', size: n.type === 'file' ? 12 : 10 },
|
||||
size: n.type === 'file' ? 20 : n.type === 'class' ? 15 : 8,
|
||||
title: `${n.name}\n${n.summary || ''}\n[${n.layer}]`,
|
||||
...n
|
||||
};
|
||||
});
|
||||
|
||||
const nodeIds = new Set(visNodes.map(n => n.id));
|
||||
const visEdges = edges.filter(e => nodeIds.has(e.source) && nodeIds.has(e.target)).map((e, i) => ({
|
||||
id: e.id || `edge-${i}`,
|
||||
from: e.source,
|
||||
to: e.target,
|
||||
arrows: e.type === 'contains' ? '' : 'to',
|
||||
color: { color: '#334155', highlight: '#60a5fa', hover: '#475569' },
|
||||
width: 0.5,
|
||||
dashes: e.type === 'imports',
|
||||
title: e.type
|
||||
}));
|
||||
|
||||
nodesDataset = new vis.DataSet(visNodes);
|
||||
edgesDataset = new vis.DataSet(visEdges);
|
||||
|
||||
const container = document.getElementById('graph');
|
||||
const data = { nodes: nodesDataset, edges: edgesDataset };
|
||||
const options = {
|
||||
physics: { barnesHut: { gravitationalConstant: -3000, centralGravity: 0.3, springLength: 80, springConstant: 0.04 }, stabilization: { iterations: 100 } },
|
||||
interaction: { hover: true, tooltipDelay: 200, navigationButtons: true, keyboard: true },
|
||||
layout: { improvedLayout: true }
|
||||
};
|
||||
network = new vis.Network(container, data, options);
|
||||
network.on('click', params => {
|
||||
if (params.nodes.length > 0) focusNode(params.nodes[0]);
|
||||
});
|
||||
}
|
||||
|
||||
function filterGraph() {
|
||||
const nodes = graphData.nodes.filter(n => activeLayers.has(n.layer));
|
||||
renderNodeList(nodes);
|
||||
if (nodesDataset) {
|
||||
const nodeIds = new Set(nodes.map(n => n.id));
|
||||
const edges = graphData.edges.filter(e => nodeIds.has(e.source) && nodeIds.has(e.target));
|
||||
nodesDataset.clear();
|
||||
nodesDataset.add(nodes.map(n => {
|
||||
const colors = LAYER_COLORS[n.layer] || LAYER_COLORS.unknown;
|
||||
return { id: n.id, label: n.name, shape: TYPE_SHAPES[n.type] || 'dot', color: colors, font: { color: '#e2e8f0', size: n.type === 'file' ? 12 : 10 }, size: n.type === 'file' ? 20 : n.type === 'class' ? 15 : 8, title: `${n.name}\n${n.summary || ''}\n[${n.layer}]`, ...n };
|
||||
}));
|
||||
edgesDataset.clear();
|
||||
edgesDataset.add(edges.map((e, i) => ({ id: e.id || `edge-${i}`, from: e.source, to: e.target, arrows: e.type === 'contains' ? '' : 'to', color: { color: '#334155', highlight: '#60a5fa', hover: '#475569' }, width: 0.5, dashes: e.type === 'imports', title: e.type })));
|
||||
}
|
||||
}
|
||||
|
||||
function focusNode(nodeId) {
|
||||
selectedNodeId = nodeId;
|
||||
const node = graphData.nodes.find(n => n.id === nodeId);
|
||||
if (!node) return;
|
||||
|
||||
document.querySelectorAll('.node-item').forEach(el => el.classList.remove('selected'));
|
||||
const el = document.querySelector(`.node-item[data-id="${nodeId}"]`);
|
||||
if (el) { el.classList.add('selected'); el.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }
|
||||
|
||||
if (network) {
|
||||
network.focus(nodeId, { scale: 1.5, animation: { duration: 500, easingFunction: 'easeInOutQuad' } });
|
||||
network.selectNodes([nodeId]);
|
||||
}
|
||||
|
||||
const inEdges = graphData.edges.filter(e => e.target === nodeId);
|
||||
const outEdges = graphData.edges.filter(e => e.source === nodeId);
|
||||
|
||||
const panel = document.getElementById('detailPanel');
|
||||
const content = document.getElementById('detailContent');
|
||||
content.innerHTML = `
|
||||
<h3>${node.name}</h3>
|
||||
<div class="summary">${node.summary || 'No summary'}</div>
|
||||
<div class="field"><strong>Type:</strong> ${node.type}</div>
|
||||
<div class="field"><strong>Layer:</strong> ${node.layer}</div>
|
||||
<div class="field"><strong>Path:</strong> ${node.filePath || '-'}</div>
|
||||
<div class="field"><strong>Complexity:</strong> ${node.complexity || '-'}</div>
|
||||
${node.tags ? `<div class="field"><strong>Tags:</strong> ${node.tags.join(', ')}</div>` : ''}
|
||||
${inEdges.length > 0 ? `<div class="edges-list"><strong>Incoming (${inEdges.length}):</strong>${inEdges.slice(0,10).map(e => `<div class="edge-item" onclick="focusNode('${e.source}')">${e.type} ← ${e.source.split(':').pop()}</div>`).join('')}</div>` : ''}
|
||||
${outEdges.length > 0 ? `<div class="edges-list"><strong>Outgoing (${outEdges.length}):</strong>${outEdges.slice(0,10).map(e => `<div class="edge-item" onclick="focusNode('${e.target}')">${e.type} → ${e.target.split(':').pop()}</div>`).join('')}</div>` : ''}
|
||||
`;
|
||||
panel.classList.add('show');
|
||||
}
|
||||
|
||||
function initSearch(nodes) {
|
||||
const input = document.getElementById('search');
|
||||
input.oninput = () => {
|
||||
const q = input.value.toLowerCase();
|
||||
const filtered = nodes.filter(n =>
|
||||
activeLayers.has(n.layer) &&
|
||||
(n.name.toLowerCase().includes(q) || (n.summary || '').toLowerCase().includes(q) || (n.filePath || '').toLowerCase().includes(q))
|
||||
);
|
||||
renderNodeList(filtered);
|
||||
if (q.length > 1 && network) {
|
||||
const matchIds = filtered.map(n => n.id);
|
||||
if (matchIds.length > 0 && matchIds.length < 50) {
|
||||
network.fit({ nodes: matchIds, animation: { duration: 500 } });
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function initTabs() {
|
||||
document.querySelectorAll('.tab').forEach(tab => {
|
||||
tab.onclick = () => {
|
||||
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
|
||||
tab.classList.add('active');
|
||||
const target = tab.dataset.tab;
|
||||
document.getElementById('nodeList').style.display = target === 'nodes' ? 'block' : 'none';
|
||||
document.getElementById('tourList').style.display = target === 'tours' ? 'block' : 'none';
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
loadGraph();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,526 +0,0 @@
|
|||
{
|
||||
"configs/__init__.py": "c177bc3f2e94623f",
|
||||
"configs/geo_handlers.py": "4df68c7922568aab",
|
||||
"configs/geo_server.py": "189e38838336cad4",
|
||||
"configs/geo_tools.py": "3c442267d598dc1c",
|
||||
"docs/GEO-INTEGRATION-GUIDE.md": "bf3dfb02cf6846e1",
|
||||
"docs/brainstorms/2026-06-05-agentkit-architecture-gap-analysis-requirements.md": "eb46b87f5cdca0fa",
|
||||
"docs/brainstorms/2026-06-09-agentkit-capability-matrix/plan.md": "5829f1e545a08f0f",
|
||||
"docs/brainstorms/2026-06-09-agentkit-capability-matrix/requirements.md": "50e4f91f200089a8",
|
||||
"docs/brainstorms/2026-06-09-clawith-research-prompt.md": "82cbce39736c76dc",
|
||||
"docs/brainstorms/2026-06-12-frontend-productization-requirements.md": "41bb5034978e107c",
|
||||
"docs/brainstorms/2026-06-13-agentkit-platform-experience-upgrade-requirements.md": "97b00dd54e012bfd",
|
||||
"docs/brainstorms/2026-06-13-gui-productization-requirements.md": "501f89238bc6e504",
|
||||
"docs/brainstorms/2026-06-13-gui-redesign-requirements.md": "e703c3a1dff253c8",
|
||||
"docs/plans/2026-06-05-001-feat-agentkit-tdd-validation-plan.md": "cb31514b78616c90",
|
||||
"docs/plans/2026-06-05-002-design-agentkit-v2-architecture.md": "e64efa0d464352d6",
|
||||
"docs/plans/2026-06-05-003-feat-agentkit-v2-phase1-plan.md": "8bfaed59f42e58eb",
|
||||
"docs/plans/2026-06-05-004-geo-migration-mode-a.md": "552e179027bd15cc",
|
||||
"docs/plans/2026-06-05-005-refactor-agentkit-framework-hardening.md": "00cf6aa686fbe699",
|
||||
"docs/plans/2026-06-05-006-refactor-agentkit-v2-phase2-plan.md": "c58751ee3720d3f1",
|
||||
"docs/plans/2026-06-05-007-feat-agentkit-cli-deployment-plan.md": "c21d783c264ce1dc",
|
||||
"docs/plans/2026-06-06-008-feat-agentkit-phase3-upgrade-plan.md": "1ba1a31257aeb6ee",
|
||||
"docs/plans/2026-06-06-009-feat-agentkit-rag-optimization-plan.md": "596b971c39b92374",
|
||||
"docs/plans/2026-06-06-010-feat-agentkit-phase4-production-plan.md": "f5443a0b04f80eca",
|
||||
"docs/plans/2026-06-06-011-feat-agentkit-phase5-intelligence-plan.md": "35083bba9d52c3a4",
|
||||
"docs/plans/2026-06-07-012-feat-agentkit-phase6-toolkit-plan.md": "110616fdbf34b501",
|
||||
"docs/plans/2026-06-07-013-feat-agentkit-phase7-headroom-plan.md": "c4a730d9d1b1e3bc",
|
||||
"docs/plans/2026-06-07-014-fix-agentkit-p0-review-fixes-plan.md": "4b62eee79a38f8c0",
|
||||
"docs/plans/2026-06-07-015-feat-agentkit-phase8-chat-adaptive-plan.md": "d9730989b4e1056b",
|
||||
"docs/plans/2026-06-08-016-feat-agentkit-layered-memory-plan.md": "0fbb6ba2badbd690",
|
||||
"docs/plans/2026-06-09-017-feat-agentkit-multi-agent-marketplace-plan.md": "125227b9fab2f7cf",
|
||||
"docs/plans/2026-06-10-018-fix-agentkit-p2-hardening-plan.md": "fb2b2de97bc5d108",
|
||||
"docs/plans/2026-06-10-019-feat-agentkit-deferred-improvements-plan.md": "d59405e0d5660cbc",
|
||||
"docs/plans/2026-06-12-020-feat-pipeline-adversarial-loop-plan.md": "8d857040371b14c9",
|
||||
"docs/plans/2026-06-12-021-feat-chat-response-speed-optimization-plan.md": "9a5e58432a3b9bbd",
|
||||
"docs/plans/2026-06-12-022-feat-agentkit-phase9-integrated-next-stage-plan.md": "8a18b30c7a7d4976",
|
||||
"docs/plans/2026-06-12-023-feat-frontend-productization-plan.md": "c17f31ebce588103",
|
||||
"docs/plans/2026-06-13-001-feat-gui-productization-plan.md": "924d3081d6a4c328",
|
||||
"docs/plans/2026-06-13-001-refactor-gui-redesign-plan.md": "5ec64af7d790295e",
|
||||
"docs/plans/2026-06-13-003-feat-platform-experience-upgrade-plan.md": "354b625271f06f5e",
|
||||
"docs/plans/2026-06-13-004-feat-tauri-desktop-client-plan.md": "c9afebfb3dae8a90",
|
||||
"docs/plans/2026-06-14-001-feat-p0-production-hardening-plan.md": "29737af17bfd9ade",
|
||||
"docs/plans/2026-06-14-002-u1-llm-cache-architecture.md": "71feabd02ad95169",
|
||||
"docs/plans/2026-06-14-003-u2-llm-cache-integration.md": "853bfdf22312dbae",
|
||||
"docs/plans/2026-06-14-004-u3-semantic-router.md": "6c765cbc5140be53",
|
||||
"src/agentkit/__init__.py": "8f3077a792be01bf",
|
||||
"src/agentkit/__main__.py": "a79cda859a4ff1e4",
|
||||
"src/agentkit/bus/__init__.py": "46dddb662dbc4455",
|
||||
"src/agentkit/bus/interface.py": "4172d55fa0e96410",
|
||||
"src/agentkit/bus/memory_bus.py": "993b110d1aa1bf8b",
|
||||
"src/agentkit/bus/message.py": "21093d396668686e",
|
||||
"src/agentkit/bus/protocol.py": "ceb9511a718981ec",
|
||||
"src/agentkit/bus/redis_bus.py": "b18f9d14abb106a4",
|
||||
"src/agentkit/chat/__init__.py": "d41d8cd98f00b204",
|
||||
"src/agentkit/chat/semantic_router.py": "ce5293262dc5fc6d",
|
||||
"src/agentkit/chat/skill_routing.py": "4edfe82920e62b29",
|
||||
"src/agentkit/cli/__init__.py": "6be0f88bfb1933cd",
|
||||
"src/agentkit/cli/chat.py": "555a58858d7ac531",
|
||||
"src/agentkit/cli/init.py": "c941e7e24b524414",
|
||||
"src/agentkit/cli/main.py": "2f67646566ddbba2",
|
||||
"src/agentkit/cli/onboarding.py": "c62b4f1b5508b05f",
|
||||
"src/agentkit/cli/pair.py": "b796381a116076a3",
|
||||
"src/agentkit/cli/skill.py": "513a7848cf995b79",
|
||||
"src/agentkit/cli/task.py": "19ba46de4dfe86ee",
|
||||
"src/agentkit/cli/templates.py": "3e3ea04125ac45dd",
|
||||
"src/agentkit/cli/usage.py": "988272ab7ffb34ff",
|
||||
"src/agentkit/core/__init__.py": "6e1420ad43fe4f94",
|
||||
"src/agentkit/core/agent_pool.py": "38c413cc11f0be6c",
|
||||
"src/agentkit/core/base.py": "330fbf17f4dfa01b",
|
||||
"src/agentkit/core/compressor.py": "eae7a723d1b55bc3",
|
||||
"src/agentkit/core/config_driven.py": "7592e9094dcbfa8b",
|
||||
"src/agentkit/core/dispatcher.py": "a032ac64cc6d88e2",
|
||||
"src/agentkit/core/exceptions.py": "a2e3376e0b06c6df",
|
||||
"src/agentkit/core/goal_planner.py": "85a82ad127be83df",
|
||||
"src/agentkit/core/headroom_compressor.py": "79691d95f00a9f2c",
|
||||
"src/agentkit/core/logging.py": "4ca908eac76f4487",
|
||||
"src/agentkit/core/orchestrator.py": "0b73a7612bf0d5fb",
|
||||
"src/agentkit/core/plan_checker.py": "da4b29c79546f1ef",
|
||||
"src/agentkit/core/plan_exec_engine.py": "5e78dab734dbd7a5",
|
||||
"src/agentkit/core/plan_executor.py": "4e145a4903d2c159",
|
||||
"src/agentkit/core/plan_schema.py": "5516e66e2a5241a6",
|
||||
"src/agentkit/core/protocol.py": "6cfa0bfb01ee29f3",
|
||||
"src/agentkit/core/react.py": "77124fe27b73d5fa",
|
||||
"src/agentkit/core/reflexion.py": "23f90a739bfdb96b",
|
||||
"src/agentkit/core/registry.py": "537905f014c67bc9",
|
||||
"src/agentkit/core/rewoo.py": "3ad60b5f4015b434",
|
||||
"src/agentkit/core/shared_workspace.py": "a847f5a879c5c551",
|
||||
"src/agentkit/core/standalone.py": "aa0bf44a1b1649a6",
|
||||
"src/agentkit/core/trace.py": "b6a4f8cebca7d594",
|
||||
"src/agentkit/evaluation/__init__.py": "a330342ce4ca36e5",
|
||||
"src/agentkit/evaluation/ragas_evaluator.py": "8f8d3f013d02e8b4",
|
||||
"src/agentkit/evolution/__init__.py": "723b5130fb48b695",
|
||||
"src/agentkit/evolution/ab_tester.py": "7841dff79e521e81",
|
||||
"src/agentkit/evolution/evolution_store.py": "af3444081d9daa98",
|
||||
"src/agentkit/evolution/experience_schema.py": "d2c096f18e1699ef",
|
||||
"src/agentkit/evolution/experience_store.py": "d58a3d12c5bc9b2e",
|
||||
"src/agentkit/evolution/fitness.py": "cc3a200bc1a45f8c",
|
||||
"src/agentkit/evolution/genetic.py": "f688039da416f456",
|
||||
"src/agentkit/evolution/lifecycle.py": "ec1fe00da015f086",
|
||||
"src/agentkit/evolution/llm_reflector.py": "11a57b403186159b",
|
||||
"src/agentkit/evolution/models.py": "f4431b403fb631be",
|
||||
"src/agentkit/evolution/path_optimizer.py": "e14acc297c384e1f",
|
||||
"src/agentkit/evolution/pg_store.py": "7d73520b6aaf6520",
|
||||
"src/agentkit/evolution/pitfall_detector.py": "b20426d9c8ad32f0",
|
||||
"src/agentkit/evolution/prompt_optimizer.py": "55d6803ff662373f",
|
||||
"src/agentkit/evolution/reflector.py": "3bd2e26da20cf83f",
|
||||
"src/agentkit/evolution/strategy_tuner.py": "bda557828a67e072",
|
||||
"src/agentkit/llm/__init__.py": "82c7e6de6d66bb43",
|
||||
"src/agentkit/llm/cache.py": "12e3ca6b88970d1b",
|
||||
"src/agentkit/llm/cache_key.py": "647aba5b414ee210",
|
||||
"src/agentkit/llm/config.py": "c6248208496fa3aa",
|
||||
"src/agentkit/llm/gateway.py": "7725c78f65c86b22",
|
||||
"src/agentkit/llm/protocol.py": "e37a2f29cc468686",
|
||||
"src/agentkit/llm/providers/__init__.py": "782e0bfe4705d0a9",
|
||||
"src/agentkit/llm/providers/anthropic.py": "bb56d751393249f0",
|
||||
"src/agentkit/llm/providers/doubao.py": "15a834e0808a9243",
|
||||
"src/agentkit/llm/providers/gemini.py": "d8531fc268d702d2",
|
||||
"src/agentkit/llm/providers/openai.py": "33a7e10d8fc09e47",
|
||||
"src/agentkit/llm/providers/tracker.py": "949dab590baf4768",
|
||||
"src/agentkit/llm/providers/usage_store.py": "d7e8bf9cd92e3f70",
|
||||
"src/agentkit/llm/providers/wenxin.py": "3748b70a13c1463f",
|
||||
"src/agentkit/llm/providers/yuanbao.py": "9fcc4b6ad8ac31b4",
|
||||
"src/agentkit/llm/retry.py": "2aa47e585f77dd50",
|
||||
"src/agentkit/marketplace/__init__.py": "7eba735388883e2d",
|
||||
"src/agentkit/marketplace/auction.py": "593df1eb74b19149",
|
||||
"src/agentkit/marketplace/wealth.py": "49b6d56a6dc938b9",
|
||||
"src/agentkit/mcp/__init__.py": "c043d1a081979781",
|
||||
"src/agentkit/mcp/client.py": "287662e5fa494e0f",
|
||||
"src/agentkit/mcp/manager.py": "0652af492b6d0d02",
|
||||
"src/agentkit/mcp/server.py": "b2689b6ff79e98ec",
|
||||
"src/agentkit/mcp/transport.py": "6c509f28b30eeb93",
|
||||
"src/agentkit/memory/__init__.py": "899e6e94f549d9ee",
|
||||
"src/agentkit/memory/adapters/__init__.py": "d80a08cc9de5c4e5",
|
||||
"src/agentkit/memory/adapters/base.py": "045ccec94443abb2",
|
||||
"src/agentkit/memory/adapters/confluence.py": "13e76eb173bfaf3d",
|
||||
"src/agentkit/memory/adapters/feishu.py": "011d187d101c942b",
|
||||
"src/agentkit/memory/adapters/generic_http.py": "ecd08ccaf23fb6a9",
|
||||
"src/agentkit/memory/base.py": "da502f486f860246",
|
||||
"src/agentkit/memory/chunking.py": "7cdd1dcb43eaaecd",
|
||||
"src/agentkit/memory/contextual_retrieval.py": "5c192a0c86b7fc45",
|
||||
"src/agentkit/memory/document_loader.py": "b9af5438034e1450",
|
||||
"src/agentkit/memory/embedder.py": "1cf207b86c87fb9f",
|
||||
"src/agentkit/memory/episodic.py": "d9eadf7068d02985",
|
||||
"src/agentkit/memory/http_rag.py": "c115b197f512896d",
|
||||
"src/agentkit/memory/knowledge_base.py": "594e0601119ba926",
|
||||
"src/agentkit/memory/local_rag.py": "35c473b15ce6ba0f",
|
||||
"src/agentkit/memory/models.py": "1ed936d411b508b2",
|
||||
"src/agentkit/memory/multi_source_retriever.py": "a528a4d316d9b1a7",
|
||||
"src/agentkit/memory/profile.py": "8d1144e61dc41ab0",
|
||||
"src/agentkit/memory/query_transformer.py": "4ed2930eba6ffa32",
|
||||
"src/agentkit/memory/rag_loop.py": "9f22171fd1ad1e4c",
|
||||
"src/agentkit/memory/relevance_scorer.py": "bd5bde3493c1d88f",
|
||||
"src/agentkit/memory/retriever.py": "3d124234ea5f6bc2",
|
||||
"src/agentkit/memory/semantic.py": "d8330a3242202690",
|
||||
"src/agentkit/memory/working.py": "2c23cc7e7311fca8",
|
||||
"src/agentkit/orchestrator/__init__.py": "c3fc598ee58f6f8b",
|
||||
"src/agentkit/orchestrator/compensation.py": "439752d48824ac1a",
|
||||
"src/agentkit/orchestrator/dynamic_pipeline.py": "a71d105fd793c873",
|
||||
"src/agentkit/orchestrator/handoff.py": "088b49d79a7d8ce5",
|
||||
"src/agentkit/orchestrator/pipeline_engine.py": "2aa54170ff33511f",
|
||||
"src/agentkit/orchestrator/pipeline_loader.py": "367bdc2921b95136",
|
||||
"src/agentkit/orchestrator/pipeline_models.py": "6a565353eca205aa",
|
||||
"src/agentkit/orchestrator/pipeline_schema.py": "7002a77b7bd837b6",
|
||||
"src/agentkit/orchestrator/pipeline_state.py": "61e7b05b8ff7d7c3",
|
||||
"src/agentkit/orchestrator/reflection.py": "ffb779fa4ee52e4d",
|
||||
"src/agentkit/orchestrator/retry.py": "d3664f5702da0891",
|
||||
"src/agentkit/orchestrator/workflow_schema.py": "304c14f9107e18d3",
|
||||
"src/agentkit/org/__init__.py": "cfa58426f7f486f6",
|
||||
"src/agentkit/org/context.py": "2f2e35245c8d460d",
|
||||
"src/agentkit/org/discovery.py": "ceb833baf51b62ff",
|
||||
"src/agentkit/prompts/__init__.py": "3edd02e1768b0daa",
|
||||
"src/agentkit/prompts/section.py": "f1d167a2f0abebf5",
|
||||
"src/agentkit/prompts/template.py": "717673ca624bbe25",
|
||||
"src/agentkit/quality/__init__.py": "1cd7368784872d72",
|
||||
"src/agentkit/quality/alignment.py": "f252282b05baa04d",
|
||||
"src/agentkit/quality/cascade_detector.py": "62ceb3c9a6ea94f5",
|
||||
"src/agentkit/quality/cascade_state_store.py": "3e3afeabf789b676",
|
||||
"src/agentkit/quality/gate.py": "8f615904f6ef877e",
|
||||
"src/agentkit/quality/output.py": "9f596461e85908fd",
|
||||
"src/agentkit/router/__init__.py": "6b1080a95c77611c",
|
||||
"src/agentkit/router/intent.py": "0e8cb267be40071c",
|
||||
"src/agentkit/server/__init__.py": "e6ba7d89409ef8bc",
|
||||
"src/agentkit/server/app.py": "b300b1e0afdc3d3d",
|
||||
"src/agentkit/server/client.py": "d18b1a046e59ca55",
|
||||
"src/agentkit/server/client_config.py": "91e05d25245e90cf",
|
||||
"src/agentkit/server/config.py": "b45512d0b1b53073",
|
||||
"src/agentkit/server/frontend/components.d.ts": "5f476f813a2598b2",
|
||||
"src/agentkit/server/frontend/env.d.ts": "7e784bd82b37b057",
|
||||
"src/agentkit/server/frontend/package.json": "64e85b8f27c88709",
|
||||
"src/agentkit/server/frontend/src/App.vue": "cef09b6f2dae1f21",
|
||||
"src/agentkit/server/frontend/src/api/base.ts": "8f917711ede5bf8e",
|
||||
"src/agentkit/server/frontend/src/api/client.ts": "faf1c13362837642",
|
||||
"src/agentkit/server/frontend/src/api/evolution.ts": "a8369e1c5f2d53a1",
|
||||
"src/agentkit/server/frontend/src/api/kb.ts": "2d3ea26a96f0666d",
|
||||
"src/agentkit/server/frontend/src/api/settings.ts": "7c8523fcbd08e9cc",
|
||||
"src/agentkit/server/frontend/src/api/skills.ts": "83fc22d3ab317669",
|
||||
"src/agentkit/server/frontend/src/api/tauri.ts": "b4da451ccb551f44",
|
||||
"src/agentkit/server/frontend/src/api/terminal.ts": "c3566c3ef0db60e8",
|
||||
"src/agentkit/server/frontend/src/api/types.ts": "1b1ee4f23c38e580",
|
||||
"src/agentkit/server/frontend/src/api/workflow.ts": "e96945651f30a5e9",
|
||||
"src/agentkit/server/frontend/src/components/chat/ChatInput.vue": "afdebfb4570dcbee",
|
||||
"src/agentkit/server/frontend/src/components/chat/ChatMessage.vue": "06a2d6cb671e68a2",
|
||||
"src/agentkit/server/frontend/src/components/chat/ChatSidebar.vue": "cc6f7b8bbdcf449a",
|
||||
"src/agentkit/server/frontend/src/components/chat/ContextPill.vue": "330ed22357ce7616",
|
||||
"src/agentkit/server/frontend/src/components/chat/FilePreview.vue": "defd56ba76c588a0",
|
||||
"src/agentkit/server/frontend/src/components/chat/MentionDropdown.vue": "4c7d84ff26d7d899",
|
||||
"src/agentkit/server/frontend/src/components/chat/ToolCallCard.vue": "7081a83bd23f2414",
|
||||
"src/agentkit/server/frontend/src/components/chat/ToolCallIndicator.vue": "9431bf6cc2e76df8",
|
||||
"src/agentkit/server/frontend/src/components/code/CodeDiffViewer.vue": "6d668833fa45c2fd",
|
||||
"src/agentkit/server/frontend/src/components/code/FileTree.vue": "7ccd0d7f03c1c8c4",
|
||||
"src/agentkit/server/frontend/src/components/evolution/DashboardOverview.vue": "a1961bfd0b32228d",
|
||||
"src/agentkit/server/frontend/src/components/evolution/ExperiencePanel.vue": "21fcfabd936c32f5",
|
||||
"src/agentkit/server/frontend/src/components/evolution/ExperienceTimeline.vue": "d626e873a11e8c08",
|
||||
"src/agentkit/server/frontend/src/components/evolution/MetricsChart.vue": "06767d5c02e37823",
|
||||
"src/agentkit/server/frontend/src/components/evolution/MetricsPanel.vue": "66e873ddf0d0c542",
|
||||
"src/agentkit/server/frontend/src/components/evolution/OptimizationPanel.vue": "c0e148ad6648aab3",
|
||||
"src/agentkit/server/frontend/src/components/evolution/PathOptimizerPanel.vue": "bcc00116179846ba",
|
||||
"src/agentkit/server/frontend/src/components/evolution/PitfallPanel.vue": "f7c32f866c78f081",
|
||||
"src/agentkit/server/frontend/src/components/evolution/PitfallRoutePanel.vue": "141fa883a4f139f3",
|
||||
"src/agentkit/server/frontend/src/components/evolution/UsagePanel.vue": "3e7ae825a23b550e",
|
||||
"src/agentkit/server/frontend/src/components/kb/DocumentUpload.vue": "eaf08ca06861c8ee",
|
||||
"src/agentkit/server/frontend/src/components/kb/SearchTest.vue": "e813640e950768a2",
|
||||
"src/agentkit/server/frontend/src/components/kb/SourceConfig.vue": "9453a7d7466c190c",
|
||||
"src/agentkit/server/frontend/src/components/layout/AgentLayout.vue": "8302bdbff9f407fe",
|
||||
"src/agentkit/server/frontend/src/components/layout/AppLayout.vue": "0f3d4a85e031b87e",
|
||||
"src/agentkit/server/frontend/src/components/layout/IconNav.vue": "be857d42b74ed508",
|
||||
"src/agentkit/server/frontend/src/components/layout/QuadrantPanel.vue": "77329d3919b07f00",
|
||||
"src/agentkit/server/frontend/src/components/layout/SideNav.vue": "323ce7d138162303",
|
||||
"src/agentkit/server/frontend/src/components/layout/SplashScreen.vue": "ec6928eebd625c58",
|
||||
"src/agentkit/server/frontend/src/components/layout/SplitPane.vue": "75fc8951b277767b",
|
||||
"src/agentkit/server/frontend/src/components/layout/TitleBar.vue": "b6d128888ee306c8",
|
||||
"src/agentkit/server/frontend/src/components/layout/TopNav.vue": "2808cedccab1d945",
|
||||
"src/agentkit/server/frontend/src/components/skills/SkillCard.vue": "40c0fd217652f00d",
|
||||
"src/agentkit/server/frontend/src/components/skills/SkillDetail.vue": "9d1d4601560084cf",
|
||||
"src/agentkit/server/frontend/src/components/terminal/CommandHistory.vue": "faaf28480d749c4a",
|
||||
"src/agentkit/server/frontend/src/components/terminal/TerminalEmulator.vue": "609caa6d694356d5",
|
||||
"src/agentkit/server/frontend/src/components/workflow/ApprovalNode.vue": "f8f2461cec0a7315",
|
||||
"src/agentkit/server/frontend/src/components/workflow/ConditionNode.vue": "407959ec9eb47ee3",
|
||||
"src/agentkit/server/frontend/src/components/workflow/FlowCanvas.vue": "a8a03d2ee204d45e",
|
||||
"src/agentkit/server/frontend/src/components/workflow/NodePalette.vue": "95fb0648ce648331",
|
||||
"src/agentkit/server/frontend/src/components/workflow/ParallelNode.vue": "865dde4247960ec4",
|
||||
"src/agentkit/server/frontend/src/components/workflow/PropertyPanel.vue": "d43f36e67014da03",
|
||||
"src/agentkit/server/frontend/src/components/workflow/SkillNode.vue": "7ad0101f51d1c4aa",
|
||||
"src/agentkit/server/frontend/src/main.ts": "639546b71c6c8e64",
|
||||
"src/agentkit/server/frontend/src/router/index.ts": "29208a1d32a815ec",
|
||||
"src/agentkit/server/frontend/src/stores/capabilities.ts": "0176d1b76782ebc3",
|
||||
"src/agentkit/server/frontend/src/stores/chat.ts": "935a67e98204747b",
|
||||
"src/agentkit/server/frontend/src/stores/evolution.ts": "069b9010ed60a48e",
|
||||
"src/agentkit/server/frontend/src/stores/knowledge.ts": "99f61767dba1fe03",
|
||||
"src/agentkit/server/frontend/src/stores/settings.ts": "56d078006752617c",
|
||||
"src/agentkit/server/frontend/src/stores/skills.ts": "ae5050c1fb6ddd53",
|
||||
"src/agentkit/server/frontend/src/stores/terminal.ts": "cbccc94e9cc62778",
|
||||
"src/agentkit/server/frontend/src/stores/theme.ts": "58bd9259796d6c5b",
|
||||
"src/agentkit/server/frontend/src/stores/workflow.ts": "d41bf6daa2725f1e",
|
||||
"src/agentkit/server/frontend/src/styles/index.ts": "c5c64537137cdd6c",
|
||||
"src/agentkit/server/frontend/src/styles/responsive.css": "5555100df036dfde",
|
||||
"src/agentkit/server/frontend/src/styles/theme.ts": "9e10f0955fe24771",
|
||||
"src/agentkit/server/frontend/src/styles/tokens.css": "856befefe5094b09",
|
||||
"src/agentkit/server/frontend/src/styles/transitions.css": "5d761d0a4cc6fc7c",
|
||||
"src/agentkit/server/frontend/src/utils/echarts.ts": "ae4cffe3c5d35db6",
|
||||
"src/agentkit/server/frontend/src/utils/workflowSerializer.ts": "3b808fd32d78e280",
|
||||
"src/agentkit/server/frontend/src/views/ChatView.vue": "d19086d9f744decc",
|
||||
"src/agentkit/server/frontend/src/views/ComputerUseView.vue": "61c9868f1f7bf2aa",
|
||||
"src/agentkit/server/frontend/src/views/EvolutionView.vue": "508f4b284dc6d96d",
|
||||
"src/agentkit/server/frontend/src/views/KnowledgeBaseView.vue": "90a70c08c1ad2cb9",
|
||||
"src/agentkit/server/frontend/src/views/SettingsView.vue": "a986f8bdb21cfe15",
|
||||
"src/agentkit/server/frontend/src/views/SkillsView.vue": "617903074c9d2941",
|
||||
"src/agentkit/server/frontend/src/views/TerminalView.vue": "63ac6fc0787aea9d",
|
||||
"src/agentkit/server/frontend/src/views/WorkflowView.vue": "3b5d6c6e1f585f69",
|
||||
"src/agentkit/server/frontend/tsconfig.json": "dd37dcb70fdb4d9a",
|
||||
"src/agentkit/server/frontend/tsconfig.node.json": "80d15af8bdd98d4b",
|
||||
"src/agentkit/server/frontend/vite.config.ts": "3680082296b63e43",
|
||||
"src/agentkit/server/middleware.py": "96b05f6f8063241d",
|
||||
"src/agentkit/server/routes/__init__.py": "1b79a3ccfc6a066b",
|
||||
"src/agentkit/server/routes/agents.py": "21f2555a100d026a",
|
||||
"src/agentkit/server/routes/chat.py": "104dbdffea2e444c",
|
||||
"src/agentkit/server/routes/evolution.py": "fce7e8d39d81d71b",
|
||||
"src/agentkit/server/routes/evolution_dashboard.py": "d8cdddb6f1f31a2f",
|
||||
"src/agentkit/server/routes/health.py": "6b80279471d80b96",
|
||||
"src/agentkit/server/routes/kb_management.py": "4e2805fe7e5cefcc",
|
||||
"src/agentkit/server/routes/llm.py": "41528730c7e8fc23",
|
||||
"src/agentkit/server/routes/memory.py": "1c80383f27ea9d06",
|
||||
"src/agentkit/server/routes/metrics.py": "00e89aa44374d486",
|
||||
"src/agentkit/server/routes/portal.py": "f84fd0fd3765a473",
|
||||
"src/agentkit/server/routes/settings.py": "d4e099566030cdd3",
|
||||
"src/agentkit/server/routes/skill_management.py": "18b59ecc2101a983",
|
||||
"src/agentkit/server/routes/skills.py": "d8af03b75ee51a7d",
|
||||
"src/agentkit/server/routes/tasks.py": "5da229c6eeee665d",
|
||||
"src/agentkit/server/routes/terminal.py": "54a7be8b03545753",
|
||||
"src/agentkit/server/routes/workflows.py": "36a26fff758c1d46",
|
||||
"src/agentkit/server/routes/ws.py": "610ea335d8dc8029",
|
||||
"src/agentkit/server/runner.py": "d9dcdc9dbcead3a2",
|
||||
"src/agentkit/server/static/assets/AgentLayout-DRofOCle.css": "624fe10c57377b9f",
|
||||
"src/agentkit/server/static/assets/AppLayout-D3vb9nEe.css": "da60a0d0bcd6f73b",
|
||||
"src/agentkit/server/static/assets/ChatView-pABfekuB.css": "4c85ceda245e4296",
|
||||
"src/agentkit/server/static/assets/ComputerUseView-DLnWxFj5.css": "634489f6de671317",
|
||||
"src/agentkit/server/static/assets/EvolutionView-CYpO52XJ.css": "1093af8009b6d07e",
|
||||
"src/agentkit/server/static/assets/KnowledgeBaseView-B7BP9eFg.css": "897bd5863b866a4b",
|
||||
"src/agentkit/server/static/assets/SettingsView-Cux44Hx9.css": "5d814d3e6e2aad80",
|
||||
"src/agentkit/server/static/assets/SkillsView-CD6l4lTk.css": "01d3f36c1c81d634",
|
||||
"src/agentkit/server/static/assets/TerminalView-Dg1PpXnU.css": "f700710a00b17f72",
|
||||
"src/agentkit/server/static/assets/WorkflowView-DRk6nEaR.css": "34e060faceedeaa8",
|
||||
"src/agentkit/server/static/assets/index-De1g9qb4.css": "440d66ee03cf0385",
|
||||
"src/agentkit/server/task_store.py": "48b0fa6b93eedd02",
|
||||
"src/agentkit/session/__init__.py": "4c9b3ddcd033cdfd",
|
||||
"src/agentkit/session/manager.py": "6970d7f8e84533c9",
|
||||
"src/agentkit/session/models.py": "73142e2bd83acf39",
|
||||
"src/agentkit/session/store.py": "afc3cb368d3eda2d",
|
||||
"src/agentkit/skills/__init__.py": "da932fee48b46389",
|
||||
"src/agentkit/skills/base.py": "21f6dd7a8ce8e743",
|
||||
"src/agentkit/skills/geo_pipeline.py": "3d24462bf74772d6",
|
||||
"src/agentkit/skills/loader.py": "894ad8633fbd6a71",
|
||||
"src/agentkit/skills/pipeline.py": "5337561cd632fa86",
|
||||
"src/agentkit/skills/registry.py": "8fb961ea4694a0c8",
|
||||
"src/agentkit/skills/schema.py": "37b34d43e7d4c872",
|
||||
"src/agentkit/skills/skill_md.py": "50115a8f8c7daf39",
|
||||
"src/agentkit/telemetry/__init__.py": "0196a5ba60a48373",
|
||||
"src/agentkit/telemetry/metrics.py": "2c137c5e2afc0219",
|
||||
"src/agentkit/telemetry/setup.py": "d80b0163b2b40e4b",
|
||||
"src/agentkit/telemetry/tracer.py": "2febd113b9aefaff",
|
||||
"src/agentkit/telemetry/tracing.py": "0de031c9690f1084",
|
||||
"src/agentkit/tools/__init__.py": "3f38137ac910b75e",
|
||||
"src/agentkit/tools/agent_tool.py": "40dd8fc67609c1c7",
|
||||
"src/agentkit/tools/ask_human.py": "0af1dce2de198057",
|
||||
"src/agentkit/tools/baidu_search.py": "f1fc70895adf4c86",
|
||||
"src/agentkit/tools/base.py": "f8051c91e7b2c870",
|
||||
"src/agentkit/tools/composition.py": "1399400373a7bae1",
|
||||
"src/agentkit/tools/computer_use.py": "07fd6142ba572caf",
|
||||
"src/agentkit/tools/computer_use_recorder.py": "b128cf30a8194210",
|
||||
"src/agentkit/tools/computer_use_session.py": "07e93efbf41e56bb",
|
||||
"src/agentkit/tools/function_tool.py": "d965b795e7aa971a",
|
||||
"src/agentkit/tools/headroom_retrieve.py": "78c9f452e2884b56",
|
||||
"src/agentkit/tools/mcp_tool.py": "fdf613db4e05386a",
|
||||
"src/agentkit/tools/memory_tool.py": "f0e43e260a066b41",
|
||||
"src/agentkit/tools/output_parser.py": "b5979893bc8751a0",
|
||||
"src/agentkit/tools/pty_session.py": "a59eb84476a1d233",
|
||||
"src/agentkit/tools/registry.py": "d9f431fde32e23da",
|
||||
"src/agentkit/tools/schema_tools.py": "d06b2ebb68137eae",
|
||||
"src/agentkit/tools/shell.py": "d979a37c206abb75",
|
||||
"src/agentkit/tools/skill_install.py": "7f6df2be83f0a974",
|
||||
"src/agentkit/tools/terminal_session.py": "09a52ee902faadf8",
|
||||
"src/agentkit/tools/web_crawl.py": "7d33adfa513583f9",
|
||||
"src/agentkit/tools/web_search.py": "32c04419179a503b",
|
||||
"src/agentkit/utils/__init__.py": "c4cde77152627568",
|
||||
"src/agentkit/utils/security.py": "64a377f0f9af299b",
|
||||
"src/agentkit/utils/vector_math.py": "95fbdc879f63c9f6",
|
||||
"tests/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/conftest.py": "e25a6080360bb392",
|
||||
"tests/integration/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/integration/conftest.py": "35362f98fbcf007d",
|
||||
"tests/integration/test_agent_lifecycle.py": "45ca2361ae89d2dc",
|
||||
"tests/integration/test_agent_v2_lifecycle.py": "813c0f11a440e191",
|
||||
"tests/integration/test_chat_adaptive_e2e.py": "3c29dadefff87012",
|
||||
"tests/integration/test_coding_harness_pipeline.py": "c07c587bdf135085",
|
||||
"tests/integration/test_evolution_loop.py": "af13640b3c042c8f",
|
||||
"tests/integration/test_gap_closure.py": "5445e0618f1570c7",
|
||||
"tests/integration/test_geo_compression.py": "e97a1e18fec7de33",
|
||||
"tests/integration/test_geo_e2e.py": "6ab31754e519e7e4",
|
||||
"tests/integration/test_goal_driven_scenario.py": "d4ff1c1d1095712c",
|
||||
"tests/integration/test_marketplace_e2e.py": "f9953b64d5fec881",
|
||||
"tests/integration/test_mcp_roundtrip.py": "d7b61599fa38f9fb",
|
||||
"tests/integration/test_merged_router.py": "4ebbb09628b4e5ec",
|
||||
"tests/integration/test_p0_hardening.py": "a64e9748554c3af5",
|
||||
"tests/integration/test_parallel_tools.py": "835e923a8ed8f0f6",
|
||||
"tests/integration/test_react_loop.py": "6600439989c27015",
|
||||
"tests/integration/test_reflexion_loop.py": "44cd7bd06b36311d",
|
||||
"tests/integration/test_rewoo_configurable_fallback.py": "22d188945fcfcace",
|
||||
"tests/integration/test_rewoo_fallback.py": "b0d90d02ad2e376a",
|
||||
"tests/integration/test_router_engine_chain.py": "298d027b3fb536e0",
|
||||
"tests/integration/test_server_e2e.py": "b18dd4834e6c9294",
|
||||
"tests/integration/test_soul_evolution_trigger.py": "395fa9a1c00ccf84",
|
||||
"tests/integration/test_tool_composition.py": "ca26b34ba7ac9fb4",
|
||||
"tests/test_routing_chain.py": "dc4bbb716852dc24",
|
||||
"tests/unit/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/conftest.py": "d957c6d325cecf73",
|
||||
"tests/unit/core/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/core/test_plan_checker.py": "a19366b76820465f",
|
||||
"tests/unit/core/test_plan_executor.py": "c91e6cf7aa90421d",
|
||||
"tests/unit/evolution/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/evolution/test_experience_store.py": "95ac34f0aa4eff18",
|
||||
"tests/unit/evolution/test_path_optimizer.py": "061f66cc4818ca25",
|
||||
"tests/unit/evolution/test_pitfall_detector.py": "456b21abec2630ed",
|
||||
"tests/unit/llm/test_usage_store.py": "d35fdbc8ad8c8807",
|
||||
"tests/unit/memory/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/memory/test_adapters.py": "bf54ecf5caaba82a",
|
||||
"tests/unit/memory/test_document_loader.py": "a85a73dacefded5b",
|
||||
"tests/unit/memory/test_local_rag.py": "d1bb69b64a704ac6",
|
||||
"tests/unit/memory/test_multi_source_rag.py": "2a90418f99d39a38",
|
||||
"tests/unit/quality/test_cascade_state_store.py": "373a5015bc25f010",
|
||||
"tests/unit/server/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/server/test_evolution_dashboard.py": "8b1882eb0e28c0fe",
|
||||
"tests/unit/server/test_kb_management.py": "ba66ac5d81a89675",
|
||||
"tests/unit/server/test_portal_routes.py": "5096d6fb11f916e4",
|
||||
"tests/unit/server/test_settings_routes.py": "c958e137d691bbdb",
|
||||
"tests/unit/server/test_skill_management.py": "7c2ab7ca496c2238",
|
||||
"tests/unit/server/test_terminal_routes.py": "473c2f0453f7bce5",
|
||||
"tests/unit/server/test_workflow_routes.py": "43f994ebbf8c14a1",
|
||||
"tests/unit/skills/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/skills/test_skill_registry_v2.py": "09566589524e0eb7",
|
||||
"tests/unit/test_ab_tester.py": "ddc218d7db08297a",
|
||||
"tests/unit/test_agent_bus.py": "7b4ec0c38781e682",
|
||||
"tests/unit/test_agent_pool.py": "6b0ed7625bfc0ca9",
|
||||
"tests/unit/test_agent_tool.py": "1d90fc78af703235",
|
||||
"tests/unit/test_alignment_guard.py": "e8dd184b11c82084",
|
||||
"tests/unit/test_anthropic_provider.py": "d15f53edc11cb259",
|
||||
"tests/unit/test_ask_human_tool.py": "a097f78a6d3161ea",
|
||||
"tests/unit/test_async_tasks.py": "f67efcc208f8ebae",
|
||||
"tests/unit/test_auction.py": "854f6a6ac5d810b6",
|
||||
"tests/unit/test_base_agent.py": "527b0607af6b3d0b",
|
||||
"tests/unit/test_base_agent_v2.py": "8b34903756625ed8",
|
||||
"tests/unit/test_bus_protocol.py": "cc278c537b9ab55a",
|
||||
"tests/unit/test_chat_memory_integration.py": "e04eedb7d6769bb9",
|
||||
"tests/unit/test_chat_routes.py": "ac9fd896485fad70",
|
||||
"tests/unit/test_chinese_providers.py": "8b7c6b1db3aed927",
|
||||
"tests/unit/test_cli.py": "391386a1f4b59780",
|
||||
"tests/unit/test_compression_config.py": "6e789f9e0b0e163d",
|
||||
"tests/unit/test_compression_strategy.py": "a354bb2c7caf96da",
|
||||
"tests/unit/test_config_driven.py": "c6110f498ad0685e",
|
||||
"tests/unit/test_context_compressor.py": "99d074bd33277d71",
|
||||
"tests/unit/test_contextual_retrieval.py": "c67f8f0c3cd088d1",
|
||||
"tests/unit/test_cost_aware_router.py": "c46fd3ad7d16d9b2",
|
||||
"tests/unit/test_dispatcher.py": "093c243e1fd88c53",
|
||||
"tests/unit/test_embedding_cache.py": "63f6898cd4c08cf8",
|
||||
"tests/unit/test_episodic_memory.py": "efd3fed7476b01fa",
|
||||
"tests/unit/test_episodic_vector_search.py": "d512a403d915d17c",
|
||||
"tests/unit/test_evolution.py": "267c0d997ac4b69b",
|
||||
"tests/unit/test_evolution_api.py": "c8bc3257089f2f28",
|
||||
"tests/unit/test_evolution_integration.py": "97dbf613d90cfade",
|
||||
"tests/unit/test_evolution_lifecycle.py": "c54cba680de3c6cf",
|
||||
"tests/unit/test_evolution_store.py": "aeede35adc6298bb",
|
||||
"tests/unit/test_evolution_store_persistent.py": "0a4f2e0b68352bf4",
|
||||
"tests/unit/test_execution_modes.py": "721e3dbd3bbe42b6",
|
||||
"tests/unit/test_fitness.py": "a8574c829dd1e6b8",
|
||||
"tests/unit/test_gateway_cache.py": "b90d19fe913acd6b",
|
||||
"tests/unit/test_gemini_provider.py": "a11569acda793b28",
|
||||
"tests/unit/test_genetic_evolution.py": "2298a952c78a1d57",
|
||||
"tests/unit/test_geo_pipeline.py": "0fbea766ae4127ff",
|
||||
"tests/unit/test_goal_planner.py": "41a75d8d954b9be2",
|
||||
"tests/unit/test_handoff.py": "b62bd295b820e7f0",
|
||||
"tests/unit/test_headroom_compressor.py": "690070348dedc54f",
|
||||
"tests/unit/test_headroom_retrieve_tool.py": "9cd59c7ef33abdf8",
|
||||
"tests/unit/test_http_rag_service.py": "c9553d7192028003",
|
||||
"tests/unit/test_intent_router.py": "d6d25ef448de860b",
|
||||
"tests/unit/test_llm_cache.py": "40d438e5249bffa3",
|
||||
"tests/unit/test_llm_gateway.py": "bc60cbfd1cab0078",
|
||||
"tests/unit/test_llm_protocol.py": "aa3e78b428e69995",
|
||||
"tests/unit/test_llm_provider.py": "596744095843d1ff",
|
||||
"tests/unit/test_llm_reflector.py": "703d9262357056ce",
|
||||
"tests/unit/test_llm_retry.py": "24b9eeb9b333a1e8",
|
||||
"tests/unit/test_mcp_client.py": "a41cb2b1f7a2ef9f",
|
||||
"tests/unit/test_mcp_config.py": "81b92487b8d81f0b",
|
||||
"tests/unit/test_mcp_manager.py": "8536847fdc4cd5ea",
|
||||
"tests/unit/test_mcp_server.py": "5a27613e90d76aae",
|
||||
"tests/unit/test_mcp_transport.py": "41d5b3080f524384",
|
||||
"tests/unit/test_memory_api.py": "bdbc0f4ee07e6f3f",
|
||||
"tests/unit/test_memory_integration.py": "c65d5c3312dfaf06",
|
||||
"tests/unit/test_memory_profile.py": "536e91f76c288475",
|
||||
"tests/unit/test_memory_retriever.py": "fe00ea44c651dd61",
|
||||
"tests/unit/test_memory_system.py": "cfb1ed2fcf7b3d2b",
|
||||
"tests/unit/test_memory_tool.py": "14b9fa7c03ca094d",
|
||||
"tests/unit/test_observability.py": "bc2708134d2e52ac",
|
||||
"tests/unit/test_onboarding.py": "b3fbdf5aa374ede9",
|
||||
"tests/unit/test_orchestrator.py": "93feb0c97e569e8c",
|
||||
"tests/unit/test_orchestrator_adaptive.py": "4b3204dd2e649de8",
|
||||
"tests/unit/test_orchestrator_bus.py": "20392261e563eedc",
|
||||
"tests/unit/test_orchestrator_integration.py": "5e5a16aac7a0f1d5",
|
||||
"tests/unit/test_org_context.py": "d1bad982d17ef585",
|
||||
"tests/unit/test_output_standardizer.py": "9305eddc864f0c3f",
|
||||
"tests/unit/test_pipeline.py": "dd3d8845733456f6",
|
||||
"tests/unit/test_pipeline_adversarial.py": "af99d36831acec26",
|
||||
"tests/unit/test_pipeline_compensation.py": "2acc0c4bd0126cc8",
|
||||
"tests/unit/test_pipeline_reflection.py": "d171b373e96620b4",
|
||||
"tests/unit/test_pipeline_retry.py": "b50bba77dc357937",
|
||||
"tests/unit/test_pipeline_state.py": "65df456e2d6054c5",
|
||||
"tests/unit/test_plan_exec_engine.py": "18c76d5d4f010b7d",
|
||||
"tests/unit/test_prompt_optimizer.py": "06325696628d2f69",
|
||||
"tests/unit/test_prompt_section.py": "e764eca7b44cc6c8",
|
||||
"tests/unit/test_prompt_template.py": "e57af046cdb3b4e4",
|
||||
"tests/unit/test_protocol.py": "da661f7a951b6576",
|
||||
"tests/unit/test_quality_gate.py": "a1b9a0ce009e3d8d",
|
||||
"tests/unit/test_query_transformer.py": "7fde4b222ae1f145",
|
||||
"tests/unit/test_rag_loop.py": "f1347eac9a5919a2",
|
||||
"tests/unit/test_ragas_evaluator.py": "521786f58e3fbb2f",
|
||||
"tests/unit/test_react_compression.py": "40a45ee367d84810",
|
||||
"tests/unit/test_react_engine.py": "62a5df9422ae21f4",
|
||||
"tests/unit/test_react_skill_mcp_integration.py": "6725ad4c70f8e4a9",
|
||||
"tests/unit/test_react_token_streaming.py": "14aa43e723cef9c6",
|
||||
"tests/unit/test_reflexion_engine.py": "689979f3c835aedb",
|
||||
"tests/unit/test_registry.py": "8d31cc0eee9cd89d",
|
||||
"tests/unit/test_retrieval_config.py": "a09fca0f1d8c44b2",
|
||||
"tests/unit/test_retrieve_knowledge_tool.py": "d12b7414e129f593",
|
||||
"tests/unit/test_rewoo_engine.py": "1fbd72b1923c3e24",
|
||||
"tests/unit/test_schema_tools.py": "a600b44b4c2ec894",
|
||||
"tests/unit/test_semantic_router.py": "a277ea3cb0bdd4d3",
|
||||
"tests/unit/test_server_config.py": "e86663f135a8396c",
|
||||
"tests/unit/test_server_middleware.py": "660766db5bdf4fb0",
|
||||
"tests/unit/test_server_routes.py": "3370e164dbac52ea",
|
||||
"tests/unit/test_session_manager.py": "90ef9929f4910c4b",
|
||||
"tests/unit/test_session_models.py": "2297ebde41ac1961",
|
||||
"tests/unit/test_session_store.py": "124898baeef2c549",
|
||||
"tests/unit/test_shell_tool.py": "fc1237230c684e25",
|
||||
"tests/unit/test_skill_config.py": "f3aef1188e101bac",
|
||||
"tests/unit/test_skill_loader.py": "21b83961057e4fcb",
|
||||
"tests/unit/test_skill_md.py": "a78f997dbe75695b",
|
||||
"tests/unit/test_skill_pipeline.py": "b51de8bf81f193d4",
|
||||
"tests/unit/test_skill_registry.py": "30679e6242902a3e",
|
||||
"tests/unit/test_soul_evolution.py": "07d8b0b4550142a6",
|
||||
"tests/unit/test_stdio_transport.py": "ad7d51c748b3580f",
|
||||
"tests/unit/test_streaming.py": "9430a86a4cae4435",
|
||||
"tests/unit/test_task_store_redis.py": "31e1ed3cb10dab5b",
|
||||
"tests/unit/test_telemetry.py": "2f957631f9d87522",
|
||||
"tests/unit/test_tool_composition.py": "88c496199e43eab1",
|
||||
"tests/unit/test_tool_registry.py": "cb930ed167fe2b23",
|
||||
"tests/unit/test_trace_recorder.py": "0f7809fe85094c08",
|
||||
"tests/unit/test_u8_geo_integration.py": "c0eb3468de53fe1e",
|
||||
"tests/unit/test_unified_evolution_store.py": "8419ece33016b902",
|
||||
"tests/unit/test_usage_tracker.py": "eed60bc0fcf6a4a3",
|
||||
"tests/unit/test_web_crawl_tool.py": "13d5bb6f6b098410",
|
||||
"tests/unit/test_web_search_tool.py": "7ee8a8b20b793e03",
|
||||
"tests/unit/test_websocket.py": "53e9ecd8c70f5bfe",
|
||||
"tests/unit/test_working_memory.py": "49016e18a7998c4a",
|
||||
"tests/unit/tools/__init__.py": "d41d8cd98f00b204",
|
||||
"tests/unit/tools/test_computer_use.py": "1f851f50f5eb5e44",
|
||||
"tests/unit/tools/test_pty_session.py": "8a512aabb314036e",
|
||||
"tests/unit/tools/test_terminal_session.py": "1e979327e0d14753"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"lastAnalyzedAt": "2026-06-17T05:30:00.000000+00:00",
|
||||
"gitCommitHash": "840d1af4f7a3c1b5e8d2c6a9f0e3b7d5h6i8j0k2",
|
||||
"version": "1.0.0",
|
||||
"analyzedFiles": 2418,
|
||||
"lastUpdateSummary": "fix: resolve benchmark failures from root cause (LLM timeout, WebSocket, latency stats)"
|
||||
}
|
||||
Loading…
Reference in New Issue