# Show Plan

> Display current session plan. Trigger with "show the plan", "plan progress?", "current plan?", "display plan".

- Skill: `wasabeef/show-plan` (Agent Skill)
- Install (CLI): `npx skillmds@latest add wasabeef/show-plan`
- Raw SKILL.md: https://api.skillmd.com/api/skills/wasabeef/show-plan/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: wasabeef (https://skillmd.com/u/wasabeef)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/wasabeef/show-plan

---


# Display current session plan

Display the plan being executed or executed in the current session.

## Usage

```bash
/show-plan
```

## Basic Examples

```bash
# Check current plan
/show-plan
"Display executing plan"

# When no plan exists
/show-plan
"There is no plan in the current session"
```

## Features

- Detect plans created with ExitPlanMode
- Search for headings containing keywords like implementation plan, implementation details, plan
- Format and display plan contents
- Clearly notify when no plan exists

## Collaboration with Claude

```bash
# Check plan during implementation
"What was I implementing?"
/show-plan

# When executing multiple tasks
"Let me check the current plan again"
/show-plan

# Review after plan execution
"Show me the plan I executed earlier"
/show-plan
```

## Detection Patterns

Based on the format of plans generated by ExitPlanMode, the following patterns are detected:

- Headings starting with `##` (including Plan, Planning, Strategy)
- `### Changes` (Changes)
- `### Implementation Details` (Implementation Details)
- `### Implementation Plan` (Implementation Plan)
- Numbered headings like `### 1.`

## Notes

- Only displays plans in the current session (does not include past sessions)
- Displays the latest plan with priority

