원클릭으로
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.