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
822 B
822 B
| name | description |
|---|---|
| ready | Quick check if work is ready to commit |
Ready Check
Quick verification that work is ready to commit.
Checks
- No uncommitted changes left behind
- No debug statements
- Code is formatted
Process
# Check for changes
git status --porcelain
# Quick format check
core go fmt --check 2>/dev/null || core php fmt --test 2>/dev/null
Output
## Ready Check
✓ All changes staged
✓ No debug statements
✓ Code formatted
**Ready to commit!**
Or:
## Ready Check
✗ Unstaged changes: 2 files
✓ No debug statements
✗ Formatting needed: 1 file
**Not ready** - run `/verify:verify` for details
When to Use
Use /verify:ready for a quick check before committing.
Use /verify:verify for full verification including tests.