Agent Skills
› NeverSight/learn-skills.dev
› raise
raise
GitHub将已完成的计划转换为依赖感知的beads可追踪问题。在plan后使用,读取切片创建epic及子任务,设置TDD顺序与依赖关系,最后引导至ship阶段。
Trigger Scenarios
用户拥有已完成Plan并需要创建可追踪问题
执行流程中plan步骤完成后
Install
npx skills add NeverSight/learn-skills.dev --skill raise -g -y
SKILL.md
Frontmatter
{
"name": "raise",
"description": "Turns a Plan into dependency-aware beads issues. Use after 'plan' and before 'ship'. Use when the user has a completed Plan and wants to create trackable issues."
}
Follow these steps in order, one at a time.
Input
- Ask for the completed
Plan. - After receiving the
Plan, read the cheat sheet to understand how beads works. - Read the rules below for how we will convert the
Planinto beads issues.
Rules
- Convert each slice from 'Section 4: Slice Breakdown' into an epic.
br create "<Slice Name>" --type epic --priority <P> --labels "<context labels>"- Create child issues under each epic using
--parent <epic-id>. - Each child issue must represent one smallest executable observable behavior that can be implemented and proved through the supported entry points.
- Write each child issue description using the issue template.
- Order child issues so the simplest happy-path behaviour comes first.
- Child issues must be suitable for TDD red-green-refactor execution.
- Add blocking dependencies with:
br dep add <blocked-id> <blocking-id> - Use 'Section 5: Delivery Sequence Summary' to add dependencies between epics in execution order.
- Use labels to encode bounded context and issue category.
Output
- Turn the
Planinto beads issues starting with:
cd my-project
br init
- After turning the entire plan into beads issues tell the user to proceed to the 'ship' skill.
Version History
- e0220ca Current 2026-07-05 21:38


