원클릭으로
itx-plan-create
Create high-level implementation plan with product output and technical details
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create high-level implementation plan with product output and technical details
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Cut a new clawrium release — bump version, sync docs, tag, trigger PyPI publish
Record a CLI demo (GIF or MP4) using VHS, with storyboard support for long-form / YouTube demos
Watch ric03uec/clawrium release tags; draft a short blog post per user-visible feature as a PR against blog/.
Detect user-visible changes from the last 24h of commits on main and propose doc and scenario updates as PRs.
Execute the plan for an issue (parent or subtask)
Know the clawctl CLI and manage your Clawrium fleet (hosts, agents, providers, channels, integrations, skills, secrets)
SOC 직업 분류 기준
| name | itx:plan-create |
| description | Create high-level implementation plan with product output and technical details |
| argument-hint | <issue-number> |
name: itx:plan-create
Create a high-level implementation plan for a GitHub issue with product output and technical details.
Fetch Issue: Get full issue details
gh issue view <number> --json number,title,body,labels,comments
Explore Codebase: Understand the scope
Create Plan: Structure the implementation approach
Save Plan to File:
mkdir -p .itx/<number>
# Write plan to .itx/<number>/00_PLAN.md
Decide on Subtasks:
If Subtasks Needed: Detect repository info and create subtask issues with sub-issue links
# Extract repository info
REMOTE_URL=$(git config --get remote.origin.url)
OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's/.*[:/]([^/]+\/[^/]+)(\.git)?$/\1/')
OWNER=$(echo "$OWNER_REPO" | cut -d'/' -f1)
REPO=$(echo "$OWNER_REPO" | cut -d'/' -f2)
# Create subtask
CHILD_URL=$(gh issue create \
--title "[Parent #<parent>] <subtask description>" \
--label "ready" \
--body "<subtask details>")
CHILD_NUM=$(basename $CHILD_URL)
# Link as sub-issue using GraphQL with dynamic repo
gh api graphql -f query='
mutation($parentId: ID!, $childId: ID!) {
addSubIssue(input: {issueId: $parentId, subIssueId: $childId}) {
issue { number }
subIssue { number }
}
}' \
-f parentId=$(gh api graphql -f query='query($owner: String!, $repo: String!, $issue: Int!) { repository(owner: $owner, name: $repo) { issue(number: $issue) { id } } }' -f owner="$OWNER" -f repo="$REPO" -F issue=$PARENT_NUM | jq -r '.data.repository.issue.id') \
-f childId=$(gh api graphql -f query='query($owner: String!, $repo: String!, $issue: Int!) { repository(owner: $owner, name: $repo) { issue(number: $issue) { id } } }' -f owner="$OWNER" -f repo="$REPO" -F issue=$CHILD_NUM | jq -r '.data.repository.issue.id')
Post Plan: Add plan as comment on parent issue
## Implementation Plan
### Overview
<brief description of approach>
### Files to Modify
- `path/to/file.py` - <what changes>
### Steps
1. <step>
2. <step>
### Test Strategy
- <how to verify>
### Subtasks
- #<subtask1> - <description>
- #<subtask2> - <description>
(or "None - single task execution")
---
<details>
<summary>Prompt Log</summary>
**Stage**: planning
**Skill**: /itx:plan-create
**Timestamp**: <ISO timestamp>
**Model**: <model>
```prompt
<original user prompt that triggered planning>
```
Update Labels:
gh issue edit <number> --remove-label "planning" --add-label "planned"
Return: Plan summary and any subtask issue numbers
[Parent #N] <action verb> <target>.itx/<N>/00_PLAN.md for referenceREQUIRED: Append prompt log to .itx/<N>/00_PLAN.md.
See AGENTS.md for format specification.