- Create agent-evolution/ directory with standalone dashboard - Add interactive HTML dashboard with agent/model matrix - Add heatmap view for agent-model compatibility scores - Add recommendations tab with optimization suggestions - Add Gitea integration preparation (history timeline) - Add Docker configuration for deployment - Add build scripts for standalone HTML generation - Add sync scripts for agent data synchronization - Add milestone and issues documentation - Add skills and rules for evolution sync - Update AGENTS.md with dashboard documentation - Update package.json with evolution scripts Features: - 28 agents with model assignments and fit scores - 8 models with benchmarks (SWE-bench, RULER, Terminal) - 11 recommendations for model optimization - History timeline with agent changes - Interactive modal windows for model details - Filter and search functionality - Russian language interface - Works offline (file://) with embedded data Docker: - Dockerfile for standalone deployment - docker-compose.evolution.yml - docker-run.sh/docker-run.bat scripts NPM scripts: - sync:evolution - sync and build dashboard - evolution:open - open in browser - evolution:dashboard - start dev server Status: PAUSED - foundation complete, Gitea integration pending
55 lines
1.8 KiB
JSON
55 lines
1.8 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": "docker run -d --name apaw-evolution-dashboard -p 3001:3001 -v \"$(pwd)/agent-evolution/data:/app/data:ro\" apaw-evolution:latest",
|
|
"evolution:stop": "docker stop apaw-evolution-dashboard && docker rm apaw-evolution-dashboard",
|
|
"evolution:start": "bash agent-evolution/docker-run.sh run",
|
|
"evolution:dev": "docker-compose -f docker-compose.evolution.yml up -d",
|
|
"evolution:logs": "docker logs -f apaw-evolution-dashboard"
|
|
},
|
|
"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",
|
|
"workspaces": [
|
|
".kilo"
|
|
]
|
|
} |