feat: add .architect/ project mapping system with architect-indexer agent and Docker containerization

- Add .architect/ directory structure (10 template files) as project brain for agent orientation
- Add architect-indexer agent that scans codebase and generates structured architecture docs
- Add Docker containerization: Dockerfile.architect-indexer, docker-compose.architect.yml
- Add TypeScript project-mapper module with staleness detection and context injection
- Add /index-project command, architect-first-contact rule, project-mapping skill
- Integrate orchestrator first-contact check: triggers indexing before any task delegation
- Add npm arch:* scripts for Docker-based indexing workflow
- Register agent in capability-index.yaml and AGENTS.md
This commit is contained in:
¨NW¨
2026-04-22 20:01:38 +01:00
parent 9d85dd9f83
commit 6b71ea2b57
26 changed files with 2160 additions and 3 deletions

View File

@@ -32,7 +32,12 @@
"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"
"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"