v0.1.0
oh-my-grok v0.1.0
First public release of the Grok Build productivity plugin (manual release while GitHub Actions billing is locked).
Install
grok plugin install github:mihazs/oh-my-grok@v0.1.0 --trust
grok plugin enable oh-my-grokRequires Grok Build CLI 0.1.x+ (tested on 0.2.x). Run grok plugin validate . after install.
Features
- Skill gate — hooks block mutating tools until catalog skills are Read
- Ralph loop —
/ralph-loopwork-until-done with Stop continuations - Ultrawork —
/ulw-loop,/ultraworkwith verifier gate before exit - Todo + boulder —
.omg/boulder.json, plans, todo mirror - Handoff —
/handofffor new-session continuity - Merged hooks — single
UserPromptSubmitcontext - Workspace context —
AGENTS.md+ pluginrules/*.mdeach prompt - Stop chain — Ralph → boulder → todos → plan (see hooks/README.md)
Slash commands
| Command | Purpose |
|---|---|
/ralph-loop "task" |
Work-until-done |
/ulw-loop "task" |
Ralph + verification |
/cancel-ralph |
Clear loop |
/handoff |
Session handoff |
/stop-continuation |
Pause auto-continue |
/resume-continuation |
Resume |
Documentation
Complements oh-my-openagent — Grok Build only, not a replacement.
CI note
Hook smoke tests are defined in .github/workflows/ci.yml. They run when GitHub Actions billing is restored. Local test:
export GROK_PLUGIN_ROOT="$(pwd)"
for t in hooks/test-*.sh; do
case "$(basename "$t")" in test-inline-skill-gate.sh) continue ;; esac
bash "$t"
done