- real-fit.html: API-driven research dashboard with agent/model heatmap, detail modal with score breakdown and evaluator commentary - api.py: FastAPI backend serving /api/real-fit-report (dynamic from SQLite), /api/research, /api/evolve-agent/start - rebuild-report.py: generates real-fit-report.json from SQLite DB for static fallback - docker-compose.yml: add evolution-api service (Python 3.12, uvicorn) for research endpoints - index.standalone.html: sync with dashboard data updates - archive/index.html: standalone dashboard snapshot (263KB) - .gitignore: exclude *.db, research-jobs.json from tracking
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
# Build artifacts
|
|
dist/
|
|
bun.lock
|
|
|
|
# Dependencies and lock files
|
|
node_modules/
|
|
package-lock.json
|
|
.env
|
|
*.log
|
|
.DS_Store
|
|
tsconfig.tsbuildinfo
|
|
|
|
# Test artifacts (generated at runtime)
|
|
tests/node_modules/
|
|
tests/visual/baseline/
|
|
tests/visual/current/
|
|
tests/visual/diff/
|
|
tests/visual/e2e/
|
|
tests/reports/
|
|
|
|
# Kilo generated files (auto-created, not tracked)
|
|
.kilo/logs/
|
|
.kilo/reports/
|
|
.kilo/EVOLUTION_LOG.md
|
|
.kilo/WORKFLOW_AUDIT.md
|
|
|
|
# Local workspace / worktrees
|
|
.work/
|
|
|
|
# Temporary research artifacts (one-off scripts, diagnostic outputs)
|
|
agent-evolution/archive/scripts/
|
|
agent-evolution/archive/reports/
|
|
agent-evolution/archive/data/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Generated runtime data
|
|
agent-evolution/data/dashboard-data.json
|
|
agent-evolution/data/state.json
|
|
agent-evolution/data/model-benchmarks.json.bak
|
|
*.db
|
|
research-jobs.json
|
|
landing/api/state.json
|
|
landing/api/state.json.bak
|
|
landing/api/dashboard-data.json
|
|
|
|
# Architect generated maps (can be large, auto-indexed)
|
|
# Note: .architect/ md and json files ARE tracked for team orientation
|
|
# Only maps/ with file graphs can be very large
|
|
.architect/maps/.work/
|