@mergora/gora
v0.1.0
Published
Growth Oriented Repo Autopilot (Mergora) - run-based DevOps autopilot CLI
Downloads
27
Readme
@mergora/gora
Gora is the Growth Oriented Repo Autopilot CLI for Mergora.
MVP capabilities:
- Run-based audit output in
.runs/<taskId>/<runId>/... - Iterative "fix until green" loop using Codex CLI (
codex exec --json) - Thin GitHub Actions integration via
gora init --workflow
Install / run
npm i -g @mergora/gora
gora --helpOr:
npx -y @mergora/gora@latest --helpRepo setup (MVP)
Create .mergora.yml using JSON-compatible YAML (YAML is a superset of JSON):
{
"task": { "prd": "prd/PRD-00-Bootstrap.md" },
"run": { "maxIters": 5 },
"validate": { "cmd": "bash .github/scripts/ci.sh" },
"gates": { "denyWorkflows": true, "denyLockfiles": true }
}Generate a starter workflow stub:
gora init --workflowThen in a PR comment:
/gora runRequired secret (MVP)
CODEX_AUTH_JSON_B64 – base64 of ~/.codex/auth.json from a machine where codex login has already been done.
