---
name: Oma Plan
slug: oma-plan
category: Automation
description: Oma Plan helps break non-trivial code changes into phases, tasks, dependencies, and validation steps before editing. Use it when a request needs strategy, sequencing, or a rollback-aware plan.
github: "https://github.com/Joonghyun-Lee-Frieren/oh-my-antigravity/tree/main/skills/oma-plan"
language: JavaScript
stars: 210
forks: 27
install: "npx degit https://github.com/Joonghyun-Lee-Frieren/oh-my-antigravity/tree/main/skills/oma-plan ~/.claude/skills/oma-plan"
installs_to: ~/.claude/skills/oma-plan
source_path: skills/oma-plan/SKILL.md
collection_size: 11
category_size: 1860
collection_url: "https://dirskills.com/collections/Joonghyun-Lee-Frieren/oh-my-antigravity"
added: 2026-09-04T05:26:21.682Z
last_synced: 2026-09-04T05:26:21.682Z
canonical_url: "https://dirskills.com/skills/oma-plan"
---

# Oma Plan

Oma Plan helps break non-trivial code changes into phases, tasks, dependencies, and validation steps before editing. Use it when a request needs strategy, sequencing, or a rollback-aware plan.

**Install:**

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

## README

## Purpose

Use this skill when the request is non-trivial and should be planned before editing code.

## Trigger

- User asks for strategy, roadmap, or migration plan
- Scope touches multiple files or subsystems
- Work needs sequencing or parallelization decisions

## Workflow

1. Restate goals, constraints, and acceptance criteria.
2. Inspect only the repository areas required for planning.
3. Break work into phases and atomic tasks.
4. Mark dependencies and parallelizable tasks.
5. Add validation checkpoints and rollback notes.

## Output Template

```markdown
## Goal
- ...

## Phase Plan
1. Phase 1 - ...
2. Phase 2 - ...

## Task Breakdown
1. ...
2. ...

## Risks
- ...

## Validation
- ...
```

## Notes

- This is a slash-friendly alias for the core planning skill to avoid collisions with Gemini CLI's built-in `/plan` command.
- Delegate architecture tradeoffs to `oma-architect` when needed.
- Keep plans executable and testable, not abstract.
