specweave 1.0.89 → 1.0.90

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specweave",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "Spec-driven development framework for Claude Code. AI-native workflow with living documentation, intelligent agents, and multilingual support (9 languages). Enterprise-grade traceability with permanent specs and temporary increments.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,10 +8,12 @@ usage: /sw:jobs [--all] [--id <job-id>]
8
8
 
9
9
  **NOTE**: This command is normally intercepted by the UserPromptSubmit hook for instant execution (<100ms). If the hook output isn't displayed, execute the CLI fallback below.
10
10
 
11
- When this command is invoked, immediately execute via CLI:
11
+ When this command is invoked, extract any arguments from the user's prompt and execute:
12
12
 
13
13
  ```bash
14
- specweave jobs $ARGUMENTS
14
+ specweave jobs
15
15
  ```
16
16
 
17
+ If the user provided arguments (e.g., `/sw:jobs --all`), pass them to the command.
18
+
17
19
  **CRITICAL**: Execute the command directly with NO commentary before or after. Show the output to the user.
@@ -8,10 +8,12 @@ usage: /sw:progress [incrementId]
8
8
 
9
9
  **NOTE**: This command is normally intercepted by the UserPromptSubmit hook for instant execution (<100ms). If the hook output isn't displayed, execute the CLI fallback below.
10
10
 
11
- When this command is invoked, immediately execute via CLI:
11
+ When this command is invoked, extract any arguments from the user's prompt and execute:
12
12
 
13
13
  ```bash
14
- specweave progress $ARGUMENTS
14
+ specweave progress
15
15
  ```
16
16
 
17
+ If the user provided an increment ID (e.g., `/sw:progress 0042`), pass it to the command.
18
+
17
19
  **CRITICAL**: Execute the command directly with NO commentary before or after. Show the output to the user.
@@ -8,10 +8,12 @@ usage: /sw:status [--active|--backlog|--paused|--completed|--abandoned|--stale]
8
8
 
9
9
  **NOTE**: This command is normally intercepted by the UserPromptSubmit hook for instant execution (<100ms). If the hook output isn't displayed, execute the CLI fallback below.
10
10
 
11
- When this command is invoked, immediately execute via CLI:
11
+ When this command is invoked, extract any arguments from the user's prompt and execute:
12
12
 
13
13
  ```bash
14
- specweave status $ARGUMENTS
14
+ specweave status
15
15
  ```
16
16
 
17
+ If the user provided flags (e.g., `/sw:status --active`), pass them to the command.
18
+
17
19
  **CRITICAL**: Execute the command directly with NO commentary before or after. Show the output to the user.