@fro.bot/systematic 1.14.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.
Files changed (32) hide show
  1. package/README.md +29 -3
  2. package/package.json +4 -2
  3. package/skills/agent-browser/SKILL.md +1 -0
  4. package/skills/agent-native-architecture/SKILL.md +4 -4
  5. package/skills/agent-native-architecture/references/files-universal-interface.md +1 -1
  6. package/skills/agent-native-architecture/references/product-implications.md +1 -1
  7. package/skills/brainstorming/SKILL.md +1 -0
  8. package/skills/compound-docs/SKILL.md +14 -13
  9. package/skills/compound-docs/assets/critical-pattern-template.md +1 -1
  10. package/skills/compound-docs/assets/resolution-template.md +3 -3
  11. package/skills/compound-docs/references/yaml-schema.md +2 -2
  12. package/skills/create-agent-skills/SKILL.md +169 -192
  13. package/skills/create-agent-skills/references/api-security.md +24 -24
  14. package/skills/create-agent-skills/references/executable-code.md +1 -1
  15. package/skills/create-agent-skills/references/official-spec.md +74 -125
  16. package/skills/create-agent-skills/references/skill-structure.md +109 -329
  17. package/skills/create-agent-skills/workflows/add-reference.md +3 -3
  18. package/skills/create-agent-skills/workflows/add-script.md +2 -2
  19. package/skills/create-agent-skills/workflows/add-template.md +1 -1
  20. package/skills/create-agent-skills/workflows/add-workflow.md +5 -5
  21. package/skills/create-agent-skills/workflows/audit-skill.md +6 -6
  22. package/skills/create-agent-skills/workflows/create-domain-expertise-skill.md +8 -8
  23. package/skills/create-agent-skills/workflows/create-new-skill.md +8 -8
  24. package/skills/create-agent-skills/workflows/upgrade-to-router.md +5 -5
  25. package/skills/create-agent-skills/workflows/verify-skill.md +4 -4
  26. package/skills/document-review/SKILL.md +88 -0
  27. package/skills/file-todos/SKILL.md +3 -2
  28. package/skills/file-todos/assets/todo-template.md +1 -1
  29. package/skills/frontend-design/SKILL.md +43 -0
  30. package/skills/git-worktree/SKILL.md +23 -22
  31. package/skills/git-worktree/scripts/worktree-manager.sh +2 -10
  32. package/skills/orchestrating-swarms/SKILL.md +1718 -0
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** — 8 skills, 24 agents, and 9 commands ship with the npm package
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
- | `creating-agent-skills` | Expert guidance for writing and refining skills |
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/ # 8 bundled skills (SKILL.md files)
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.14.0",
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",
@@ -221,3 +221,4 @@ Use Playwright MCP when:
221
221
  - You need deep MCP tool integration
222
222
  - You want tool-based responses
223
223
  - You're building complex automation
224
+
@@ -6,13 +6,13 @@ description: Build applications where agents are first-class citizens. Use this
6
6
  <why_now>
7
7
  ## Why Now
8
8
 
9
- Software agents work reliably now. Claude Code demonstrated that an LLM with access to bash and file tools, operating in a loop until an objective is achieved, can accomplish complex multi-step tasks autonomously.
9
+ Software agents work reliably now. Modern coding agents like OpenCode have demonstrated that an LLM with access to bash and file tools, operating in a loop until an objective is achieved, can accomplish complex multi-step tasks autonomously.
10
10
 
11
- The surprising discovery: **a really good coding agent is actually a really good general-purpose agent.** The same architecture that lets Claude Code refactor a codebase can let an agent organize your files, manage your reading list, or automate your workflows.
11
+ The surprising discovery: **a really good coding agent is actually a really good general-purpose agent.** The same architecture that lets an agent refactor a codebase can let it organize your files, manage your reading list, or automate your workflows.
12
12
 
13
- The Claude Code SDK makes this accessible. You can build applications where features aren't code you write—they're outcomes you describe, achieved by an agent with tools, operating in a loop until the outcome is reached.
13
+ Agent SDKs make this accessible. You can build applications where features aren't code you write—they're outcomes you describe, achieved by an agent with tools, operating in a loop until the outcome is reached.
14
14
 
15
- This opens up a new field: software that works the way Claude Code works, applied to categories far beyond coding.
15
+ This opens up a new field: software that works the way modern coding agents work, applied to categories far beyond coding.
16
16
  </why_now>
17
17
 
18
18
  <core_principles>
@@ -5,7 +5,7 @@ Files are the universal interface for agent-native applications. Agents are natu
5
5
  <why_files>
6
6
  ## Why Files
