Standardize on the .agents/ directory (shared with project skills): phases/, user_stories/, reports/, screenshots/, validate.sh, and phase-sessions/ + pipeline.log all move to .agents/ (git mv preserves history; runtime artifacts move alongside). Updates every reference in AGENTS.md, README.md, .gitignore, app docstrings, and test story headers. Historical KB content in data/ and the runtime pipeline.log transcript are left untouched.
34 lines
593 B
Plaintext
34 lines
593 B
Plaintext
# --- Python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.pyright/
|
|
.mypy_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# --- Environment / secrets ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# --- Planning / agent pipeline state (the .agents/ tree is tracked; only runtime artifacts ignored) ---
|
|
.agents/phase-sessions/
|
|
.agents/pipeline.log
|
|
|
|
# --- Frontend build artifacts (sources live in frontend/, builds are local-only) ---
|
|
node_modules/
|
|
frontend/dist/
|
|
|
|
# --- Logs & misc ---
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
--- Local data dumps (KB replicas, pg_dumps) — never committed ---
|
|
data/
|