@fro.bot/systematic 3.0.1 → 3.0.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.
- package/README.md +10 -2
- package/dist/index.js +3 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ You want AI that follows your process, not just your prompts. You want repeatabl
|
|
|
29
29
|
|
|
30
30
|
## What You Get
|
|
31
31
|
|
|
32
|
-
Systematic is an [OpenCode](https://opencode.ai/) plugin that ships
|
|
32
|
+
Systematic is an [OpenCode](https://opencode.ai/) plugin — and, from v3, a [Pi coding agent](https://github.com/earendil-works/pi-coding-agent) extension in the same package — that ships 31 bundled skills covering brainstorming, planning, implementation, review, and knowledge capture. It includes 37 specialized agents for architecture, security, performance, design, and code review. Installation is zero-configuration — the plugin registers everything via OpenCode's config hooks and works immediately on restart. OCX registry support is available for component-level installs when you only want specific pieces.
|
|
33
33
|
|
|
34
34
|
## Quick Install
|
|
35
35
|
|
|
@@ -41,13 +41,21 @@ Systematic is an [OpenCode](https://opencode.ai/) plugin that ships 40+ bundled
|
|
|
41
41
|
|
|
42
42
|
Add that to `~/.config/opencode/opencode.json` and restart OpenCode.
|
|
43
43
|
|
|
44
|
+
**Pi coding agent** — same package, second harness (bundled skills, `systematic_skill`, persona delegation via `systematic_delegate`):
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npx @fro.bot/systematic setup --harness pi
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
See the [Pi harness guide](https://fro.bot/systematic/guides/pi-harness/) for what carries over and where parity honestly ends.
|
|
51
|
+
|
|
44
52
|
**`npx skills`** — portable skill content for any AI harness (Claude Code, Cursor, Copilot, …):
|
|
45
53
|
|
|
46
54
|
```bash
|
|
47
55
|
npx skills add marcusrbrown/systematic
|
|
48
56
|
```
|
|
49
57
|
|
|
50
|
-
Use the plugin if you're on OpenCode and want the complete experience
|
|
58
|
+
Use the plugin if you're on OpenCode and want the complete experience, the Pi setup command if you're on Pi, or `npx skills` if you want the skill Markdown files dropped into whatever harness you're running.
|
|
51
59
|
|
|
52
60
|
## First Workflow
|
|
53
61
|
|
package/dist/index.js
CHANGED
|
@@ -1283,9 +1283,6 @@ function normalizePath(path8) {
|
|
|
1283
1283
|
return path8.replaceAll("\\", "/").replace(/\/+$/u, "");
|
|
1284
1284
|
}
|
|
1285
1285
|
|
|
1286
|
-
// src/lib/skill-tool.ts
|
|
1287
|
-
import { tool } from "@opencode-ai/plugin/tool";
|
|
1288
|
-
|
|
1289
1286
|
// src/lib/skill-resolver.ts
|
|
1290
1287
|
import fs7 from "fs";
|
|
1291
1288
|
import path8 from "path";
|
|
@@ -1384,7 +1381,7 @@ function createSkillTool(options) {
|
|
|
1384
1381
|
const buildParameterHint = () => buildSkillToolParameterHint({ bundledSkillsDir, disabledSkills });
|
|
1385
1382
|
let cachedDescription = null;
|
|
1386
1383
|
let cachedParameterHint = null;
|
|
1387
|
-
return
|
|
1384
|
+
return {
|
|
1388
1385
|
get description() {
|
|
1389
1386
|
if (cachedDescription == null) {
|
|
1390
1387
|
cachedDescription = buildDescription();
|
|
@@ -1392,7 +1389,7 @@ function createSkillTool(options) {
|
|
|
1392
1389
|
return cachedDescription;
|
|
1393
1390
|
},
|
|
1394
1391
|
args: {
|
|
1395
|
-
name:
|
|
1392
|
+
name: exports_external.string().describe((() => {
|
|
1396
1393
|
if (cachedParameterHint == null) {
|
|
1397
1394
|
cachedParameterHint = buildParameterHint();
|
|
1398
1395
|
}
|
|
@@ -1418,7 +1415,7 @@ function createSkillTool(options) {
|
|
|
1418
1415
|
});
|
|
1419
1416
|
return output;
|
|
1420
1417
|
}
|
|
1421
|
-
}
|
|
1418
|
+
};
|
|
1422
1419
|
}
|
|
1423
1420
|
|
|
1424
1421
|
// src/index.ts
|