ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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.