speccrew 0.6.42 → 0.6.43

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.
@@ -153,6 +153,16 @@ Before executing the workflow, verify the following inputs:
153
153
  ALL content MUST be generated in the language specified by {{language}} parameter.
154
154
  </rule>
155
155
 
156
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
157
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
158
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
159
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
160
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
161
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
162
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
163
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
164
+ </block>
165
+
156
166
  <!-- ==================== STEP 0: CHECK ANALYSIS STATUS ==================== -->
157
167
  <gateway name="check-analyzed-status" mode="exclusive">
158
168
  <branch condition="{{analyzed}} == true">
@@ -87,6 +87,16 @@ This skill operates in **strict sequential execution mode**:
87
87
  <input name="language" type="string" required="true" description="Target language for content"/>
88
88
  <input name="subpath" type="string" required="false" description="Subpath extracted from sourcePath"/>
89
89
 
90
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
91
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
92
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
93
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
94
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
95
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
96
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
97
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
98
+ </block>
99
+
90
100
  <!-- Step 1: Read API Analysis Document -->
91
101
  <checkpoint name="step-1-read-document">
92
102
  <task action="read" target="{{api_analysis_path}}" output="apiAnalysisContent"/>
@@ -53,6 +53,16 @@ For each platform, generates:
53
53
  <rule level="mandatory">All entryDirs paths must use forward slashes / as path separators (even on Windows)</rule>
54
54
  <rule level="mandatory">Do not include leading or trailing slashes in entryDirs paths</rule>
55
55
 
56
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
57
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
58
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
59
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
60
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
61
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
62
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
63
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
64
+ </block>
65
+
56
66
  <!-- Loop: Process Each Platform -->
57
67
  <loop over="platforms" as="platform">
58
68
 
@@ -113,6 +113,16 @@ Analyze one specific UI feature from source code, extract business functionality
113
113
  ALL content MUST be generated in the language specified by {{language}} parameter.
114
114
  </rule>
115
115
 
116
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
117
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
118
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
119
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
120
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
121
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
122
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
123
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
124
+ </block>
125
+
116
126
  <!-- ==================== STEP 0: CHECK ANALYSIS STATUS ==================== -->
117
127
  <gateway name="check-analyzed-status" mode="exclusive">
118
128
  <branch condition="{{analyzed}} == true">
@@ -62,6 +62,16 @@ This skill automatically adapts to the user's input language. All documentation
62
62
  <input name="status" type="string" required="true" default="success" description="Analysis status from UI analysis"/>
63
63
  <input name="analysisNotes" type="string" required="true" default="" description="Analysis notes from UI analysis"/>
64
64
 
65
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
66
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
67
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
68
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
69
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
70
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
71
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
72
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
73
+ </block>
74
+
65
75
  <!-- Step 1: Read Source File -->
66
76
  <checkpoint name="step-1-read-source">
67
77
  <task action="read" target="{{sourcePath}}" output="sourceContent"/>
@@ -87,6 +87,16 @@ Extract and aggregate **UI design patterns** from bizs pipeline analyzed feature
87
87
  <rule level="mandatory">Copy template MUST execute before filling sections for every pattern document</rule>
88
88
  <rule level="mandatory">All generated pattern documents must be in the specified language</rule>
89
89
 
90
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
91
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
92
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
93
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
94
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
95
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
96
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
97
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
98
+ </block>
99
+
90
100
  <!-- Gateway: Platform Type Check -->
91
101
  <gateway mode="exclusive">
92
102
  <branch condition="platform_type NOT IN ['web', 'mobile', 'desktop']">
@@ -59,6 +59,16 @@ flowchart TD
59
59
  <input name="module_path" type="string" required="true" />
60
60
  <input name="language" type="string" required="true" />
61
61
 
62
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
63
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
64
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
65
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
66
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
67
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
68
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
69
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
70
+ </block>
71
+
62
72
  <!-- Step 1: Read Prerequisites -->
63
73
  <task name="read_template" action="run-skill" skill="Read">
64
74
  <param name="file_path">../speccrew-knowledge-module-summarize/templates/MODULE-OVERVIEW-TEMPLATE.md</param>
@@ -74,6 +74,16 @@ flowchart TD
74
74
  <rule level="note">Incomplete module overviews: Use available data and mark gaps with <!-- DATA INCOMPLETE --></rule>
75
75
  <rule level="note">Same module name from different platforms: Treat as separate modules with platform annotation</rule>
76
76
 
77
+ <!-- ==================== GLOBAL CONTINUOUS EXECUTION RULES ==================== -->
78
+ <block type="rule" id="GLOBAL-R1" level="forbidden" desc="Continuous execution constraints — NEVER violate">
79
+ <field name="text">DO NOT ask user "Should I continue?" or "How would you like to proceed?" during execution</field>
80
+ <field name="text">DO NOT offer options like "Full execution / Partial / Stop" — always execute ALL tasks to completion</field>
81
+ <field name="text">DO NOT suggest "Due to context window limits, let me pause" — complete current task, use checkpoint for resumption</field>
82
+ <field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL items in sequence</field>
83
+ <field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
84
+ <field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
85
+ </block>
86
+
77
87
  <!-- Step 0: Read System Overview Template -->
78
88
  <task name="read_template" action="run-skill" skill="Read">
79
89
  <param name="file_path">../speccrew-knowledge-system-summarize/templates/SYSTEM-OVERVIEW-TEMPLATE.md</param>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speccrew",
3
- "version": "0.6.42",
3
+ "version": "0.6.43",
4
4
  "description": "Spec-Driven Development toolkit for AI-powered IDEs",
5
5
  "author": "charlesmu99",
6
6
  "repository": {