@fro.bot/systematic 1.22.4 → 1.22.6
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 +13 -3
- package/package.json +1 -1
- package/skills/agent-browser/SKILL.md +101 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Systematic is an [OpenCode](https://opencode.ai/) plugin that transforms your AI
|
|
|
29
29
|
|
|
30
30
|
Most AI coding assistants respond to requests without structure or methodology. This leads to inconsistent outputs, missed requirements, and wasted iterations.
|
|
31
31
|
|
|
32
|
-
**Systematic solves this with structured workflows.**
|
|
32
|
+
**Systematic solves this with structured workflows.** Installation is the first step to equipping your AI with high-leverage engineering habits. Once installed, the plugin injects proven processes directly into the system prompt, enabling it to:
|
|
33
33
|
|
|
34
34
|
- **Brainstorm systematically** before jumping to implementation
|
|
35
35
|
- **Plan with rigor** using multi-phase workflows
|
|
@@ -54,7 +54,7 @@ Most AI coding assistants respond to requests without structure or methodology.
|
|
|
54
54
|
|
|
55
55
|
### Installation
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
Install the plugin by adding it to your OpenCode configuration (`~/.config/opencode/opencode.json`):
|
|
58
58
|
|
|
59
59
|
```json
|
|
60
60
|
{
|
|
@@ -62,7 +62,7 @@ Add the plugin to your OpenCode configuration (`~/.config/opencode/opencode.json
|
|
|
62
62
|
}
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
Restart OpenCode to activate the plugin. All bundled skills, agents, and commands will be available immediately.
|
|
66
66
|
|
|
67
67
|
> [!NOTE]
|
|
68
68
|
> Systematic uses OpenCode's `config` hook to automatically register all bundled content. No manual file copying required.
|
|
@@ -101,6 +101,13 @@ In any OpenCode conversation, type:
|
|
|
101
101
|
|
|
102
102
|
If the skill loads and displays usage instructions, the plugin is working correctly.
|
|
103
103
|
|
|
104
|
+
#### Next Steps
|
|
105
|
+
|
|
106
|
+
Once verified, explore these guides to master the Systematic workflow:
|
|
107
|
+
- **[Philosophy](https://fro.bot/systematic/guides/philosophy/)** — Understand the Compound Engineering mindset and why it works
|
|
108
|
+
- **[Main Loop](https://fro.bot/systematic/guides/main-loop/)** — Learn the Plan → Work → Review → Compound cycle
|
|
109
|
+
- **[Agent Install Guide](https://fro.bot/systematic/guides/agent-install/)** — Step-by-step install guide for AI agents
|
|
110
|
+
|
|
104
111
|
## Skills
|
|
105
112
|
|
|
106
113
|
Skills are structured workflows that guide the AI through systematic engineering processes. They're loaded via the `systematic_skill` tool.
|
|
@@ -433,6 +440,9 @@ Migrating skills, agents, or commands from CEP or other Claude Code-format sourc
|
|
|
433
440
|
## References
|
|
434
441
|
|
|
435
442
|
- [Systematic Documentation](https://fro.bot/systematic) — Full documentation site
|
|
443
|
+
- [Philosophy Guide](https://fro.bot/systematic/guides/philosophy/) — Core engineering principles
|
|
444
|
+
- [Main Loop Guide](https://fro.bot/systematic/guides/main-loop/) — The standard development cycle
|
|
445
|
+
- [Agent Install Guide](https://fro.bot/systematic/guides/agent-install/) — Advanced subagent configuration
|
|
436
446
|
- [OpenCode Documentation](https://opencode.ai/docs/) — Official OpenCode platform docs
|
|
437
447
|
- [OpenCode Plugin API](https://opencode.ai/docs/plugins) — Plugin development reference
|
|
438
448
|
- [Compound Engineering Plugin](https://github.com/EveryInc/compound-engineering-plugin) — Original Claude Code workflows
|
package/package.json
CHANGED
|
@@ -202,6 +202,107 @@ Returns:
|
|
|
202
202
|
}
|
|
203
203
|
```
|
|
204
204
|
|
|
205
|
+
## Inspection & Debugging
|
|
206
|
+
|
|
207
|
+
### JavaScript Evaluation
|
|
208
|
+
|
|
209
|
+
```bash
|
|
210
|
+
agent-browser eval "document.title" # Evaluate JS expression
|
|
211
|
+
agent-browser eval "JSON.stringify(localStorage)" # Return serialized data
|
|
212
|
+
agent-browser eval "document.querySelectorAll('a').length" # Count elements
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
### Console & Errors
|
|
216
|
+
|
|
217
|
+
```bash
|
|
218
|
+
agent-browser console # Show browser console output
|
|
219
|
+
agent-browser console --clear # Show and clear console
|
|
220
|
+
agent-browser errors # Show JavaScript errors only
|
|
221
|
+
agent-browser errors --clear # Show and clear errors
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
## Network
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
agent-browser network requests # List captured requests
|
|
228
|
+
agent-browser network requests --filter "api" # Filter by URL pattern
|
|
229
|
+
agent-browser route "**/*.png" abort # Block matching requests
|
|
230
|
+
agent-browser route "https://api.example.com/*" fulfill --status 200 --body '{"mock":true}' # Mock response
|
|
231
|
+
agent-browser unroute "**/*.png" # Remove route handler
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
## Storage
|
|
235
|
+
|
|
236
|
+
### Cookies
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
agent-browser cookies get # Get all cookies
|
|
240
|
+
agent-browser cookies get --name "session" # Get specific cookie
|
|
241
|
+
agent-browser cookies set --name "token" --value "abc" # Set cookie
|
|
242
|
+
agent-browser cookies clear # Clear all cookies
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### Local & Session Storage
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
agent-browser storage local # Get all localStorage
|
|
249
|
+
agent-browser storage local --key "theme" # Get specific key
|
|
250
|
+
agent-browser storage session # Get all sessionStorage
|
|
251
|
+
agent-browser storage session --key "cart" # Get specific key
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
## Device & Settings
|
|
255
|
+
|
|
256
|
+
```bash
|
|
257
|
+
agent-browser set viewport 1920 1080 # Set viewport size
|
|
258
|
+
agent-browser set device "iPhone 14" # Emulate device
|
|
259
|
+
agent-browser set geo --lat 47.6 --lon -122.3 # Set geolocation
|
|
260
|
+
agent-browser set offline true # Enable offline mode
|
|
261
|
+
agent-browser set offline false # Disable offline mode
|
|
262
|
+
agent-browser set media "prefers-color-scheme" "dark" # Set media feature
|
|
263
|
+
agent-browser set headers '{"X-Custom":"value"}' # Set extra HTTP headers
|
|
264
|
+
agent-browser set credentials "user" "pass" # Set HTTP auth credentials
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
## Element Debugging
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
agent-browser highlight @e1 # Highlight element visually
|
|
271
|
+
agent-browser get box @e1 # Get bounding box (x, y, width, height)
|
|
272
|
+
agent-browser get styles @e1 # Get computed styles
|
|
273
|
+
agent-browser is visible @e1 # Check if element is visible
|
|
274
|
+
agent-browser is enabled @e1 # Check if element is enabled
|
|
275
|
+
agent-browser is checked @e1 # Check if checkbox/radio is checked
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
## Recording & Tracing
|
|
279
|
+
|
|
280
|
+
```bash
|
|
281
|
+
agent-browser trace start # Start recording trace
|
|
282
|
+
agent-browser trace stop trace.zip # Stop and save trace file
|
|
283
|
+
agent-browser record start # Start recording video
|
|
284
|
+
agent-browser record stop video.webm # Stop and save recording
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
## Tabs & Windows
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
agent-browser tab list # List open tabs
|
|
291
|
+
agent-browser tab new https://example.com # Open URL in new tab
|
|
292
|
+
agent-browser tab close # Close current tab
|
|
293
|
+
agent-browser tab 2 # Switch to tab by index
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
## Advanced Mouse
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
agent-browser mouse move 100 200 # Move mouse to coordinates
|
|
300
|
+
agent-browser mouse down # Press mouse button
|
|
301
|
+
agent-browser mouse up # Release mouse button
|
|
302
|
+
agent-browser mouse wheel 0 500 # Scroll (deltaX, deltaY)
|
|
303
|
+
agent-browser drag @e1 @e2 # Drag from element to element
|
|
304
|
+
```
|
|
305
|
+
|
|
205
306
|
## vs Playwright MCP
|
|
206
307
|
|
|
207
308
|
| Feature | agent-browser (CLI) | Playwright MCP |
|
|
@@ -221,4 +322,3 @@ Use Playwright MCP when:
|
|
|
221
322
|
- You need deep MCP tool integration
|
|
222
323
|
- You want tool-based responses
|
|
223
324
|
- You're building complex automation
|
|
224
|
-
|