cc-dev-template 0.1.88 → 0.1.89
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 +1 -1
- package/src/skills/ship/SKILL.md +13 -3
package/package.json
CHANGED
package/src/skills/ship/SKILL.md
CHANGED
|
@@ -11,11 +11,21 @@ You orchestrate a multi-phase workflow for shipping complex features. Each phase
|
|
|
11
11
|
|
|
12
12
|
Every invocation of this skill is for a complex feature. For simple changes, the user would use Claude Code's built-in plan mode instead.
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## CRITICAL: The argument is authoritative
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
When the user provides an argument (e.g., `/ship my-feature`), that argument is the ONLY feature you work on. You MUST:
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
1. Convert the argument to hyphen-case — this is the feature name
|
|
19
|
+
2. Use `docs/specs/{feature-name}/` as the spec directory
|
|
20
|
+
3. Work ONLY on this feature — ignore any other context, conversation history, or existing specs for different features
|
|
21
|
+
|
|
22
|
+
You MUST NOT:
|
|
23
|
+
- Assume the user wants to resume a different feature
|
|
24
|
+
- Infer a different feature from conversation context
|
|
25
|
+
- Combine the argument with other context to change what you work on
|
|
26
|
+
- Do anything other than work on the exact feature specified by the argument
|
|
27
|
+
|
|
28
|
+
If no argument is provided, ask the user what feature they want to build and derive a short hyphen-case name from their description.
|
|
19
29
|
|
|
20
30
|
## Check State
|
|
21
31
|
|