@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.
Files changed (2) hide show
  1. package/SKILL.md +8 -7
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -1,8 +1,9 @@
1
1
  ---
2
- name: work-instruction
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 work-instruction draft "task description"
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 work-instruction issue WI-20260312-001
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 work-instruction list
128
- npx skill work-instruction list --status=approved
129
- npx skill work-instruction list --status=in-progress
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 work-instruction review WI-20260312-001
149
+ npx crewx skill wi review WI-20260312-001
149
150
  ```
150
151
 
151
152
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/wi",
3
- "version": "0.1.10-rc.2",
3
+ "version": "0.1.10-rc.3",
4
4
  "description": "Work Instruction engine for CrewX - structured task delegation",
5
5
  "type": "commonjs",
6
6
  "main": "dist/cli.js",