一键导入
para-help
Display the PARA-Programming quick-reference guide with all 11 skills and the Research→Plan→Review→Execute→Review→Summarize→Archive workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Display the PARA-Programming quick-reference guide with all 11 skills and the Research→Plan→Review→Execute→Review→Summarize→Archive workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Archive the current context to create a clean slate for the next task. Removes worktrees, resets context/context.md, preserves summaries.
Decision helper to determine if PARA workflow should be used for a given request. Triages tasks into PARA-worthy vs direct-answer categories.
Execute the active plan by creating an isolated git worktree and tracking todos. Supports simple and phased plans with TDD-first commit-per-todo discipline.
Initialize PARA-Programming structure in the current project. Use when setting up a new repo for PARA workflow, creating context/ directory, or bootstrapping AGENTS.md.
Create a planning document through collaborative dialogue with support for multi-phase plans. Use for all non-trivial changes before writing code. Gates the para-execute skill.
Perform deep codebase exploration and produce a context-compressed research document for planning. Use before the para-plan skill for non-trivial tasks to gather contracts, patterns, and interface boundaries.
| name | para-help |
| description | Display the PARA-Programming quick-reference guide with all 11 skills and the Research→Plan→Review→Execute→Review→Summarize→Archive workflow. |
| model | haiku |
| effort | low |
Display the PARA-Programming quick-reference guide.
para-help
Determine how to render user-facing skill requests before displaying the reference:
para-plan skill to plan <task>.para-<skill> [arguments].para-* identifier on every line. Do not replace identifiers with generic labels such as “the plan review skill” or reorder/expand the Typical Flow.| Client | User-facing form |
|---|---|
| OpenAI Codex | $para-<skill> [arguments] |
| Cursor | /para-<skill> [arguments] |
| Pi, skill commands enabled | /skill:para-<skill> [arguments] |
| Pi, skill commands disabled | natural-language — Use the para-<skill> skill <intent-and-arguments>. |
| OpenCode | natural-language — Use the para-<skill> skill <intent-and-arguments>. |
| Gemini CLI | natural-language — Use the para-<skill> skill <intent-and-arguments>. |
| Unknown client | natural-language — Use the para-<skill> skill <intent-and-arguments>. |
Display the reference below. Keep the skill identifiers canonical. In the Typical Flow, render each request using the selected client form; when using natural language, include both the exact skill name and its intent/arguments.
For natural-language clients, render the Typical Flow with this exact request sequence:
Use the `para-research` skill to research "Add user authentication".
Use the `para-plan` skill to plan "Add user authentication".
Use the `para-review` skill with `--plan`.
Use the `para-workflow` skill. Or manually:
Use the `para-execute` skill.
Use the `para-review` skill with `--pr`.
Use the `para-summarize` skill.
Use the `para-archive` skill.
Workflow: Research → Plan → Review → Execute → Review → Summarize → Archive
Detailed workflow: Research → Plan → Review Plan → Execute → Review PR → Summarize → Archive
Use PARA if the task results in git changes: features, bug fixes, refactoring, config, migrations, tests, documentation edits, or complex debugging.
Skip PARA if the task is read-only or informational: questions, navigation, explanations, or state inspection.
| Skill | Purpose |
|---|---|
para-init | Initialize PARA structure in a project |
para-research <task> | Deep codebase research before planning |
para-plan <task> | Create a planning document through collaboration |
para-review --plan|--pr | Staff+ review loop for plans and PRs |
para-execute | Create worktree, extract todos, start execution |
para-workflow | Orchestrate execute → PR → review → summarize → archive |
para-summarize | Generate post-work summary |
para-archive | Archive context and start fresh |
para-status | Check current workflow state |
para-check | Decide whether a request needs PARA |
para-help | Show this reference |
para-research Add user authentication
para-plan Add user authentication
para-review --plan
para-workflow # or manually:
para-execute # -> Creates worktree, implements with TDD
para-review --pr # -> Staff+ review loop
para-summarize # -> Generate summary
para-archive # -> Clean up worktree
context/
├── context.md # Active session context
├── plans/ # YYYY-MM-DD-task-name.md
├── summaries/ # YYYY-MM-DD-task-name-summary.md
├── archives/ # YYYY-MM-DD-context.md
├── data/ # Input/output files, research docs
└── servers/ # MCP tool wrappers
para-status skill to see where you are in the workflowpara-check skill if unsure whether a task needs PARA../../docs/METHODOLOGY.md