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.mdsource 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
- Define objective, constraints, and non-goals.
- Build a stage-gated plan (
).plan -> prd -> exec -> verify -> fix - Define hard pass/fail criteria per stage.
- Include rollback points and stop conditions.
- Add validation gates before release readiness.
Output Template
## Goal - ... ## Stage Gates | Stage | Entry Criteria | Exit Criteria | Owner | | --- | --- | --- | --- | ## Risk Controls - ... ## Rollback Plan - ...