@comfanion/workflow 4.38.1-dev.1 → 4.38.1-dev.2

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": "@comfanion/workflow",
3
- "version": "4.38.1-dev.1",
3
+ "version": "4.38.1-dev.2",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.38.1-dev.1",
3
- "buildDate": "2026-01-27T01:03:19.105Z",
2
+ "version": "4.38.1-dev.2",
3
+ "buildDate": "2026-01-27T01:09:08.937Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -9,22 +9,34 @@ metadata:
9
9
 
10
10
  # Dev Epic Skill
11
11
 
12
+ ## CRITICAL: Context Rules
13
+
14
+ **READ ONLY (max ~70KB):**
15
+ - `CLAUDE.md`
16
+ - `docs/coding-standards/README.md`
17
+ - `docs/coding-standards/patterns.md`
18
+ - Epic file (ONE)
19
+ - Current story file (ONE at a time)
20
+
21
+ **❌ DO NOT READ — WASTES CONTEXT:**
22
+ - ❌ `docs/prd.md` — epic/story already has context
23
+ - ❌ `docs/architecture.md` — too large, coding-standards has patterns
24
+ - ❌ All stories at once — read ONE, execute, then next
25
+
26
+ ---
27
+
12
28
  <workflow name="dev-epic">
13
29
 
14
30
  <phase name="1-context" title="Load Minimal Context">
31
+ <critical>DO NOT read prd.md, architecture.md, or all stories!</critical>
15
32
  <read>
16
33
  <file>CLAUDE.md</file>
17
34
  <file>docs/coding-standards/README.md</file>
18
35
  <file>docs/coding-standards/patterns.md</file>
19
36
  <file>{epic-file}</file>
20
- <file>{current-story-file}</file>
37
+ <file>{current-story-file} — ONE only!</file>
21
38
  </read>
22
- <skip reason="too large, epic/story has context">
23
- <file>docs/prd.md</file>
24
- <file>docs/architecture.md</file>
25
- <file>all stories at once</file>
26
- </skip>
27
- <goal>~70KB per story</goal>
39
+ <goal>~70KB per story, NOT 200KB+</goal>
28
40
  </phase>
29
41
 
30
42
  <phase name="2-init" title="Initialize Epic">
@@ -9,23 +9,37 @@ metadata:
9
9
 
10
10
  # Dev Sprint Skill
11
11
 
12
+ ## CRITICAL: Context Rules
13
+
14
+ **READ ONLY (max ~70KB):**
15
+ - `CLAUDE.md`
16
+ - `docs/coding-standards/README.md`
17
+ - `docs/coding-standards/patterns.md`
18
+ - `sprint-status.yaml`
19
+ - Current epic file (ONE)
20
+ - Current story file (ONE at a time)
21
+
22
+ **❌ DO NOT READ — WASTES CONTEXT:**
23
+ - ❌ `docs/prd.md` — epic/story already has context
24
+ - ❌ `docs/architecture.md` — too large, coding-standards has patterns
25
+ - ❌ All epics at once — read ONE, execute, then next
26
+ - ❌ All stories at once — read ONE, execute, then next
27
+
28
+ ---
29
+
12
30
  <workflow name="dev-sprint">
13
31
 
14
32
  <phase name="1-context" title="Load Minimal Context">
33
+ <critical>DO NOT read prd.md, architecture.md, or all epics/stories!</critical>
15
34
  <read>
16
35
  <file>CLAUDE.md</file>
17
36
  <file>docs/coding-standards/README.md</file>
18
37
  <file>docs/coding-standards/patterns.md</file>
19
38
  <file>sprint-status.yaml</file>
20
- <file>{current-epic-file}</file>
21
- <file>{current-story-file}</file>
39
+ <file>{current-epic-file} — ONE only!</file>
40
+ <file>{current-story-file} — ONE only!</file>
22
41
  </read>
23
- <skip reason="too large, epic/story has context">
24
- <file>docs/prd.md</file>
25
- <file>docs/architecture.md</file>
26
- <file>all epics/stories at once</file>
27
- </skip>
28
- <goal>~70KB per story</goal>
42
+ <goal>~70KB per story, NOT 200KB+</goal>
29
43
  </phase>
30
44
 
31
45
  <phase name="2-init" title="Initialize Sprint">
@@ -11,20 +11,31 @@ metadata:
11
11
 
12
12
  # Dev Story Skill
13
13
 
14
+ ## CRITICAL: Context Rules
15
+
16
+ **READ ONLY (max ~70KB):**
17
+ - `CLAUDE.md`
18
+ - `docs/coding-standards/README.md`
19
+ - `docs/coding-standards/patterns.md`
20
+ - Story file
21
+
22
+ **❌ DO NOT READ — WASTES CONTEXT:**
23
+ - ❌ `docs/prd.md` — story already has context
24
+ - ❌ `docs/architecture.md` — too large, coding-standards has patterns
25
+
26
+ ---
27
+
14
28
  <workflow name="dev-story">
15
29
 
16
30
  <phase name="1-context" title="Load Minimal Context">
31
+ <critical>DO NOT read prd.md or architecture.md!</critical>
17
32
  <read>
18
33
  <file>CLAUDE.md</file>
19
34
  <file>docs/coding-standards/README.md</file>
20
35
  <file>docs/coding-standards/patterns.md</file>
21
36
  <file>{story-file}</file>
22
37
  </read>
23
- <skip reason="too large, story has context">
24
- <file>docs/prd.md</file>
25
- <file>docs/architecture.md</file>
26
- </skip>
27
- <goal>~70KB context, not 200KB+</goal>
38
+ <goal>~70KB context, NOT 200KB+</goal>
28
39
  </phase>
29
40
 
30
41
  <phase name="2-transform" title="Transform Story Task → Executable Instruction">