Compare commits

..

2 Commits

Author SHA1 Message Date
Ed_
b1ab18f8e1 add anti-patterns to tier 1 2026-03-07 19:29:00 -05:00
Ed_
d7ac7bac0a more ref 2026-03-07 19:28:16 -05:00
2 changed files with 11 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ To ensure proper environment handling and logging, you MUST NOT call the `gemini
- `docs/guide_tools.md`: MCP Bridge 3-layer security model, full 26-tool inventory with params, Hook API GET/POST endpoints with request/response formats, ApiHookClient method reference - `docs/guide_tools.md`: MCP Bridge 3-layer security model, full 26-tool inventory with params, Hook API GET/POST endpoints with request/response formats, ApiHookClient method reference
- `docs/guide_mma.md`: Ticket/Track/WorkerContext data structures, DAG engine (cycle detection, topological sort), ConductorEngine execution loop, Tier 2 ticket generation, Tier 3 worker lifecycle with context amnesia - `docs/guide_mma.md`: Ticket/Track/WorkerContext data structures, DAG engine (cycle detection, topological sort), ConductorEngine execution loop, Tier 2 ticket generation, Tier 3 worker lifecycle with context amnesia
- `docs/guide_simulations.md`: `live_gui` fixture lifecycle, Puppeteer pattern, mock provider JSON-L protocol, visual verification patterns - `docs/guide_simulations.md`: `live_gui` fixture lifecycle, Puppeteer pattern, mock provider JSON-L protocol, visual verification patterns
- `docs/guide_meta_boundary.md`: Clarification of ai agent tools making the application vs the application itself.
### The Surgical Spec Protocol (MANDATORY for track creation) ### The Surgical Spec Protocol (MANDATORY for track creation)

View File

@@ -154,3 +154,13 @@ Focus: {One-sentence scope}
- READ-ONLY: Do NOT write code or edit files (except track spec/plan/metadata) - READ-ONLY: Do NOT write code or edit files (except track spec/plan/metadata)
- Do NOT execute tracks or implement features - Do NOT execute tracks or implement features
- Keep context strictly focused on product definitions and strategy - Keep context strictly focused on product definitions and strategy
## Anti-Patterns (Avoid)
- Do NOT implement code directly - delegate to Tier 3 Workers
- Do NOT skip TDD phases
- Do NOT batch commits - commit per-task
- Do NOT skip phase verification
- Do NOT use native `edit` tool - use MCP tools
- DO NOT SKIP a TEST IN PYTEST JUSTS BECAUSE ITS BROKEN AND HAS NO TRIVIAL SOLUTION OR FIX.
- DO NOT SIMPLIFY A TEST JUST BECAUSE IT HAS NO TRIVAL SOLUTION TO FIX.