ワンクリックで
summarize
Generate a summary document from the current work session
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate a summary document from the current work session
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Initialize PARA-Programming structure in the current project
Create a planning document through collaborative dialogue, with support for multi-phase plans
Perform deep codebase exploration and produce a context-compressed research document
Orchestrate the full PARA execution cycle across phases
Archive the current context to create a clean slate for the next task
Execute the active plan by creating an isolated worktree and tracking todos
| name | summarize |
| description | Generate a summary document from the current work session |
| model | sonnet |
| effort | medium |
Generate a summary document from the current work session. Supports both simple and phased plans.
/para:summarize # Auto-detect active plan/phase
/para:summarize --phase=N # Summarize specific phase
worktree_path from context/context.md JSON metadatagit -C {worktree_path} diff main...HEAD and git -C {worktree_path} log main..HEADcontext/context.mdcontext/summaries/YYYY-MM-DD-task-name-summary.md (or ...-phase-N-summary.md)context/context.md: moves plan from active_context to completed_summaries, updates timestampYYYY-MM-DD formatcontext/context.md to find active plan and worktree_pathworktree_path is set, analyze changes with:
git -C {worktree_path} diff main...HEAD for file-level changesgit -C {worktree_path} log main..HEAD --oneline for commit historyworktree_path (legacy or --no-worktree execution), fall back to git diff and git status on current branchsummary-template.mdcontext/context.md metadataIf /para:summarize was run standalone (not as part of /para:workflow), the next steps are:
git -C {worktree_path} push -u origin para/{task-name}gh pr create from the worktree branch/para:archive to clean up the worktree and archive contextIf /para:summarize was invoked as Step 4 of /para:workflow, the PR was already created in Step 2 of the workflow — skip the manual push/PR instructions above.