cbrowser 9.8.1 → 9.9.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/dist/cli.js +4 -4
- package/dist/cli.js.map +1 -1
- package/dist/cognitive/index.d.ts.map +1 -1
- package/dist/cognitive/index.js +99 -5
- package/dist/cognitive/index.js.map +1 -1
- package/dist/types.d.ts +64 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +32 -0
- package/dist/types.js.map +1 -1
- package/docs/INSTALL.md +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -520,8 +520,8 @@ MCP SERVER (v5.0.0)
|
|
|
520
520
|
--port <port> Port to listen on (default: 3000)
|
|
521
521
|
--host <host> Host to bind to (default: 0.0.0.0)
|
|
522
522
|
|
|
523
|
-
|
|
524
|
-
install-skill Install CBrowser as a
|
|
523
|
+
CLAUDE SKILL INSTALLATION & SYNC
|
|
524
|
+
install-skill Install CBrowser as a Claude skill to ~/.claude/skills/
|
|
525
525
|
sync-skill Sync local skill to match npm version (same as install-skill)
|
|
526
526
|
Downloads latest skill files from GitHub
|
|
527
527
|
Run after 'npm update -g cbrowser' to stay in sync
|
|
@@ -1040,7 +1040,7 @@ async function main() {
|
|
|
1040
1040
|
process.exit(1);
|
|
1041
1041
|
}
|
|
1042
1042
|
}
|
|
1043
|
-
// Install/Sync
|
|
1043
|
+
// Install/Sync Claude skill (both commands do the same thing)
|
|
1044
1044
|
if (command === "install-skill" || command === "sync-skill") {
|
|
1045
1045
|
const { execSync } = await import("child_process");
|
|
1046
1046
|
const path = await import("path");
|
|
@@ -1050,7 +1050,7 @@ async function main() {
|
|
|
1050
1050
|
const repoUrl = "https://raw.githubusercontent.com/alexandriashai/cbrowser/main";
|
|
1051
1051
|
console.log(`
|
|
1052
1052
|
╔═══════════════════════════════════════════════════════════════╗
|
|
1053
|
-
║
|
|
1053
|
+
║ CBrowser Claude Skill Sync (auto-versioned) ║
|
|
1054
1054
|
╚═══════════════════════════════════════════════════════════════╝
|
|
1055
1055
|
`);
|
|
1056
1056
|
// Check if ~/.claude/skills exists
|