7
7
 
8
- Agents are naturally good at files. Claude Code works because bash + filesystem is the most battle-tested agent interface. When building agent-native apps, lean into this.
8
+ Agents are naturally good at files. OpenCode works because bash + filesystem is the most battle-tested agent interface. When building agent-native apps, lean into this.
9
9
 
10
10
  ### Agents Already Know How
11
11
 
@@ -11,7 +11,7 @@ The best agent-native applications are simple to start but endlessly powerful.
11
11
 
12
12
  Excel is the canonical example: you can use it for a grocery list, or you can build complex financial models. The same tool, radically different depths of use.
13
13
 
14
- Claude Code has this quality: fix a typo, or refactor an entire codebase. The interface is the same—natural language—but the capability scales with the ask.
14
+ OpenCode has this quality: fix a typo, or refactor an entire codebase. The interface is the same—natural language—but the capability scales with the ask.
15
15
 
16
16
  ### The Pattern
17
17
 
@@ -188,3 +188,4 @@ Planning answers **HOW** to build it:
188
188
  - Testing strategy and verification
189
189
 
190
190
  When brainstorm output exists, `/workflows:plan` should detect it and use it as input, skipping its own idea refinement phase.
191
+
@@ -1,11 +1,12 @@
1
1
  ---
2
2
  name: compound-docs
3
3
  description: Capture solved problems as categorized documentation with YAML frontmatter for fast lookup
4
+ disable-model-invocation: true
4
5
  allowed-tools:
5
- - Read # Parse conversation context
6
- - Write # Create resolution docs
7
- - Bash # Create directories
8
- - Grep # Search existing docs
6
+ - Read
7
+ - Write
8
+ - Bash
9
+ - Grep
9
10
  preconditions:
10
11
  - Problem has been solved (not in-progress)
11
12
  - Solution has been verified working
@@ -61,7 +62,7 @@ Extract from conversation history:
61
62
 
62
63
  **Required information:**
63
64
 
64
- - **Module name**: Which CORA module had the problem
65
+ - **Module name**: Which module or component had the problem
65
66
  - **Symptom**: Observable error/behavior (exact error messages)
66
67
  - **Investigation attempts**: What didn't work and why
67
68
  - **Root cause**: Technical explanation of actual problem
@@ -249,7 +250,7 @@ But **NEVER auto-promote**. User decides via decision menu (Option 2).
249
250
 
250
251
  **Template for critical pattern addition:**
251
252
 
252
- When user selects Option 2 (Add to Required Reading), use the template from `assets/critical-pattern-template.md` to structure the pattern entry. Number it sequentially based on existing patterns in `docs/solutions/patterns/cora-critical-patterns.md`.
253
+ When user selects Option 2 (Add to Required Reading), use the template from `assets/critical-pattern-template.md` to structure the pattern entry. Number it sequentially based on existing patterns in `docs/solutions/patterns/critical-patterns.md`.
253
254
  </step>
254
255
 
255
256
  </critical_sequence>
@@ -270,7 +271,7 @@ File created:
270
271
 
271
272
  What's next?
272
273
  1. Continue workflow (recommended)
273
- 2. Add to Required Reading - Promote to critical patterns (cora-critical-patterns.md)
274
+ 2. Add to Required Reading - Promote to critical patterns (critical-patterns.md)
274
275
  3. Link related issues - Connect to similar problems
275
276
  4. Add to existing skill - Add to a learning skill (e.g., hotwire-native)
276
277
  5. Create new skill - Extract into new learning skill
@@ -295,7 +296,7 @@ User selects this when:
295
296
  Action:
296
297
  1. Extract pattern from the documentation
297
298
  2. Format as ❌ WRONG vs ✅ CORRECT with code examples
298
- 3. Add to `docs/solutions/patterns/cora-critical-patterns.md`
299
+ 3. Add to `docs/solutions/patterns/critical-patterns.md`
299
300
  4. Add cross-reference back to this doc
300
301
  5. Confirm: "✓ Added to Required Reading. All subagents will see this pattern before code generation."
301
302
 
@@ -317,7 +318,7 @@ Action:
317
318
  4. Confirm: "✓ Added to [skill-name] skill in [file]"
318
319
 
319
320
  Example: For Hotwire Native Tailwind variants solution:
320
- - Add to `hotwire-native/references/resources.md` under "CORA-Specific Resources"
321
+ - Add to `hotwire-native/references/resources.md` under "Project-Specific Resources"
321
322
  - Add to `hotwire-native/references/examples.md` with link to solution doc
322
323
 
323
324
  **Option 5: Create new skill**
