بنقرة واحدة
itx-plan-build
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-build |
| description | Create high-level implementation plan with product output and technical details |
| argument-hint | <issue-number> |
name: itx:plan-build
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
Decide on Subtasks:
If Subtasks Needed: Create subtask issues and link as sub-issues
# 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
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-build Timestamp: Model:
<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>