@fro.bot/systematic 2.14.0 → 2.14.1

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/README.md CHANGED
@@ -402,7 +402,7 @@ The plugin exposes one tool to OpenCode:
402
402
  |------|-------------|
403
403
  | `systematic_skill` | Load Systematic bundled skills by name. Lists available skills in its description and returns formatted skill content when invoked. |
404
404
 
405
- For non-Systematic skills (project or user-level), use OpenCode's native `skill` tool.
405
+ For non-Systematic skills (project or user-level), use OpenCode's `skill` tool.
406
406
 
407
407
  ## How It Works
408
408
 
package/dist/index.js CHANGED
@@ -188,22 +188,15 @@ var applyBootstrapContent = (output, content) => {
188
188
 
189
189
  ${content}` : content;
190
190
  };
191
- function getToolMappingTemplate() {
192
- return `**Tool Mapping for OpenCode:**
193
- When skills reference tools you don't have, substitute OpenCode equivalents:
194
- - \`TodoWrite\` \u2192 \`todowrite\`
195
- - \`Task\` tool with subagents \u2192 Use OpenCode's subagent system (@mention)
196
- - \`Skill\` tool \u2192 OpenCode's native \`skill\` tool
197
- - \`SystematicSkill\` tool \u2192 \`systematic_skill\` (Systematic plugin skills)
198
- - \`Read\`, \`Write\`, \`Edit\`, \`Bash\` \u2192 Your native tools
199
-
200
- **Skills naming:**
201
- - Bundled skills use the \`systematic:\` prefix (e.g., \`systematic:brainstorming\`)
191
+ function getSkillUsageTemplate() {
192
+ return `**Skills naming:**
193
+ - Systematic bundled skills use the \`systematic:\` prefix (e.g., \`systematic:setup\`)
194
+ - Workflow skills with their own namespace keep it (e.g., \`ce:brainstorm\`)
202
195
  - Skills can also be invoked without prefix if unambiguous
203
196
 
204
197
  **Skills usage:**
205
198
  - Use \`systematic_skill\` to load Systematic bundled skills
206
- - Use the native \`skill\` tool for non-Systematic skills
199
+ - Use the \`skill\` tool for non-Systematic skills
207
200
 
208
201
  **Skills location:**
209
202
  Bundled skills ship with the Systematic plugin and are discoverable via \`systematic_skill\`.`;
@@ -224,7 +217,7 @@ function getBootstrapContent(config, deps) {
224
217
  const fullContent = fs.readFileSync(usingSystematicPath, "utf8");
225
218
  const { body } = parseFrontmatter(fullContent);
226
219
  const content = body.trim();
227
- const toolMapping = getToolMappingTemplate();
220
+ const skillUsage = getSkillUsageTemplate();
228
221
  const catalog = renderCatalogVerbose({
229
222
  bundledSkillsDir,
230
223
  disabledSkills: config.disabled_skills
@@ -233,13 +226,13 @@ function getBootstrapContent(config, deps) {
233
226
 
234
227
  ${catalog}` : "";
235
228
  return `<SYSTEMATIC_WORKFLOWS>
236
- You have access to structured engineering workflows via the systematic plugin.
229
+ You have access to structured engineering workflows via the Systematic plugin.
237
230
 
238
231
  **IMPORTANT: The using-systematic skill content is included below. It is ALREADY LOADED - you are currently following it. Do NOT use the systematic_skill tool to load "using-systematic" again - that would be redundant.**
239
232
 
240
233
  ${content}
241
234
 
242
- ${toolMapping}${catalogSection}
235
+ ${skillUsage}${catalogSection}
243
236
  </SYSTEMATIC_WORKFLOWS>`;
244
237
  }
245
238
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fro.bot/systematic",
3
- "version": "2.14.0",
3
+ "version": "2.14.1",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",
@@ -64,8 +64,8 @@
64
64
  },
65
65
  "devDependencies": {
66
66
  "@biomejs/biome": "2.4.15",
67
- "@opencode-ai/plugin": "1.14.47",
68
- "@opencode-ai/sdk": "1.14.47",
67
+ "@opencode-ai/plugin": "1.14.48",
68
+ "@opencode-ai/sdk": "1.14.48",
69
69
  "@types/bun": "latest",
70
70
  "@types/js-yaml": "4.0.9",
71
71
  "@types/node": "24.12.3",
@@ -13,7 +13,7 @@ This is not negotiable. This is not optional. You cannot rationalize your way ou
13
13
 
14
14
  ## How to Access Skills
15
15
 
16
- Use the `systematic_skill` tool for Systematic bundled skills. Use the native `skill` tool for non-Systematic skills. When you invoke a skill, its content is loaded and presented to you—follow it directly.
16
+ 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.
17
17
 
18
18
  # Using Skills
19
19
 
@@ -94,4 +94,4 @@ Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.
94
94
 
95
95
  ## Skill Resolution
96
96
 
97
- Systematic bundled skills are listed in the `systematic_skill` tool description. Use the native `skill` tool for skills outside the Systematic plugin.
97
+ Systematic bundled skills are listed in the `systematic_skill` tool description. Use the `skill` tool for skills outside the Systematic plugin.