Oh-my-gemini-cli ralplan

Purpose

install
source · Clone the upstream repo
git clone https://github.com/Joonghyun-Lee-Frieren/oh-my-gemini-cli
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Joonghyun-Lee-Frieren/oh-my-gemini-cli "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ralplan" ~/.claude/skills/joonghyun-lee-frieren-oh-my-gemini-cli-ralplan && rm -rf "$T"
manifest: skills/ralplan/SKILL.md
source content

Purpose

Use this skill when planning must prioritize correctness and risk control over speed.

Trigger

  • High-risk refactors or migrations
  • Security or reliability-sensitive changes
  • User asks for strict planning before coding

Workflow

  1. Define objective, constraints, and non-goals.
  2. Build a stage-gated plan (
    plan -> prd -> exec -> verify -> fix
    ).
  3. Define hard pass/fail criteria per stage.
  4. Include rollback points and stop conditions.
  5. Add validation gates before release readiness.

Output Template

## Goal
- ...

## Stage Gates
| Stage | Entry Criteria | Exit Criteria | Owner |
| --- | --- | --- | --- |

## Risk Controls
- ...

## Rollback Plan
- ...