Implements the agent-native architecture plan (docs/plans/2026-05-01-002-agent-native-architecture-plan.md): - U1: Database query primitives (agent_tools/database.py) - query_motions, query_votes, query_svd_vectors, query_party_positions, query_pipeline_status - U2: Pipeline control primitives (agent_tools/pipeline.py) - pipeline_run_stage, pipeline_run_full, pipeline_check_health, pipeline_get_logs, pipeline_validate_output - U3: Analysis & report generation (agent_tools/analysis.py, reports.py) - analyze_party_shift, analyze_axis_stability, validate_svd_labels, generate_report - U4: Content validation primitives (agent_tools/content.py) - validate_motion_coverage, validate_layman_explanations, suggest_svd_label, check_embedding_quality - U5: System prompt & context injection (SYSTEM_PROMPT.md, context.py, context.md) - U6: Parity verification tests (tests/agent_tools/test_parity.py) Tests: 238 passed, 2 skipped AGENTS.md updated to surface agent_tools/
36 lines
462 B
Plaintext
36 lines
462 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
|
|
# Virtual environments
|
|
.venv
|
|
|
|
# Database files (large binary, not suited for git)
|
|
data/*.db
|
|
data/*.bak
|
|
data/*.json
|
|
|
|
# Generated output files
|
|
outputs/
|
|
outputs_*/
|
|
reports/
|
|
|
|
# Stray temp files
|
|
dummy
|
|
|
|
.env
|
|
|
|
# Worktrees
|
|
.worktrees/
|
|
|
|
# Generated analysis files
|
|
thoughts/explorer/*.json
|
|
thoughts/explorer/*_report.md
|
|
|
|
# Compound Engineering local config
|
|
.compound-engineering/*.local.yaml
|