@fro.bot/systematic 2.19.0 → 2.20.0
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": "2.
|
|
3
|
+
"version": "2.20.0",
|
|
4
4
|
"description": "Structured engineering workflows for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://fro.bot/systematic",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@biomejs/biome": "2.4.15",
|
|
68
|
-
"@opencode-ai/plugin": "1.
|
|
69
|
-
"@opencode-ai/sdk": "1.
|
|
68
|
+
"@opencode-ai/plugin": "1.15.0",
|
|
69
|
+
"@opencode-ai/sdk": "1.15.0",
|
|
70
70
|
"@types/bun": "latest",
|
|
71
71
|
"@types/js-yaml": "4.0.9",
|
|
72
72
|
"@types/node": "24.12.4",
|
|
@@ -3,6 +3,10 @@ name: using-systematic
|
|
|
3
3
|
description: Use when starting any conversation - establishes how to find and use skills, requiring skill tool invocation before ANY response including clarifying questions
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
<SUBAGENT-STOP>
|
|
7
|
+
If you were dispatched as a subagent to execute a specific task, skip this skill.
|
|
8
|
+
</SUBAGENT-STOP>
|
|
9
|
+
|
|
6
10
|
<EXTREMELY-IMPORTANT>
|
|
7
11
|
If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.
|
|
8
12
|
|
|
@@ -11,6 +15,16 @@ IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
|
|
|
11
15
|
This is not negotiable. This is not optional. You cannot rationalize your way out of this.
|
|
12
16
|
</EXTREMELY-IMPORTANT>
|
|
13
17
|
|
|
18
|
+
## Instruction Priority
|
|
19
|
+
|
|
20
|
+
Systematic skills override default system prompt behavior, but **user instructions always take precedence**:
|
|
21
|
+
|
|
22
|
+
1. **User's explicit instructions** (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority
|
|
23
|
+
2. **Systematic skills** — override default system behavior where they conflict
|
|
24
|
+
3. **Default system prompt** — lowest priority
|
|
25
|
+
|
|
26
|
+
If CLAUDE.md, GEMINI.md, or AGENTS.md says "don't use TDD" and a skill says "always use TDD," follow the user's instructions. The user is in control.
|
|
27
|
+
|
|
14
28
|
## How to Access Skills
|
|
15
29
|
|
|
16
30
|
Use the `systematic_skill` tool for Systematic bundled skills. Use the `skill` tool for non-Systematic skills. When you invoke a skill, its content is loaded and presented to you—follow it directly.
|