@fro.bot/systematic 1.17.2 → 1.17.3

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": "@fro.bot/systematic",
3
- "version": "1.17.2",
3
+ "version": "1.17.3",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",
@@ -24,6 +24,9 @@ Use the `systematic_skill` tool for Systematic bundled skills. Use the native `s
24
24
  ```dot
25
25
  digraph skill_flow {
26
26
  "User message received" [shape=doublecircle];
27
+ "About to enter Plan mode?" [shape=doublecircle];
28
+ "Already brainstormed?" [shape=diamond];
29
+ "Invoke brainstorming skill" [shape=box];
27
30
  "Might any skill apply?" [shape=diamond];
28
31
  "Invoke `systematic_skill` tool" [shape=box];
29
32
  "Announce: 'Using [skill] to [purpose]'" [shape=box];
@@ -32,6 +35,11 @@ digraph skill_flow {
32
35
  "Follow skill exactly" [shape=box];
33
36
  "Respond (including clarifications)" [shape=doublecircle];
34
37
 
38
+ "About to enter Plan mode?" -> "Already brainstormed?";
39
+ "Already brainstormed?" -> "Invoke brainstorming skill" [label="no"];
40
+ "Already brainstormed?" -> "Might any skill apply?" [label="yes"];
41
+ "Invoke brainstorming skill" -> "Might any skill apply?";
42
+
35
43
  "User message received" -> "Might any skill apply?";
36
44
  "Might any skill apply?" -> "Invoke `systematic_skill` tool" [label="yes, even 1%"];
37
45
  "Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];
@@ -86,9 +94,4 @@ Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.
86
94
 
87
95
  ## Skill Resolution
88
96
 
89
- Skills are resolved in priority order:
90
- 1. **Project skills**: `.opencode/skills/` in current project
91
- 2. **User skills**: `~/.config/opencode/skills/`
92
- 3. **Bundled skills**: Provided by systematic plugin
93
-
94
97
  Systematic bundled skills are listed in the `systematic_skill` tool description. Use the native `skill` tool for skills outside the Systematic plugin.