Collaboration Guide
Kaddo is designed to keep knowledge alive without turning development into paperwork. The guiding principle is governance by exception: capture the minimum knowledge required, and add rigor only where drift actually matters.
This works for a solo developer and for a larger team. Scale the practices to your context — an indie project may skip most of the roles below.
Suggested collaboration model
| Role | Responsibility |
|---|---|
| Developer | Creates or updates the Work Item alongside the code change. |
| Tech Lead | Reviews high-risk knowledge by exception, not every change. |
| Architect | Reviews ADR / architecture changes. |
| Product Owner | Validates capabilities and roadmap assumptions. |
| Whole team | Treats Guard warnings as review signals, not blockers. |
On a solo or indie project, one person plays all roles — the value is the same: a repo that remembers why the code exists.
flowchart TD
A[Stakeholder<br/>Requests a change] --> B[Product / PO<br/>Discovery and context]
B --> C[Process Owner / TL / Architect<br/>Classifies the request]
C --> D{Type and impact}
D -->|Low impact| E[K1/K2<br/>Simple Work Item]
D -->|Medium impact| F[K2/K3<br/>Feature / Spike]
D -->|High impact| G[K4<br/>ADR / Architecture Change]
E --> H[Developer<br/>Implements]
F --> H
G --> I[Architect / TL<br/>Validates decision]
I --> H
H --> J[kaddo owners suggest<br/>Connects artifact to code]
J --> K[Pull Request]
K --> L[kaddo guard<br/>Detects possible drift]
L --> M{Is there drift?}
M -->|Yes| N[Update artifact<br/>or justify no impact]
M -->|No| O[Merge]
N --> O
O --> P[kaddo explain<br/>Updated project state]
Rules
- Do not document everything.
- Capture the minimum knowledge required for the Work Item’s Knowledge Level.
- Use Knowledge Levels to avoid bureaucracy.
- Declare ownership only where drift matters.
- Treat Guard warnings as review prompts, not failures.
- Use PR review to validate knowledge, not to punish missing docs.
- Never accept LLM output without human review.
Handling Guard warnings
kaddo guard is intentionally non-blocking. A warning means: “changed code matches an
artifact that was not updated — is that intentional?” Two valid answers:
- Update the artifact — the knowledge genuinely changed.
- Leave it intentionally — the change does not affect the knowledge; note it in the PR.
Guard never fails the build by itself. It surfaces a question for a human to answer.
Suggested PR checklist
- Does this change have the right Work Item?- Does the Work Item have enough context for its Knowledge Level?- If code ownership exists, was the artifact updated or intentionally left unchanged?- Did Guard produce warnings?- Are assumptions documented?- Is there learning to preserve?Back to Concepts or jump to the Prompt Workflow.