Files
APAW/package.json
NW f01e2064fb feat(evolution): Kilo Code release sync & APAW system hardening (v2026-05-07)
Security & Permissions:
- All 30 agents: task[*]=deny, task[subagent]=deny (cascade prevention)
- orchestrator & release-manager: bash=ask (hardening)
- New .kilo/rules/subagent-security.md with audit rules
- Updated .kilo/rules/global.md with Security & Permissions section
- Updated .kilo/agents/orchestrator.md with Security Enforcement block

Session Management:
- New .kilo/rules/session-persistence.md (checkpoint format, worktree isolation)
- Updated .kilo/rules/branch-strategy.md (worktree per agent)
- pipeline-runner.ts: Checkpoint interface + save/load/resume methods

Plan Persistence:
- Updated .kilo/rules/lead-developer.md (plan handover section)

Per-Agent Reasoning:
- capability-index.yaml: reasoning_effort for all 30 agents (xhigh/high/medium/low)

MCP Cleanup:
- New .kilo/skills/docker-security/SKILL.md (--rm, orphaned process cleanup)

Config Validation:
- Updated .kilo/rules/docker.md (startup checks, commit scoping, location awareness)

Docs:
- README.md: v2026-05-07 evolution badges
- .kilo/EVOLUTION_LOG.md: Entry #6 with full metrics
- .gitignore: ignore dist/ + bun.lock

Gitea: Milestone #66, Issues #91-#98
Architect: 9/9 sections fresh (express project type)
2026-05-08 18:54:08 +01:00

60 lines
2.4 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",
"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"
}