Project Knowledge¶
This section contains project-specific documentation and learnings.
Each project is organized as: {client-slug}/{project-slug}/
Example: acme-corp/website-redesign/
Project Files¶
Each project directory contains:
- decisions.md - Key decisions and rationale
- learnings.md - Lessons learned during development
- postmortem.md - Post-project analysis (if applicable)
Adding Project Decisions¶
Agents can document decisions using the wiki helper:
from wiki_helpers import add_project_decision
add_project_decision(
"acme-corp",
"website-redesign",
"Use Next.js for frontend",
"Client requires SSR for SEO and has React experience"
)
Project Lifecycle¶
- Planning - Initial decisions documented
- Development - Learnings added as work progresses
- Completion - Final learnings and optional postmortem
- Archive - Project knowledge retained for reference