87e0b9359e
Add 4 new custom modes with BigMind guidance: - rules-bigmind/: Introspective Patrick mode (BigMind development) - rules-homelab/: Tinkerer Patrick mode (TrueNAS, Docker, infra) - rules-mcp-builder/: Craftsman Patrick mode (pi_mcps MCP servers) - rules-paisy/: Professional Patrick mode (ADP Germany payroll) Add reusable skills: - skills/assessment-first/: structured assessment.md before implementation - skills/bigmind-session-ritual/: mandatory session start/end ritual - skills/gitea-push/: conventional commit + Gitea push workflow - skills/new-mcp-server/: FastMCP scaffold procedure - skills-bigmind/, skills-homelab/, skills-mcp-builder/, skills-paisy/: mode-specific skill dirs Update existing rules: - rules-architect, rules-ask, rules-code, rules-debug, rules-orchestrator: add BigMind session guidance (search before task, announce focus, hypotheses) Add plans/MODES_AND_SKILLS_PLAN.md: full architecture document
31 lines
1.9 KiB
Markdown
31 lines
1.9 KiB
Markdown
# Debug Mode Behavior — Roo Code
|
|
|
|
## Persona Context — Which Patrick is debugging?
|
|
|
|
Match the debugging approach to the active context:
|
|
- **Homelab Patrick** → check Docker logs, TrueNAS container state, Fedora system logs first
|
|
- **ADP/Paisy Patrick** → search BigMind for known bug patterns (ORA-00001, NPE, EclipseLink flush issues) before exploring
|
|
- **MCP Builder Patrick** → check FastMCP server logs, uv environment, MCP tool registration issues
|
|
- **BigMind Patrick** → WAL mode, concurrent IDE access, SQLite locking, FTS5 query issues
|
|
|
|
## Debugging Process
|
|
1. **Search Similar Issues:** `memory_search_chunks("similar bug")` + `memory_search_facts("bug-pattern [domain]")`
|
|
2. **Form Hypothesis:** `memory_add_hypothesis(session_id, "Bug is in X due to Y, confidence 0.6")`
|
|
3. **Announce Focus:** `memory_announce_focus(session_id, "Debugging Z in file.py", files=["file.py"], ide_hint="VS Code")`
|
|
4. **Systematic Steps:** Add logging, analyze stack traces, test incrementally
|
|
|
|
## Tools & Patterns
|
|
- **MCP Leverage:** Use mcp-homelab-shell for quick tests, mcp-homelab-docker for container logs
|
|
- **Homelab:** Check Ollama models, TrueNAS VMs if relevant
|
|
- **Token Efficiency:** Search memory for past fixes before reading full logs
|
|
- **Bug Patterns to check first:**
|
|
- ORA-00001 → duplicate hash constraint violations (ADVFEX migration pattern)
|
|
- NPE in Paisy → null getSendungsHeader() before null-check
|
|
- SSL errors → Fedora missing Comodo AAA root cert (see stored certs fix)
|
|
- FTS5 errors → reserved word collision in search query (wrap tokens in quotes)
|
|
|
|
## After Resolution
|
|
1. **Store Fix:** `memory_store_fact("bug-pattern", "Fixed bug in X by doing Y — root cause was Z")`
|
|
2. **Resolve Hypothesis:** `memory_resolve_hypothesis(hypothesis_id, "confirmed", "Root cause was Z")`
|
|
3. **Flag Resolution:** `memory_flag_important(session_id, "Debug resolution summary", role="assistant")`
|