원클릭으로
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 직업 분류 기준
Pre-action boundary checking — validates agent tool calls against declared capabilities and task contracts
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
Multi-LLM adversarial consensus loop — 3+ LLMs compete to find flaws in designs/specs until unanimous agreement is reached
Monitor Claude Code releases and auto-generate GitHub issues for each new version
Execute OpenAI Codex CLI prompts and return results
YAML-based DAG workflow engine with topological execution and failure strategies
| 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. The user chooses: execute now, register as issues, or skip.
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:
.codex/outputs/sessions/{today}/Source C — Triage deferred items:
.codex/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 |
|---|---|---|
| Immediate | P1/P2 remaining issues, MEDIUM+ verify findings, Critical/High PR review findings | Execute now |
| Trackable | P3 issues, LOW verify findings, new TODOs, Medium PR review findings | Register as issue |
| Informational | Already-tracked issues, cosmetic notes | Skip |
Display follow-up summary:
[Follow-up] {n}개 후속 작업 발견
━━━ 즉시 실행 추천 ({count}개) ━━━
1. {description} — 출처: {source}
2. {description} — 출처: {source}
━━━ 이슈 등록 추천 ({count}개) ━━━
3. {description} — 출처: {source}
4. {description} — 출처: {source}
━━━ 참고 사항 ({count}개) ━━━
5. {description} — 이미 #{issue_number}로 추적 중
선택:
[A] 추천대로 실행 (즉시 실행 + 이슈 등록)
[B] 모두 즉시 실행
[C] 모두 이슈 등록
[D] 개별 선택 (항목별로 질문)
[E] 건너뛰기
Use AskUserQuestion (or equivalent user prompt) to get the choice.
Option A (추천대로):
gh issue createOption B (모두 즉시 실행):
Option C (모두 이슈 등록):
gh issue create with appropriate labelsprofessor for auto-triage in next workflow runOption D (개별 선택):
[{n}] {description} — 실행(E) / 이슈(I) / 건너뛰기(S)?Option E (건너뛰기):
[Follow-up Complete]
├── 즉시 실행: {n}개 완료
├── 이슈 등록: {n}개 (#{numbers})
├── 건너뛰기: {n}개
└── 총 처리: {total}개
When creating follow-up issues:
gh issue create \
--title "{concise description}" \
--body "## Source\n\nDiscovered during v{version} release workflow.\n\n## Context\n\n{detailed context from triage/verify}\n\n## Suggested Action\n\n{recommendation}" \
--label "professor"
Add priority label (P1, P2, P3) based on categorization.
gh CLI directly (read-only operation pattern)