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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-dev-template",
3
- "version": "0.1.88",
3
+ "version": "0.1.89",
4
4
  "description": "Structured AI-assisted development framework for Claude Code",
5
5
  "bin": {
6
6
  "cc-dev-template": "./bin/install.js"
@@ -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
- ## Determine Feature
14
+ ## CRITICAL: The argument is authoritative
15
15
 
16
- If an argument was provided, use it as the feature name (convert to hyphen-case). If no argument, ask the user what feature they want to build and derive a short hyphen-case name from their description.
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
- The spec directory is `docs/specs/{feature-name}/`.
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