gsd-opencode 1.3.32 → 1.3.33
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/command/gsd/add-phase.md
CHANGED
|
@@ -25,7 +25,7 @@ Purpose: Add planned work discovered during execution that belongs at the end of
|
|
|
25
25
|
|
|
26
26
|
<step name="parse_arguments">
|
|
27
27
|
Parse the command arguments:
|
|
28
|
-
- All arguments become the phase description
|
|
28
|
+
- All arguments ($ARGUMENTS) become the phase description
|
|
29
29
|
- Example: `/gsd:add-phase Add authentication` → description = "Add authentication"
|
|
30
30
|
- Example: `/gsd:add-phase Fix critical performance issues` → description = "Fix critical performance issues"
|
|
31
31
|
|
|
@@ -25,8 +25,8 @@ Purpose: Handle urgent work discovered during execution without renumbering enti
|
|
|
25
25
|
|
|
26
26
|
<step name="parse_arguments">
|
|
27
27
|
Parse the command arguments:
|
|
28
|
-
- First argument: integer phase number to insert after
|
|
29
|
-
- Remaining arguments: phase description
|
|
28
|
+
- First argument ($1) : integer phase number to insert after
|
|
29
|
+
- Remaining arguments ($2 $3 $4 $5 $6 $7 $8 $9 $10 $11): phase description
|
|
30
30
|
|
|
31
31
|
Example: `/gsd:insert-phase 7 Fix critical auth bug`
|
|
32
32
|
→ after = 7
|
|
@@ -25,7 +25,7 @@ Output: Phase deleted, all subsequent phases renumbered, git commit as historica
|
|
|
25
25
|
|
|
26
26
|
<step name="parse_arguments">
|
|
27
27
|
Parse command arguments:
|
|
28
|
-
- Argument is phase number to remove (integer or decimal)
|
|
28
|
+
- Argument ($ARGUMENTS) is phase number to remove (integer or decimal)
|
|
29
29
|
- Example: `/gsd:remove-phase 17` → phase = 17
|
|
30
30
|
- Example: `/gsd:remove-phase 16.1` → phase = 16.1
|
|
31
31
|
|