@comfanion/workflow 3.7.0 → 3.7.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/bin/cli.js +1 -1
- package/package.json +1 -1
- package/src/build-info.json +1 -1
- package/src/opencode/agents/analyst.md +1 -1
- package/src/opencode/agents/architect.md +1 -1
- package/src/opencode/agents/dev.md +1 -1
- package/src/opencode/agents/pm.md +1 -1
- package/src/opencode/config.yaml +1 -1
- package/src/opencode/opencode.json +2 -1
package/bin/cli.js
CHANGED
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -14,7 +14,7 @@ tools:
|
|
|
14
14
|
|
|
15
15
|
<activation critical="MANDATORY">
|
|
16
16
|
<step n="1">Load persona from this agent file</step>
|
|
17
|
-
<step n="2">IMMEDIATE: Load
|
|
17
|
+
<step n="2">IMMEDIATE: Load .opencode/config.yaml - store {user_name}, {communication_language}</step>
|
|
18
18
|
<step n="3">Greet user by {user_name}, communicate in {communication_language}</step>
|
|
19
19
|
<step n="4">Display numbered menu, WAIT for user input</step>
|
|
20
20
|
<step n="5">On input: Number → execute | Text → fuzzy match | No match → "Not recognized"</step>
|
|
@@ -24,7 +24,7 @@ permission:
|
|
|
24
24
|
|
|
25
25
|
<activation critical="MANDATORY">
|
|
26
26
|
<step n="1">Load persona from this agent file</step>
|
|
27
|
-
<step n="2">IMMEDIATE: Load
|
|
27
|
+
<step n="2">IMMEDIATE: Load .opencode/config.yaml - store {user_name}, {communication_language}</step>
|
|
28
28
|
<step n="3">Greet user by {user_name}, communicate in {communication_language}</step>
|
|
29
29
|
<step n="4">Display numbered menu, WAIT for user input</step>
|
|
30
30
|
<step n="5">On input: Number → execute | Text → fuzzy match | No match → "Not recognized"</step>
|
|
@@ -17,7 +17,7 @@ permission:
|
|
|
17
17
|
|
|
18
18
|
<activation critical="MANDATORY">
|
|
19
19
|
<step n="1">Load persona from this agent file</step>
|
|
20
|
-
<step n="2">IMMEDIATE: Load
|
|
20
|
+
<step n="2">IMMEDIATE: Load .opencode/config.yaml - store {user_name}, {communication_language}</step>
|
|
21
21
|
<step n="3">Greet user by {user_name}, communicate in {communication_language}</step>
|
|
22
22
|
<step n="4">READ the entire story file BEFORE any implementation</step>
|
|
23
23
|
<step n="5">Load project-context.md and CLAUDE.md if available</step>
|
|
@@ -23,7 +23,7 @@ permission:
|
|
|
23
23
|
|
|
24
24
|
<activation critical="MANDATORY">
|
|
25
25
|
<step n="1">Load persona from this agent file</step>
|
|
26
|
-
<step n="2">IMMEDIATE: Load
|
|
26
|
+
<step n="2">IMMEDIATE: Load .opencode/config.yaml - store {user_name}, {communication_language}</step>
|
|
27
27
|
<step n="3">Greet user by {user_name}, communicate in {communication_language}</step>
|
|
28
28
|
<step n="4">Display numbered menu, WAIT for user input</step>
|
|
29
29
|
<step n="5">On input: Number → execute | Text → fuzzy match | No match → "Not recognized"</step>
|
package/src/opencode/config.yaml
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# PROJECT CONFIGURATION
|
|
7
7
|
# =============================================================================
|
|
8
8
|
project_name: "ai-wf"
|
|
9
|
-
version: "3.7.
|
|
9
|
+
version: "3.7.2"
|
|
10
10
|
|
|
11
11
|
# =============================================================================
|
|
12
12
|
# USER CONFIGURATION
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"description": "Default development agent - use @pm, @architect, @analyst, @dev for specialized tasks"
|
|
15
15
|
},
|
|
16
16
|
"plan": {
|
|
17
|
-
"
|
|
17
|
+
"mode": "primary",
|
|
18
|
+
"description": "Planning agent - analyzes requests and delegates to specialized agents: @pm for stories/epics/PRD, @architect for architecture/ADRs, @analyst for requirements, @dev for implementation"
|
|
18
19
|
}
|
|
19
20
|
},
|
|
20
21
|
|