@fro.bot/systematic 2.33.1 → 2.33.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
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 - Skill) ";
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" && (description.startsWith("(Systematic) ") || description.startsWith("(Systematic - Skill) "));
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 = formatSkillDescription(skill.description, skill.name);
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.1",
3
+ "version": "2.33.2",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",