一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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)
| 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.