---
name: Risk-Adjusted Planning
slug: risk-adjusted-planning
category: AI Engineering
description: Risk-Adjusted Planning helps structure high-risk work with stage gates, pass/fail criteria, and rollback points. Use it for refactors, migrations, or other changes that need correctness and risk control before coding.
github: "https://github.com/Joonghyun-Lee-Frieren/oh-my-antigravity/tree/main/skills/ralplan"
language: JavaScript
stars: 210
forks: 27
install: "npx degit https://github.com/Joonghyun-Lee-Frieren/oh-my-antigravity/tree/main/skills/ralplan ~/.claude/skills/ralplan"
installs_to: ~/.claude/skills/ralplan
source_path: skills/ralplan/SKILL.md
collection_size: 11
category_size: 2970
collection_url: "https://dirskills.com/collections/Joonghyun-Lee-Frieren/oh-my-antigravity"
added: 2026-09-04T05:26:22.349Z
last_synced: 2026-09-04T05:26:22.349Z
canonical_url: "https://dirskills.com/skills/risk-adjusted-planning"
---

# Risk-Adjusted Planning

Risk-Adjusted Planning helps structure high-risk work with stage gates, pass/fail criteria, and rollback points. Use it for refactors, migrations, or other changes that need correctness and risk control before coding.

**Install:**

```bash
npx degit https://github.com/Joonghyun-Lee-Frieren/oh-my-antigravity/tree/main/skills/ralplan ~/.claude/skills/ralplan
```

## README

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

```markdown
## Goal
- ...

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

## Risk Controls
- ...

## Rollback Plan
- ...
```
