원클릭으로
task-definition
Interactive task definition with Q&A and documentation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Interactive task definition with Q&A and documentation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Investigate GitHub pull request review comments, determine whether each comment is valid, propose fixes, and document the analysis in an active samocode session. Use when the user asks to analyze PR comments, run /prcomments, investigate review feedback, or triage pull request comments.
Run OpenAI Codex CLI as a subagent for second opinions, code reviews, and questions. Use when you want a different AI model's perspective.
Run Anthropic Claude CLI as a subagent for second opinions, code reviews, and questions. Use from a Codex (or other) session when you want Claude's perspective.
Create GitHub PR review comments from review findings. Use after running a code review to post findings as line-bound comments.
Execute implementation tasks with different approaches (single, dual-agent, plan-based).
Create implementation plans with phase management.
| name | task-definition |
| description | Interactive task definition with Q&A and documentation. |
Defines tasks through interactive Q&A, documenting requirements and decisions.
Session path: [SESSION_PATH from working memory] Task: $ARGUMENTS
Analyze the task:
Interactive clarification:
[SESSION_PATH]/_qa.md exists with answers from previous run_qa.md exists and has answers: read them and continue to step 4[SESSION_PATH]/_qa.md:
# Q&A: [task description]
Status: waiting
## Questions
### Q1: [Clear question]
A) [option]
B) [option]
C) [option]
**Suggestion:** [recommended option] - [justification]
**Answer:** _waiting_
### Q2: [Clear question]
A) [option]
B) [option]
**Suggestion:** [recommended option] - [justification]
**Answer:** _waiting_
- [ ]. Use lettered options (A, B, C) one per line.Q1: [Clear question]
A) [option]
B) [option]
C) [option]
Suggestion: [recommended] - [why]
Document the task (after Q&A complete):
[SESSION_PATH]/[TIMESTAMP_FILE]-task-[task-slug].md# Task: [title]
Date: [TIMESTAMP_LOG]
## Description
[What needs to be accomplished]
## Requirements
[Bullet list]
## Clarifications
### [Topic]
**Q:** [question]
**A:** [answer/decision]
**Rationale:** [why]
## Edge Cases
[Things to watch for]
## Success Criteria
[How we know it's done]
Update session:
[SESSION_PATH]/_overview.md:
- [TIMESTAMP_ITERATION] Task defined: [title] -> [filename].md- [filename].md - Task: [title]_qa.md if it existscd [SESSION_DIR] && git add . && git commit -m "Task: [title]"Suggest next steps: /create-plan, /do, /dop2