一键导入
para-summarize
Generate a summary document from the current work session. Supports simple and phased plans. Handles PR creation when run standalone.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a summary document from the current work session. Supports simple and phased plans. Handles PR creation when run standalone.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Display the PARA-Programming quick-reference guide with all 11 skills and the Research→Plan→Review→Execute→Review→Summarize→Archive workflow.
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.
| name | para-summarize |
| description | Generate a summary document from the current work session. Supports simple and phased plans. Handles PR creation when run standalone. |
| 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.mdassets/summary-template.md as the summary structurecontext/context.md: moves plan from active context to completed summaries, updates timestamp, and marks phase status as completed when relevantYYYY-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 exists, fall back to git diff and git status on the current branchassets/summary-template.mdcontext/context.md metadataIf the para-summarize skill was used standalone, not as part of the para-workflow skill, the next steps are:
git -C {worktree_path} push -u origin para/{task-name}gh pr create from the worktree branchpara-archive skill to clean up the worktree and archive contextIf para-summarize was invoked as Step 4 of the para-workflow skill, the PR was already created in Step 2 of the workflow. Skip the manual push/PR instructions above and return control to the para-workflow skill for merge and archive handling.