@@ -326,7 +327,7 @@ User selects this when the solution represents the start of a new learning domai
326
327
 
327
328
  Action:
328
329
  1. Prompt: "What should the new skill be called? (e.g., stripe-billing, email-processing)"
329
- 2. Run `python3 .claude/skills/skill-creator/scripts/init_skill.py [skill-name]`
330
+ 2. Run `python3 .opencode/skills/create-agent-skills/scripts/init_skill.py [skill-name]`
330
331
  3. Create initial reference files with this solution as first example
331
332
  4. Confirm: "✓ Created new [skill-name] skill with this solution as first example"
332
333
 
@@ -397,11 +398,11 @@ Documentation is successful when ALL of the following are true:
397
398
  - Present multiple matches
398
399
  - Let user choose: new doc, update existing, or link as duplicate
399
400
 
400
- **Module not in CORA-MODULES.md:**
401
+ **Module not in modules documentation:**
401
402
 
402
403
  - Warn but don't block
403
404
  - Proceed with documentation
404
- - Suggest: "Add [Module] to CORA-MODULES.md if not there"
405
+ - Suggest: "Add [Module] to modules documentation if not there"
405
406
 
406
407
  ---
407
408
 
@@ -488,7 +489,7 @@ File created:
488
489
 
489
490
  What's next?
490
491
  1. Continue workflow (recommended)
491
- 2. Add to Required Reading - Promote to critical patterns (cora-critical-patterns.md)
492
+ 2. Add to Required Reading - Promote to critical patterns (critical-patterns.md)
492
493
  3. Link related issues - Connect to similar problems
493
494
  4. Add to existing skill - Add to a learning skill (e.g., hotwire-native)
494
495
  5. Create new skill - Extract into new learning skill
@@ -1,6 +1,6 @@
1
1
  # Critical Pattern Template
2
2
 
3
- Use this template when adding a pattern to `docs/solutions/patterns/cora-critical-patterns.md`:
3
+ Use this template when adding a pattern to `docs/solutions/patterns/critical-patterns.md`:
4
4
 
5
5
  ---
6
6
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- module: [Module name or "CORA" for system-wide]
2
+ module: [Module name or "System" for system-wide]
3
3
  date: [YYYY-MM-DD]
4
4
  problem_type: [build_error|test_failure|runtime_error|performance_issue|database_issue|security_issue|ui_bug|integration_issue|logic_error]
5
5
  component: [rails_model|rails_controller|rails_view|service_object|background_job|database|frontend_stimulus|hotwire_turbo|email_processing|brief_system|assistant|authentication|payments]
@@ -19,7 +19,7 @@ tags: [keyword1, keyword2, keyword3]
19
19
  [1-2 sentence clear description of the issue and what the user experienced]
20
20
 
21
21
  ## Environment
22
- - Module: [Name or "CORA system"]
22
+ - Module: [Name or "System-wide"]
23
23
  - Rails Version: [e.g., 7.1.2]
24
24
  - Affected Component: [e.g., "Email Processing model", "Brief System service", "Authentication controller"]
25
25
  - Date: [YYYY-MM-DD when this was solved]
@@ -78,7 +78,7 @@ tags: [keyword1, keyword2, keyword3]
78
78
 
79
79
  ## Prevention
80
80
 
81
- [How to avoid this problem in future CORA development:]
81
+ [How to avoid this problem in future development:]
82
82
  - [Specific coding practice, check, or pattern to follow]
83
83
  - [What to watch out for]
84
84
  - [How to catch this early]
@@ -1,10 +1,10 @@
1
1
  # YAML Frontmatter Schema
2
2
 
3
- **See `.claude/skills/codify-docs/schema.yaml` for the complete schema specification.**
3
+ **See `.opencode/skills/compound-docs/schema.yaml` for the complete schema specification.**
4
4
 
5
5
  ## Required Fields
6
6
 
7
- - **module** (string): Module name (e.g., "EmailProcessing") or "CORA" for system-wide issues
7
+ - **module** (string): Module name (e.g., "EmailProcessing") or "System" for system-wide issues
8
8
  - **date** (string): ISO 8601 date (YYYY-MM-DD)
9
9
  - **problem_type** (enum): One of [build_error, test_failure, runtime_error, performance_issue, database_issue, security_issue, ui_bug, integration_issue, logic_error, developer_experience, workflow_issue, best_practice, documentation_gap]
10
10
  - **component** (enum): One of [rails_model, rails_controller, rails_view, service_object, background_job, database, frontend_stimulus, hotwire_turbo, email_processing, brief_system, assistant, authentication, payments, development_workflow, testing_framework, documentation, tooling]