@fro.bot/systematic 2.30.0 → 2.31.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.30.0",
3
+ "version": "2.31.0",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",
@@ -71,7 +71,7 @@
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.12.4",
74
+ "@types/node": "24.13.0",
75
75
  "ajv": "8.20.0",
76
76
  "ajv-formats": "3.0.1",
77
77
  "conventional-changelog-conventionalcommits": "9.3.1",
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: ce:compound-refresh
3
3
  description: Refresh stale or drifting learnings and pattern docs in docs/solutions/ by reviewing, updating, consolidating, replacing, or deleting them against the current codebase. Use after refactors, migrations, dependency upgrades, or when a retrieved learning feels outdated or wrong. Also use when reviewing docs/solutions/ for accuracy, when a recently solved problem contradicts an existing learning, when pattern docs no longer reflect current code, or when multiple docs seem to cover the same topic and might benefit from consolidation.
4
+ argument-hint: "[mode:autofix] [optional: category, module, or keyword scope]"
4
5
  disable-model-invocation: true
5
6
  ---
6
7
 
@@ -6,21 +6,21 @@ This reference expands the Systematic-specific rules from `SKILL.md`. The mechan
6
6
 
7
7
  Systematic skill frontmatter mirrors what the runtime loader actually reads. Do not invent fields for documentation structure. If the loader does not consume the field, put the information in the body.
8
8
 
9
- | Field | Required | When To Use | Example |
10
- |---|---:|---|---|
11
- | `name` | Yes | Every skill. Use the unprefixed skill identifier unless another namespace is intentional. | `name: writing-systematic-skills` |
12
- | `description` | Yes | Trigger-oriented discovery text. Third person. Prefer `Use when...`. | `description: Use when fixing bundled skill frontmatter failures...` |
13
- | `argument-hint` | No | The skill accepts meaningful invocation arguments. | `argument-hint: "[path/to/document.md]"` |
14
- | `disable-model-invocation` | No | Dispatcher or routing skills that should not be directly model-invoked. | `disable-model-invocation: true` |
15
- | `allowed-tools` | No | The skill needs an explicit tool allowlist. | `allowed-tools: Bash, Read` |
16
- | `license` | No | Licensing metadata matters for distribution. | `license: MIT` |
17
- | `compatibility` | No | A platform or version caveat is real and useful. | `compatibility: OpenCode` |
18
- | `metadata` | No | String-only metadata map. Keep it boring. | `metadata: { owner: systematic }` |
19
- | `user-invocable` | No | Direct user invocation should be explicitly advertised or suppressed. | `user-invocable: false` |
20
- | `agent` | No | A loader-supported companion agent is required. | `agent: general` |
21
- | `model` | No | A skill-level model choice is justified for *skill execution* (not bundled agents see below). | `model: anthropic/claude-haiku-4-5` |
22
- | `context` | No | Forked execution is required. `fork` derives subtask behavior at runtime. | `context: fork` |
23
- | `subtask` | No | Explicit forked-subtask dispatch marker. | `subtask: true` |
9
+ | Field | Required | When To Use | Enforcement | Example |
10
+ |---|---:|---|---|---|
11
+ | `name` | Yes | Every skill. Use the unprefixed skill identifier unless another namespace is intentional. | Read + enforced (loader rejects missing/null) | `name: writing-systematic-skills` |
12
+ | `description` | Yes | Trigger-oriented discovery text. Third person. Prefer `Use when...`. | Read + enforced (loader rejects missing/null) | `description: Use when fixing bundled skill frontmatter failures...` |
13
+ | `argument-hint` | No | The skill accepts meaningful invocation arguments. | Read + surfaced to callers | `argument-hint: "[path/to/document.md]"` |
14
+ | `disable-model-invocation` | No | Dispatcher or routing skills that should not be directly model-invoked. | Read + enforced (loader acts on it) | `disable-model-invocation: true` |
15
+ | `allowed-tools` | No | The skill needs an explicit tool allowlist. | **Read but not enforced.** `src/lib/skills.ts` parses it into `SkillFrontmatter.allowedTools` and passes it through, but no permission gate in `src/lib` acts on it. OpenCode treats it as metadata, not enforced permissions. Do not rely on this field to restrict tool access. | `allowed-tools: Bash, Read` |
16
+ | `license` | No | Licensing metadata matters for distribution. | Read, passed through as metadata | `license: MIT` |
17
+ | `compatibility` | No | A platform or version caveat is real and useful. | Read, passed through as metadata | `compatibility: OpenCode` |
18
+ | `metadata` | No | String-only metadata map. Keep it boring. | Read, passed through as metadata | `metadata: { owner: systematic }` |
19
+ | `user-invocable` | No | Direct user invocation should be explicitly advertised or suppressed. | Read + surfaced to callers | `user-invocable: false` |
20
+ | `agent` | No | A loader-supported companion agent is required. | Read + enforced (loader acts on it) | `agent: general` |
21
+ | `model` | No | A skill-level model choice is justified for *skill execution* (not bundled agents -- see below). | Read + enforced (loader acts on it; banned in bundled agent markdown) | `model: anthropic/claude-haiku-4-5` |
22
+ | `context` | No | Forked execution is required. `fork` derives subtask behavior at runtime. | Read + enforced (runtime-recognized) | `context: fork` |
23
+ | `subtask` | No | Explicit forked-subtask dispatch marker. | Read + enforced (runtime-recognized) | `subtask: true` |
24
24
 
25
25
  ### Required Fields
26
26