@crewx/wi 0.1.10-rc.2 → 0.1.10-rc.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/SKILL.md +8 -7
- package/package.json +1 -1
- package/templates/WI-TEMPLATE.md +6 -0
package/SKILL.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: crewx/wi
|
|
3
3
|
description: Work Instruction (WI) skill. Draft, review, and issue structured task assignments to agents.
|
|
4
4
|
metadata:
|
|
5
5
|
version: 0.1.0
|
|
6
|
+
built-in: true
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
# Work Instruction Skill
|
|
@@ -28,7 +29,7 @@ Takes the user's intent and drafts a Work Instruction.
|
|
|
28
29
|
The lead reads the design doc and fills in the details.
|
|
29
30
|
|
|
30
31
|
```bash
|
|
31
|
-
npx skill
|
|
32
|
+
npx crewx skill wi draft "task description"
|
|
32
33
|
```
|
|
33
34
|
|
|
34
35
|
**Lead execution steps:**
|
|
@@ -84,7 +85,7 @@ npx skill work-instruction draft "task description"
|
|
|
84
85
|
Deliver an approved Work Instruction to the assigned agent.
|
|
85
86
|
|
|
86
87
|
```bash
|
|
87
|
-
npx skill
|
|
88
|
+
npx crewx skill wi issue WI-20260312-001
|
|
88
89
|
```
|
|
89
90
|
|
|
90
91
|
**Issue steps:**
|
|
@@ -124,9 +125,9 @@ npx skill work-instruction issue WI-20260312-001
|
|
|
124
125
|
### list — List WIs
|
|
125
126
|
|
|
126
127
|
```bash
|
|
127
|
-
npx skill
|
|
128
|
-
npx skill
|
|
129
|
-
npx skill
|
|
128
|
+
npx crewx skill wi list
|
|
129
|
+
npx crewx skill wi list --status=approved
|
|
130
|
+
npx crewx skill wi list --status=in-progress
|
|
130
131
|
```
|
|
131
132
|
|
|
132
133
|
**Execution:**
|
|
@@ -145,7 +146,7 @@ grep -l "status: approved" docs/wi/WI-*.md 2>/dev/null
|
|
|
145
146
|
Request a review from the `consultant` before issuing.
|
|
146
147
|
|
|
147
148
|
```bash
|
|
148
|
-
npx skill
|
|
149
|
+
npx crewx skill wi review WI-20260312-001
|
|
149
150
|
```
|
|
150
151
|
|
|
151
152
|
```bash
|
package/package.json
CHANGED
package/templates/WI-TEMPLATE.md
CHANGED
|
@@ -133,6 +133,7 @@ npx doc section {design_doc} "{spec_id}"
|
|
|
133
133
|
- [ ] `npx vitest run src/server/` passes (backend work)
|
|
134
134
|
- [ ] `npx vitest run src/ui/` passes (frontend work)
|
|
135
135
|
- [ ] (add feature-specific AC)
|
|
136
|
+
- [ ] (when worktree: true) Changes committed to the worktree branch (report commit hash). A completion report without a commit is invalid.
|
|
136
137
|
|
|
137
138
|
## Completion Report Format
|
|
138
139
|
|
|
@@ -148,6 +149,11 @@ Pass / Fail
|
|
|
148
149
|
### Test result
|
|
149
150
|
N tests passed
|
|
150
151
|
|
|
152
|
+
### Commit
|
|
153
|
+
- hash: <commit hash>
|
|
154
|
+
- branch: <worktree branch>
|
|
155
|
+
(empty = completion report invalid — worktree tasks only)
|
|
156
|
+
|
|
151
157
|
### Remaining items
|
|
152
158
|
None / (list if any)
|
|
153
159
|
```
|