Consolidates three codebases into a single agent orchestration repo: - agentci (from go-scm): Clotho dual-run verification, agent config, SSH security (sanitisation, secure commands, token masking) - jobrunner (from go-scm): Poll-dispatch-report pipeline with 7 handlers (dispatch, completion, auto-merge, publish draft, dismiss reviews, send fix command, tick parent epic) - plugins marketplace (from agentic/plugins): 27 Claude/Codex/Gemini plugins with shared MCP server All 150+ tests passing across 6 packages. Co-Authored-By: Virgil <virgil@lethean.io>
53 lines
822 B
Markdown
53 lines
822 B
Markdown
---
|
|
name: ready
|
|
description: Quick check if work is ready to commit
|
|
---
|
|
|
|
# Ready Check
|
|
|
|
Quick verification that work is ready to commit.
|
|
|
|
## Checks
|
|
|
|
1. **No uncommitted changes left behind**
|
|
2. **No debug statements**
|
|
3. **Code is formatted**
|
|
|
|
## Process
|
|
|
|
```bash
|
|
# 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.
|