Summary:\n- added Codex marketplace registry plus awareness/ethics/guardrails sub-plugins\n- mirrored Claude plugin commands/scripts/hooks into codex api/ci/code/collect/coolify/core/issue/perf/qa/review/verify\n- embedded Axioms of Life ethics modal, guardrails, and kernel files under codex/ethics\n- added Codex parity report, improvements list, and MCP integration plan\n- extended Gemini MCP tools and docs for Codex awareness
645 B
645 B
| name | description |
|---|---|
| debug | Systematic debugging workflow |
Debugging Protocol
Step 1: Reproduce
- Run the failing test/command
- Note exact error message
- Identify conditions for failure
Step 2: Isolate
- Binary search through changes (git bisect)
- Comment out code sections
- Add logging at key points
Step 3: Hypothesize
Before changing code, form theories:
- Theory A: ...
- Theory B: ...
Step 4: Test Hypotheses
Test each theory with minimal investigation.
Step 5: Fix
Apply the smallest change that fixes the issue.
Step 6: Verify
- Run original failing test
- Run full test suite
- Check for regressions