원클릭으로
post-release-followup
Analyze release workflow findings and recommend follow-up actions — execute immediately or register as issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze release workflow findings and recommend follow-up actions — execute immediately or register as issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full R017 verification (5+3 rounds) before commit
Load a skill profile to switch active plugin set. Use when user wants to focus on a specific workflow (web-app/data-eng/harness-dev/minimal) and reduce skill enumeration block size per
6-stage structured development cycle with stage-based tool restrictions
Deploy applications to Vercel with auto-detection and preview URLs
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
Monitor Claude Code releases and auto-generate GitHub issues for each new version
| name | post-release-followup |
| description | Analyze release workflow findings and recommend follow-up actions — execute immediately or register as issues |
| scope | harness |
| user-invocable | false |
| effort | medium |
After PR creation in the auto-dev release workflow, collect unaddressed findings and present actionable follow-up recommendations. Genuine defects and process gaps are registered as GitHub issues automatically (no user confirmation needed). Only code-changing "immediate action" items require user confirmation.
Gather unfinished work from multiple sources:
Source A — Remaining open issues:
gh issue list --label verify-done --state open --json number,title,labelsSource B — Deep-verify findings:
.claude/outputs/sessions/{today}/Under mode: "bypassPermissions", subagents write directly to .claude/outputs/sessions/ with the Write tool — direct .claude/** writes are permitted (CC v2.1.121+, #1101). No /tmp staging or script wrapping is needed. Read-only Bash on .claude/outputs/ (e.g., cat, head, wc) is allowed for verification.
Reference: R006/R010 sensitive-path handling (direct .claude/** write under bypassPermissions), #1101.
Source C — Triage deferred items:
.claude/outputs/sessions/{today}/Source D — TODO markers in changed files:
git diff develop...HEAD --name-only to get changed filesTODO, FIXME, HACK markers added in this releaseSource E — PR review feedback:
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments and gh api repos/{owner}/{repo}/issues/{pr_number}/commentsRemove duplicates (same issue referenced from multiple sources). Categorize:
| Category | Criteria | Default Action |
|---|---|---|
| 즉시 실행 | P1/P2 잔여 이슈, MEDIUM+ 검증 발견사항, Critical/High PR 리뷰 발견사항 | 즉시 실행 |
| 이슈 등록 | P3 이슈, LOW 검증 발견사항, 새 TODO, Medium PR 리뷰 발견사항 | 이슈로 등록 |
| 참고 | 이미 추적 중인 이슈, 외관 관련 메모 | 건너뛰기 |
Before presenting the summary to the user, auto-register all "이슈 등록" category items that are genuine defects or process gaps. No user confirmation is required for these.
Definition — auto-register if ANY of:
Definition — do NOT auto-register (keep for user choice):
When ambiguous, lean toward registering. Registering a borderline item costs nothing; missing a genuine defect costs a future session.
How to auto-register:
gh issue create \
--title "{간결한 설명}" \
--body "## 출처\n\nv{version} 릴리즈 워크플로우에서 자동 등록.\n\n## 컨텍스트\n\n{상세 컨텍스트}\n\n## 권장 조치\n\n{권장 사항}" \
--label "professor"
Add priority label (P3 default for defects surfaced here; escalate to P2 if MEDIUM+ severity).
Authority: user directive (session 102) — genuine defects found during release workflows should be registered without prompting. See also R016 Defect Response Matrix: CI/infra defect and Process gap both require Issue registration.
After auto-registering, include the created issue numbers in the summary display.
Auto-register all genuine defects first (see above). Then display follow-up summary showing what was already registered and what remains for user decision:
[Follow-up] {n}개 후속 작업 발견
━━━ 자동 등록 완료 ({count}개) ━━━
✓ #{issue_number} — {description} (이미 등록됨)
✓ #{issue_number} — {description} (이미 등록됨)
━━━ 즉시 실행 추천 ({count}개) ━━━
1. {description} — 출처: {source}
2. {description} — 출처: {source}
━━━ 참고 사항 ({count}개) ━━━
3. {description} — 이미 #{issue_number}로 추적 중
즉시 실행 항목 선택:
[A] 추천대로 실행 (즉시 실행 항목 모두 실행)
[B] 개별 선택 (항목별로 질문)
[C] 건너뛰기
Use AskUserQuestion (or equivalent user prompt) to get the choice only if there are "즉시 실행" items. If there are none, skip the prompt and complete automatically.
Option A (추천대로):
Option B (개별 선택):
[{n}] {description} — 실행(E) / 건너뛰기(S)?Option C (건너뛰기):
[Follow-up Complete]
├── 즉시 실행: {n}개 완료
├── 이슈 등록: {n}개 (#{numbers})
├── 건너뛰기: {n}개
└── 총 처리: {total}개
For auto-registered genuine defects / process gaps:
gh issue create \
--title "{간결한 설명}" \
--body "## 출처\n\nv{version} 릴리즈 워크플로우에서 자동 등록.\n\n## 컨텍스트\n\n{triage/verify에서의 상세 컨텍스트}\n\n## 권장 조치\n\n{권장 사항}" \
--label "professor"
For user-requested issue creation (Option C fallback, if ever used):
gh issue create \
--title "{간결한 설명}" \
--body "## 출처\n\nv{version} 릴리즈 워크플로우에서 발견.\n\n## 컨텍스트\n\n{triage/verify에서의 상세 컨텍스트}\n\n## 권장 조치\n\n{권장 사항}" \
--label "professor"
Add priority label (P1, P2, P3) based on categorization. Default for auto-registered items: P3 (escalate to P2 for MEDIUM+ severity).
gh CLI directly (read-only operation pattern)When spawning agents via the Agent tool during this skill's execution, always pass mode: "bypassPermissions". The Agent tool default (acceptEdits) overrides agent frontmatter permissionMode, causing permission prompts during unattended execution.