@fro.bot/systematic 1.15.0 → 1.16.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/README.md +29 -3
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Most AI coding assistants respond to requests without structure or methodology.
|
|
|
42
42
|
- **Specialized Agents** — Purpose-built subagents for architecture, security, and performance
|
|
43
43
|
- **Zero Configuration** — Works immediately after installation via config hooks
|
|
44
44
|
- **Extensible** — Add project-specific skills and commands alongside bundled ones
|
|
45
|
-
- **Batteries Included** —
|
|
45
|
+
- **Batteries Included** — 11 skills, 24 agents, and 9 commands ship with the npm package
|
|
46
46
|
- **CLI Tooling** — Inspect, list, and convert assets from the command line
|
|
47
47
|
|
|
48
48
|
## Quick Start
|
|
@@ -67,6 +67,29 @@ That's it. Restart OpenCode and the plugin's skills, agents, and commands are av
|
|
|
67
67
|
> [!NOTE]
|
|
68
68
|
> Systematic uses OpenCode's `config` hook to automatically register all bundled content. No manual file copying required.
|
|
69
69
|
|
|
70
|
+
### Alternative: Install via OCX
|
|
71
|
+
|
|
72
|
+
[OCX](https://github.com/kdcokenny/ocx) provides component-level installation:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
# Add the Systematic registry
|
|
76
|
+
ocx registry add https://fro.bot/systematic --name systematic
|
|
77
|
+
|
|
78
|
+
# Install individual components
|
|
79
|
+
ocx add systematic/brainstorming
|
|
80
|
+
ocx add systematic/agent-architecture-strategist
|
|
81
|
+
|
|
82
|
+
# Or install bundles
|
|
83
|
+
ocx add systematic/skills # All 11 skills
|
|
84
|
+
ocx add systematic/agents # All 24 agents
|
|
85
|
+
ocx add systematic/commands # All 9 commands
|
|
86
|
+
|
|
87
|
+
# Or use a profile
|
|
88
|
+
ocx profile add sys --from systematic/standalone
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
See the [OCX Registry Guide](https://fro.bot/systematic/guides/ocx-registry/) for details.
|
|
92
|
+
|
|
70
93
|
### Verify Installation
|
|
71
94
|
|
|
72
95
|
In any OpenCode conversation, type:
|
|
@@ -88,9 +111,12 @@ Skills are structured workflows that guide the AI through systematic engineering
|
|
|
88
111
|
| `agent-browser` | Browser automation using Vercel's agent-browser CLI |
|
|
89
112
|
| `agent-native-architecture` | Design systems where AI agents are first-class citizens |
|
|
90
113
|
| `compound-docs` | Capture solved problems as categorized documentation |
|
|
91
|
-
| `
|
|
114
|
+
| `create-agent-skills` | Expert guidance for writing and refining skills |
|
|
115
|
+
| `document-review` | Refine brainstorm or plan documents before proceeding to the next workflow step |
|
|
92
116
|
| `file-todos` | File-based todo tracking with status and dependency management |
|
|
117
|
+
| `frontend-design` | Create distinctive, production-grade frontend interfaces with high design quality |
|
|
93
118
|
| `git-worktree` | Manage git worktrees for isolated parallel development |
|
|
119
|
+
| `orchestrating-swarms` | Coordinate multi-agent swarms, parallel reviews, and pipeline workflows |
|
|
94
120
|
|
|
95
121
|
### How Skills Work
|
|
96
122
|
|
|
@@ -369,7 +395,7 @@ systematic/
|
|
|
369
395
|
│ ├── manifest.ts # Upstream sync manifest tracking
|
|
370
396
|
│ ├── validation.ts # Agent config validation + type guards
|
|
371
397
|
│ └── walk-dir.ts # Recursive directory walker
|
|
372
|
-
├── skills/ #
|
|
398
|
+
├── skills/ # 11 bundled skills (SKILL.md files)
|
|
373
399
|
├── agents/ # 24 bundled agents (4 categories)
|
|
374
400
|
├── commands/ # 9 bundled commands (with workflows/ subdir)
|
|
375
401
|
├── docs/ # Starlight documentation site
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fro.bot/systematic",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Structured engineering workflows for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://fro.bot/systematic",
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
"docs:build": "bun run docs:generate && bun run --cwd docs build",
|
|
38
38
|
"docs:preview": "bun run --cwd docs preview",
|
|
39
39
|
"docs:generate": "bun docs/scripts/transform-content.ts",
|
|
40
|
+
"registry:build": "bun scripts/build-registry.ts",
|
|
41
|
+
"registry:validate": "bun scripts/build-registry.ts --validate-only",
|
|
40
42
|
"prepublishOnly": "bun run build"
|
|
41
43
|
},
|
|
42
44
|
"keywords": [
|
|
@@ -46,7 +48,7 @@
|
|
|
46
48
|
"workflow",
|
|
47
49
|
"engineering"
|
|
48
50
|
],
|
|
49
|
-
"author": "Marcus R. Brown",
|
|
51
|
+
"author": "Marcus R. Brown <human@fro.bot>",
|
|
50
52
|
"license": "MIT",
|
|
51
53
|
"repository": {
|
|
52
54
|
"type": "git",
|