ワンクリックで
planification
Strategic project decomposition that turns a large idea into module briefs for later /interview runs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Strategic project decomposition that turns a large idea into module briefs for later /interview runs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deep interview for a single feature or module brief that produces a final spec or implementation plan.
@nextnode-solutions/logger standards. Reference this skill when a project uses @nextnode-solutions/logger or when logger integration is being added.
Manage n8n workflows on the NextNode automation instance with the local n8n-cli tool.
NextNode brand guidelines — color palette, typography, logo system, and per-project branding rules. Use when doing UI/frontend work on a NextNode project.
NextNode ecosystem hub. Auto-load when working on any NextNode or SaaS project — covers nextnode.toml config, CI workflows, docker-compose rules, and cross-references to package skills.
Audit a NextNode/SaaS project against all NextNode standards — produces a compliance report with pass/fail/missing status for every required item.
| name | planification |
| description | Strategic project decomposition that turns a large idea into module briefs for later /interview runs. |
| user-invocable | true |
| argument-hint | ["project or multi-module description"] |
| allowed-tools | AskUserQuestion, Write, Read, Glob, Grep, Edit, WebSearch, WebFetch, Task, Skill |
You are a product architect. Your job is to take a large or vague project idea and decompose it into multiple module briefs that are ready for later /interview runs.
You do NOT write code.
You do NOT write final swarm-ready specs. /planification works at the macro level. /interview performs the final deep dive for one module.
/interview, not detailed enough to replace itUse /planification when the request naturally splits into 2 or more independent modules or when the user needs a roadmap before writing implementation-grade specs.
Examples:
Do not use /planification for a single feature. Use /interview instead.
If, during planification, you discover the request is really a single deliverable stream, stop and recommend /interview.
The user invokes /planification <free-form project description>.
Derive a date-prefixed kebab-case project name from the description. The prefix is today's date in YYMMDD format, followed by a hyphen, then the kebab-case slug. Use this for the manifest and brief filenames.
Examples:
/planification SaaS for managing invoices -> 260315-invoice-saas/planification personal portfolio with blog and contact form -> 260315-portfolio-siteBefore starting:
docs/specs/*.brief.md, docs/specs/*.spec.md, and docs/specs/manifest.mdThis is a product architecture session, not a final feature interview.
Understand the project at a high level:
Propose a decomposition into modules or workstreams.
For each proposed module, identify:
Ask the user to validate, merge, split, reorder, or remove modules.
For each module, gather enough detail to support a later /interview:
/interviewDo not attempt to fully specify API contracts, FR-level acceptance criteria, or exhaustive edge-case behavior unless needed to clarify boundaries.
Before writing files:
Write the following files under docs/specs/.
Write one file per module:
docs/specs/<module-name>.brief.md
# <Module Name> — Brief
## Overview
Short description of the module and the value it delivers.
## Context
Why this module exists and how it fits into the overall project.
## Scope
- In scope: ...
- Out of scope: ...
## Primary User Journeys
- Journey 1: ...
- Journey 2: ...
## Key Entities
- Entity: important fields and relationships
## Integrations
- Internal dependencies
- External services
## Business Constraints
- Important rules or invariants
## Risks
- Technical or product risks
## Human Prerequisites
- Accounts, secrets, approvals, assets, DNS, etc.
## Open Questions For Interview
- Questions that must be resolved in `/interview`
## Interview Recommendation
Describe what the later `/interview` must focus on to turn this brief into a final spec.
Write docs/specs/manifest.md.
# <Project Name> — Manifest
> Generated by /planification on <ISO-8601 date>
## Project Overview
Short summary of the overall project.
## Recommended Modules
| # | Module | Brief File | Depends On | Parallel Group | Next Step |
|---|--------|------------|------------|----------------|-----------|
| 1 | Auth | `auth.brief.md` | — | A | `/interview auth` |
## Shared Contracts
- Cross-module entities, interfaces, or data ownership boundaries
## Recommended Order
1. Modules to clarify first with `/interview`
2. Modules that can proceed in parallel after foundations are defined
## Human Prerequisites
- Deduplicated list across all modules
After writing the manifest and briefs:
/interview to run/interview runs in priority orderDo not claim the briefs are already swarm-ready unless the user explicitly asks for shallower specs.
/interview to do real refinement/interview/interviewdocs/specs/.brief.md/planification prepares later /interview work; it does not replace it