codymaster 7.0.1 → 7.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 +79 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
**50+ skills. One install. Your AI coding agent becomes a full team.**
|
|
8
8
|
|
|
9
|
-
**v7.0 — Browse Hybrid Bridge:** AI-native browser automation with a11y snapshots, error collection, video recording.
|
|
9
|
+
**v7.0.2 — Browse Hybrid Bridge:** AI-native browser automation with a11y snapshots, error collection, video recording.
|
|
10
10
|
|
|
11
11
|
```
|
|
12
12
|
( . \ --- / . )
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
Meet Cody 🐹
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
[](https://www.npmjs.com/package/codymaster)
|
|
21
|
+
[](https://www.npmjs.com/package/codymaster)
|
|
22
|
+
[](https://github.com/tody-agent/codymaster/blob/main/LICENSE)
|
|
20
23
|
[](https://discord.gg/codymaster)
|
|
21
24
|
|
|
22
25
|
---
|
|
@@ -249,6 +252,14 @@ cm dashboard # Open the visual dashboard
|
|
|
249
252
|
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --all --profile core
|
|
250
253
|
```
|
|
251
254
|
|
|
255
|
+
### What's in the package
|
|
256
|
+
|
|
257
|
+
- **50+ skills** — ready-to-use SKILL.md files for every major AI coding agent
|
|
258
|
+
- **CLI (`cm`)** — install wizard, doctor, dashboard, MCP server, browse daemon
|
|
259
|
+
- **Skill profiles** — curated bundles: `core`, `growth`, `full`, `knowledge`
|
|
260
|
+
- **Multi-platform** — installs to Claude Code, Cursor, Gemini, Codex, OpenCode, Windsurf, Cline, Aider, Continue, Kiro, Amazon Q, Amp, Copilot, Claude Desktop
|
|
261
|
+
- **Zero config** — detects your tools, installs skills, you're done
|
|
262
|
+
|
|
252
263
|
---
|
|
253
264
|
|
|
254
265
|
## The Dashboard
|
|
@@ -315,6 +326,71 @@ cm mcp-serve --print-config # Paste into Goose config
|
|
|
315
326
|
|
|
316
327
|
---
|
|
317
328
|
|
|
329
|
+
## CLI Commands
|
|
330
|
+
|
|
331
|
+
| Command | Description |
|
|
332
|
+
|---------|-------------|
|
|
333
|
+
| `cm` | Launch interactive wizard (auto-detect AI tools) |
|
|
334
|
+
| `cm doctor` | Check installation health across all platforms |
|
|
335
|
+
| `cm status` | View current tasks and progress |
|
|
336
|
+
| `cm dashboard` | Open visual mission control |
|
|
337
|
+
| `cm install <platform> --profile <name>` | Install skills to a specific platform |
|
|
338
|
+
| `cm update --full` | Update all skills to latest |
|
|
339
|
+
| `cm upgrade` | Upgrade CodyMaster itself |
|
|
340
|
+
| `cm mcp-serve` | Run as MCP server for Claude Desktop |
|
|
341
|
+
| `cm browse` | Open a URL in the browse daemon |
|
|
342
|
+
| `cm browse screenshot <url>` | Capture a screenshot |
|
|
343
|
+
| `cm browse snapshot <url>` | Get accessibility tree snapshot |
|
|
344
|
+
|
|
345
|
+
### Skill Profiles
|
|
346
|
+
|
|
347
|
+
| Profile | Skills | Best For |
|
|
348
|
+
|---------|--------|----------|
|
|
349
|
+
| `core` | 15 | Daily coding — planning, TDD, debug, review, deploy |
|
|
350
|
+
| `growth` | 25 | + design system, i18n, content factory |
|
|
351
|
+
| `full` | 50+ | Everything — full senior team |
|
|
352
|
+
| `knowledge` | 10 | Docs, code intelligence, retros |
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
cm install claude-code --profile core
|
|
356
|
+
cm install cursor --profile growth
|
|
357
|
+
cm install gemini --profile full
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
---
|
|
361
|
+
|
|
362
|
+
## Troubleshooting
|
|
363
|
+
|
|
364
|
+
### `cm: command not found`
|
|
365
|
+
|
|
366
|
+
```bash
|
|
367
|
+
# Make sure global npm bin is in PATH
|
|
368
|
+
npm config get prefix
|
|
369
|
+
# Add the output bin/ folder to your PATH
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
### Skills not showing in AI agent
|
|
373
|
+
|
|
374
|
+
```bash
|
|
375
|
+
cm doctor # Check what's installed where
|
|
376
|
+
cm install --all # Re-install to all detected platforms
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
### Build fails
|
|
380
|
+
|
|
381
|
+
```bash
|
|
382
|
+
npm run build # Rebuild TypeScript
|
|
383
|
+
npm run test:gate:kit # Run full quality gate
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
### Permission errors (macOS/Linux)
|
|
387
|
+
|
|
388
|
+
```bash
|
|
389
|
+
sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
---
|
|
393
|
+
|
|
318
394
|
## Contributing
|
|
319
395
|
|
|
320
396
|
1. ⭐ **Star the repo** — helps more builders find this
|
|
@@ -335,6 +411,8 @@ CI runs `npm run test:gate:kit` on every push and PR.
|
|
|
335
411
|
| 🎨 Design Pipeline | [docs/design-pipeline.md](docs/design-pipeline.md) |
|
|
336
412
|
| 🛠️ Skills | [skills/](skills/) |
|
|
337
413
|
| 📖 Our Story | [cody.todyle.com/story](https://cody.todyle.com/story) |
|
|
414
|
+
| 📋 Changelog | [CHANGELOG.md](CHANGELOG.md) |
|
|
415
|
+
| 🐛 Issues | [GitHub Issues](https://github.com/tody-agent/codymaster/issues) |
|
|
338
416
|
|
|
339
417
|
---
|
|
340
418
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codymaster",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "CodyMaster v7.0 — 50+ AI agent skills with Browse Hybrid Bridge (agent-browser + Playwright), a11y snapshots, structured error collection, video recording. Hybrid browser automation for visual QA and testing.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"better-sqlite3": "^12.8.0",
|
|
87
87
|
"chalk": "^5.6.2",
|
|
88
88
|
"chokidar": "^5.0.0",
|
|
89
|
-
"codymaster": "^7.0.
|
|
89
|
+
"codymaster": "^7.0.2",
|
|
90
90
|
"commander": "^14.0.3",
|
|
91
91
|
"express": "^5.2.1",
|
|
92
92
|
"pino": "^10.0.0",
|