@fro.bot/systematic 2.33.1 → 2.33.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/dist/index.js
CHANGED
|
@@ -33,7 +33,7 @@ import { pathToFileURL } from "url";
|
|
|
33
33
|
// src/lib/skill-loader.ts
|
|
34
34
|
import path from "path";
|
|
35
35
|
var SKILL_PREFIX = "systematic:";
|
|
36
|
-
var SKILL_DESCRIPTION_PREFIX = "(Systematic
|
|
36
|
+
var SKILL_DESCRIPTION_PREFIX = "(Systematic) ";
|
|
37
37
|
function formatSkillCommandName(name) {
|
|
38
38
|
if (name.includes(":")) {
|
|
39
39
|
return name;
|
|
@@ -927,7 +927,7 @@ function isSystematicAgentConfig(agent) {
|
|
|
927
927
|
}
|
|
928
928
|
function isSystematicCommandConfig(command) {
|
|
929
929
|
const description = command?.description;
|
|
930
|
-
return typeof description === "string" &&
|
|
930
|
+
return typeof description === "string" && description.startsWith("(Systematic) ");
|
|
931
931
|
}
|
|
932
932
|
function mergeSystematicEntries(existing, emitted, shouldDropExisting) {
|
|
933
933
|
const merged = { ...existing ?? {} };
|
|
@@ -1222,7 +1222,7 @@ function collectSkillsAsCommands(dir, disabledSkills) {
|
|
|
1222
1222
|
return commands;
|
|
1223
1223
|
}
|
|
1224
1224
|
function loadDiscoveredSkillAsCommand(skill) {
|
|
1225
|
-
const description =
|
|
1225
|
+
const description = skill.description || `${skill.name} skill`;
|
|
1226
1226
|
if (skill.frontmatter.disableModelInvocation === true) {
|
|
1227
1227
|
return {
|
|
1228
1228
|
template: wrapSkillTemplate(skill.skillPath, skill.body),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fro.bot/systematic",
|
|
3
|
-
"version": "2.33.
|
|
3
|
+
"version": "2.33.3",
|
|
4
4
|
"description": "Structured engineering workflows for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://fro.bot/systematic",
|
|
@@ -65,19 +65,19 @@
|
|
|
65
65
|
"@opencode-ai/plugin": "^1.1.30"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@biomejs/biome": "2.5.
|
|
69
|
-
"@opencode-ai/plugin": "1.17.
|
|
70
|
-
"@opencode-ai/sdk": "1.17.
|
|
68
|
+
"@biomejs/biome": "2.5.3",
|
|
69
|
+
"@opencode-ai/plugin": "1.17.18",
|
|
70
|
+
"@opencode-ai/sdk": "1.17.18",
|
|
71
71
|
"@semantic-release/exec": "7.1.0",
|
|
72
72
|
"@types/bun": "latest",
|
|
73
73
|
"@types/js-yaml": "4.0.9",
|
|
74
|
-
"@types/node": "24.13.
|
|
74
|
+
"@types/node": "24.13.3",
|
|
75
75
|
"ajv": "8.20.0",
|
|
76
76
|
"ajv-formats": "3.0.1",
|
|
77
77
|
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
78
78
|
"markdownlint-cli": "0.48.0",
|
|
79
79
|
"rimraf": "6.1.3",
|
|
80
|
-
"semantic-release": "25.0.
|
|
80
|
+
"semantic-release": "25.0.6",
|
|
81
81
|
"semantic-release-export-data": "1.2.0",
|
|
82
82
|
"typescript": "6.0.3"
|
|
83
83
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
google-genai>=1.0.0
|
|
2
|
-
Pillow>=12.
|
|
2
|
+
Pillow>=12.3.0
|