一键导入
plan-task
Generate a work plan for an issue. Saves to docs/work-plans/ and commits as the first step on the feature branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a work plan for an issue. Saves to docs/work-plans/ and commits as the first step on the feature branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Audit the project for license headers, build health, documentation coverage, ADR currency, and third-party code boundaries. Reports findings without making changes.
Applies UNH CCOM/JHC official brand colors, typography, naming conventions, and editorial style to documentation and artifacts. Use when writing or updating project documentation, README files, web content, presentations, or any material that should reflect the Center's institutional identity.
Research a topic using web sources and maintain a living research digest at docs/research_digest.md.
Evaluate a PR against project conventions and ADRs. Produces a structured report without posting unless asked.
基于 SOC 职业分类
| name | plan-task |
| description | Generate a work plan for an issue. Saves to docs/work-plans/ and commits as the first step on the feature branch. |
/plan-task <issue-number>
Generate a work plan for an issue with ADR awareness. Use EnterPlanMode for general codebase exploration and approach design; use this skill to produce a structured, committed plan that accounts for project conventions and ADR compliance.
gh issue view <N> --json title,body,labels,comments,url
AGENTS.md -- project rulesdocs/decisions/*.md -- ADR titles (read triggered ADRs in full)Read relevant files to understand the current state:
Write the plan to docs/work-plans/PLAN_ISSUE-<N>.md:
# Plan: <issue-title>
## Issue
<issue URL>
## Context
<Brief summary of current state and what needs to change>
## Approach
1. **<step>** -- <what and why>
2. ...
## Files to Change
| File | Change |
|------|--------|
| `path/to/file` | Description of change |
## ADR Compliance
| ADR | Triggered | How addressed |
|-----|-----------|---------------|
| <relevant ADR> | Yes/No | <explanation> |
## Open Questions
- <anything that needs human input before implementation>
## Estimated Scope
<single PR / multiple PRs / needs breakdown>
git add docs/work-plans/PLAN_ISSUE-<N>.md
git commit -m "Add work plan for #<N>
<one-line summary of the approach>"
git push -u origin HEAD
ISSUE_TITLE=$(gh issue view <N> --json title --jq '.title')
gh pr create --draft --title "$ISSUE_TITLE" --body-file docs/work-plans/PLAN_ISSUE-<N>.md
Summarize:
test_foo.cpp" is.