بنقرة واحدة
plan-to-bd
Convert a plan into a beads epic with detailed issues and subissues
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Convert a plan into a beads epic with detailed issues and subissues
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Fetch origin/main and rebase the current worktree or branch onto the latest origin/main.
Move a sibling worktree's branch into the main checkout, then remove the worktree.
Fix or build the requested change in a git worktree, then open a PR.
Review code changes in the current branch for issues
Investigate a GitHub issue or feature description, determine status, and plan implementation if needed
Refine a beads issue or epic for implementation quality
| name | plan-to-bd |
| description | Convert a plan into a beads epic with detailed issues and subissues |
Turn the current plan or context into a beads epic. Create issues and subissues that best represent the chunks of work to complete.
bd create --title="Epic title" --type=epic --description="Epic description" --priority=2
Use --parent <epic-id> to establish the parent/child relationship:
bd create --title="Child issue" --type=task --parent=<epic-id> --description="Description" --priority=2
Use --silent to output only the issue ID:
EPIC_ID=$(bd create --title="Epic title" --type=epic --silent)
bd create --title="Child task" --type=task --parent=$EPIC_ID --silent
# issue-A depends on issue-B (issue-B must complete first)
bd dep add <issue-A> <issue-B>
# Or: issue-B blocks issue-A (equivalent)
bd dep <issue-B> --blocks <issue-A>
bd epic status # Show completion status of all epics
bd children <epic-id> # List child issues of an epic
--type=epic --silent to capture its ID--parent=<epic-id> for each piece of workbd dep add where ordering matters