Skip to content

v0.1.0

Choose a tag to compare

@mihazs mihazs released this 02 Jun 23:44
· 30 commits to main since this release

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-grok

Requires 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-loop work-until-done with Stop continuations
  • Ultrawork/ulw-loop, /ultrawork with verifier gate before exit
  • Todo + boulder.omg/boulder.json, plans, todo mirror
  • Handoff/handoff for new-session continuity
  • Merged hooks — single UserPromptSubmit context
  • Workspace contextAGENTS.md + plugin rules/*.md each 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