plan▌
hyperb1iss/hyperskills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Verification-driven task decomposition with Sibyl-native tracking. Mined from 200+ real planning sessions — the plans that actually survived contact with code.
Structured Planning
Verification-driven task decomposition with Sibyl-native tracking. Mined from 200+ real planning sessions — the plans that actually survived contact with code.
Core insight: Plans fail when steps can't be verified. Decompose until every step has a concrete check. Track in Sibyl so plans survive context windows.
The Process
digraph planning {
rankdir=TB;
node [shape=box];
"1. SCOPE" [style=filled, fillcolor="#e8e8ff"];
"2. EXPLORE" [style=filled, fillcolor="#ffe8e8"];
"3. DECOMPOSE" [style=filled, fillcolor="#e8ffe8"];
"4. VERIFY & APPROVE" [style=filled, fillcolor="#fff8e0"];
"5. TRACK" [style=filled, fillcolor="#e8e8ff"];
"1. SCOPE" -> "2. EXPLORE";
"2. EXPLORE" -> "3. DECOMPOSE";
"3. DECOMPOSE" -> "4. VERIFY & APPROVE";
"4. VERIFY & APPROVE" -> "5. TRACK";
"4. VERIFY & APPROVE" -> "3. DECOMPOSE" [label="gaps found", style=dashed];
}
Phase 1: SCOPE
Bound the work before exploring it.
Actions
-
Search Sibyl for related tasks, decisions, prior plans:
sibyl search "<feature keywords>" sibyl task list -s todo -
Define success criteria — what does "done" look like?
- Measurable outcomes (tests pass, endpoint returns X, UI renders Y)
- NOT vague goals ("improve performance" → "p95 latency < 200ms")
-
Identify constraints:
- Files/modules that CAN'T change
- Dependencies that must be respected
- Timeline or budget considerations
-
Classify complexity:
Scale Description Planning Depth Quick fix < 3 files, clear solution Skip to implementation Feature 3-10 files, known patterns Light plan (this skill) Epic 10+ files, new patterns Full plan + orchestration Redesign Architecture change Full plan + research first
Gate
If this is a quick fix, stop planning and go build. Planning a 5-minute fix is waste.
Phase 2: EXPLORE
Understand the codebase surface area before decomposing.
Actions
-
Map the impact surface — which files/modules will this touch?
- Spawn an Explore agent if the scope is uncertain
- Read the actual code, don't guess from file names
-
Identify existing patterns:
- How does similar functionality work in this codebase?
- What conventions exist? (naming, file structure, test patterns)
-
Find the dependencies:
- What must exist before this can work?
- What will break if we change X?
Output
A mental model of the change surface:
"This touches: [module A] (new endpoint), [module B] (type changes), [module C] (tests). Pattern follows [existing feature X]. Depends on [infrastructure Y] being available."
Phase 3: DECOMPOSE
Break work into verifiable steps. Every step must have a check.
The Verification Rule
A step without a verification method is not a step — it's a hope.
For each task, define:
| Field | Description |
|---|---|
| What | Specific implementation action |
| Files | Exact files to create/modify |
| Verify | How to confirm it works |
| Depends on | Which tasks must complete first |
Verification Methods
| Method | When to Use |
|---|---|
typecheck |
Type changes, interface additions |
test |
Logic, edge cases, integrations |
lint |
Style, formatting, import order |
build |
Build system changes |
visual |
UI changes (screenshot or browser check) |
curl/httpie |
API endpoint changes |
manual |
Only when no automation exists |
Decomposition Heuristics
- 2-5 minute tasks are the sweet spot. If a task takes > 15 minutes, break it further.
- One concern per task. "Add endpoint AND write tests" is two tasks.
- Order by dependency, not difficulty. Foundation first.
- Mark parallelizable tasks. Tasks with no shared files can run simultaneously.
Task Format
## Task [N]: [Imperative title]
**Files:** `src/path/file.ts`, `tests/path/file.test.ts`
**Depends on:** Task [M]
**Parallel:** Yes/No (can run alongside Task [X])
### Implementation
[2-4 bullet points of what to do]
### Verify
- [ ] `pnpm typecheck` passes
- [ ] `pnpm test -- file.test.ts` passes
- [ ] [specific assertion about behavior]
Parallelizability Markers
Mark tasks that can run simultaneously for orchestration:
Wave 1 (foundation): Task 1, Task 2 [parallel]
Wave 2 (core): Task 3, Task 4 [parallel, depends on Wave 1]
Wave 3 (integration): Task 5 [sequential, depends on Wave 2]
Wave 4 (polish): Task 6, Task 7 [parallel, depends on Wave 3]
Phase 4: VERIFY & APPROVE
Review the plan before executing it.
Self-Check
Before presenting to the user, verify:
- Every task has a verification method
- Dependencies form a DAG (no cycles)
- No two parallel tasks modify the same files
- Total scope matches the original success criteria
- Nothing is over-engineered (YAGNI check)
Present for Approval
Show the plan as a structured list with waves:
## Plan: [Feature Name]
**Success criteria:** [measurable outcome]
**Estimated tasks:** [N] across [M] waves
**Parallelizable:** [X]% of tasks can run in parallel
### Wave 1: Foundation
- [ ] Task 1: [title] → verify: [method]
- [ ] Task 2: [title] → verify: [method]
### Wave 2: Core Implementation
- [ ] Task 3: [title] → verify: [method] (depends: 1)
- [ ] Task 4: [title] → verify: [method] (depends: 2)
### Wave 3: Integration
- [ ] Task 5: [title] → verify: [method] (depends: 3, 4)
Gap Analysis
After presenting, explicitly check:
- "Is there anything missing from this plan?"
- "Should any of these tasks be combined or split further?"
- "Are the success criteria right?"
Phase 5: TRACK
Register the plan in Sibyl for persistence.
Actions
-
Create a Sibyl task for the feature:
sibyl task create --title "[Feature]" -d "[success criteria]" --complexity epic -
Create sub-tasks for each plan step:
sibyl task create --title "Task 1: [title]" -e [epic-id] -d "[implementation + verify]" -
Record the plan decision:
sibyl add "Plan: [feature]" "[N] tasks across [M] waves. Key decisions: [architectural choices]. Dependencies: [critical path]."
Adaptive Replanning
Plans change when they meet reality. When a task reveals unexpected complexity:
- Don't force through. Pause and reassess.
- Update the plan — add/remove/modify tasks.
- Update Sibyl — keep the tracking current.
- Communicate — "Task 3 revealed [X]. Adjusting plan: [changes]."
Execution Handoff
Once the plan is approved, hand off to the right tool:
| Situation | Handoff |
|---|---|
| 3-5 simple tasks, user present | Execute directly with verification gates |
| 5-15 tasks, mixed parallel | /hyperskills:orchestrate with wave strategy |
| Large epic, 15+ tasks | Orchestrate with Epic Parallel Build strategy |
| Needs more research first | /hyperskills:research before executing |
Trust Gradient for Execution
| Phase | Review Level | When |
|---|---|---|
| Full ceremony | Implement + spec review + code review | First 3-4 tasks |
| Standard | Implement + spec review | Tasks 5-8, patterns stabilized |
| Light | Implement + quick verify | Late tasks, established patterns |
This is earned confidence, not cutting corners.
What This Skill is NOT
- Not required for simple tasks. If the solution is obvious, just build it.
- Not a design doc generator. Plans are action lists, not architecture documents.
- Not a blocker. If the user says "just start building," start building. You can plan in parallel.
- Not rigid. Plans adapt. The first plan is a hypothesis.
How to use plan on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add plan
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches plan from GitHub repository hyperb1iss/hyperskills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate plan. Access the skill through slash commands (e.g., /plan) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★52 reviews- ★★★★★Charlotte Chen· Dec 20, 2024
Useful defaults in plan — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Ganesh Mohane· Dec 16, 2024
plan has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Charlotte Yang· Dec 8, 2024
I recommend plan for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Carlos Malhotra· Nov 27, 2024
Useful defaults in plan — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Carlos Bhatia· Nov 11, 2024
I recommend plan for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Sakshi Patil· Nov 7, 2024
Solid pick for teams standardizing on skills: plan is focused, and the summary matches what you get after install.
- ★★★★★Chaitanya Patil· Oct 26, 2024
We added plan from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Charlotte Martin· Oct 18, 2024
plan is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Min Thompson· Oct 2, 2024
plan reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sophia Rao· Sep 21, 2024
Solid pick for teams standardizing on skills: plan is focused, and the summary matches what you get after install.
showing 1-10 of 52