@rallycry/conveyor-skills 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -29,8 +29,9 @@ patterns/design choices, **5 SP** only for hard work. Split anything larger.
|
|
|
29
29
|
## Packs (parent + child tasks)
|
|
30
30
|
|
|
31
31
|
A **pack** is Conveyor's bundle shape: a parent card with child cards.
|
|
32
|
-
`create_subtask(parentTaskId, ...)`
|
|
33
|
-
|
|
32
|
+
`create_subtask(parentTaskId, ...)` creates a NEW child; to move an EXISTING
|
|
33
|
+
card under a parent (or out of one) use `set_task_parent`. `create_task` /
|
|
34
|
+
`update_task` have no parent field. Each child is a full card
|
|
34
35
|
(own chat, plan, story points). Split into a pack only when the work is
|
|
35
36
|
genuinely multiple independently buildable pieces (8-SP-tier); otherwise keep
|
|
36
37
|
one card.
|
|
@@ -56,7 +56,9 @@ and let Conveyor's own automation do the linking.
|
|
|
56
56
|
`conveyor-plan` skill.
|
|
57
57
|
- **One card per deliverable/PR** (mirror packs below are the documented
|
|
58
58
|
exception). Multi-PR work becomes a pack: children via
|
|
59
|
-
`mcp__conveyor__create_subtask` (
|
|
59
|
+
`mcp__conveyor__create_subtask` (new children) or
|
|
60
|
+
`mcp__conveyor__set_task_parent` (adopt an existing card into the pack, or
|
|
61
|
+
detach one with `parentTaskId: null`), with
|
|
60
62
|
`mcp__conveyor__add_dependency` edges. Orchestration packs run children as
|
|
61
63
|
their own builds/PRs; mirror packs (children created with
|
|
62
64
|
`followParentStatus: true` on `create_subtask`) document already-done work
|