@crewx/wi 0.1.10-rc.2 → 0.1.10-rc.3
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/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
|