1. filterCategory: fix inline event.target → uses btn parameter - All Agents tab filter buttons now correctly toggle active class 2. exportRecommendations/showApplyModal: read from agentData, not removed INLINE_RECOMMENDATIONS - Apply modal shows real recommendations - Export generates JSON with real data 3. Heatmap cell click: add showCellDetail modal with Chart.js line chart + prompt history - onclick='showCellDetail(model, agent)' on every td - renderCellChart computes score history from agent.history - prompt_change items filtered and displayed 4. watch-db.cjs: incremental DB sync tool - Polls git for changes in .kilo/agents/*.md and kilo-meta.json - Detects model_change vs prompt_change by comparing with previous version - Exports to JSON after sync, logs to .kilo/logs/watch-db.log - SIGINT/SIGTERM graceful shutdown - Trigger: npm run evolution:watch
60 lines
2.3 KiB
JSON
60 lines
2.3 KiB
JSON
{
|
|
"name": "apaw",
|
|
"version": "1.0.0",
|
|
"description": "Self-improving code pipeline with agent management and Gitea logging",
|
|
"type": "module",
|
|
"main": "./dist/kilocode/index.js",
|
|
"types": "./dist/kilocode/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/kilocode/index.js",
|
|
"types": "./dist/kilocode/index.d.ts"
|
|
},
|
|
"./agent-manager": {
|
|
"import": "./dist/kilocode/agent-manager/index.js",
|
|
"types": "./dist/kilocode/agent-manager/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test",
|
|
"sync:evolution": "bun run agent-evolution/scripts/sync-agent-history.ts && node agent-evolution/scripts/build-standalone.cjs",
|
|
"evolution:build": "node agent-evolution/scripts/build-standalone.cjs",
|
|
"evolution:open": "start agent-evolution/index.standalone.html",
|
|
"evolution:dashboard": "bunx serve agent-evolution -l 3001",
|
|
"evolution:run": "bash agent-evolution/docker-run.sh run",
|
|
"evolution:reload": "bash agent-evolution/docker-run.sh reload",
|
|
"evolution:restart": "bash agent-evolution/docker-run.sh restart",
|
|
"evolution:stop": "bash agent-evolution/docker-run.sh stop",
|
|
"evolution:watch": "node agent-evolution/scripts/watch-db.cjs",
|
|
"agent:stats": "bun run scripts/agent-stats.ts",
|
|
"agent:stats:week": "bun run scripts/agent-stats.ts --last 7",
|
|
"agent:stats:project": "bun run scripts/agent-stats.ts --project",
|
|
"arch:index": "docker compose -f docker/docker-compose.architect.yml run --rm architect-indexer",
|
|
"arch:index:full": "docker compose -f docker/docker-compose.architect.yml run --rm architect-indexer --mode full",
|
|
"arch:index:incremental": "docker compose -f docker/docker-compose.architect.yml run --rm architect-indexer --mode incremental",
|
|
"arch:build": "docker compose -f docker/docker-compose.architect.yml build",
|
|
"arch:status": "docker compose -f docker/docker-compose.architect.yml ps"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.1.6",
|
|
"@types/node": "^20.10.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"keywords": [
|
|
"agent",
|
|
"pipeline",
|
|
"workflow",
|
|
"gitea",
|
|
"automation",
|
|
"self-improving",
|
|
"kilocode"
|
|
],
|
|
"license": "MIT"
|
|
} |