superduck-cli 0.2.4 → 0.2.5
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 +1 -1
- package/SKILL.md +1 -1
- package/bin/superduck.js +1 -2
- package/package.json +5 -5
package/README.md
CHANGED
package/SKILL.md
CHANGED
|
@@ -45,7 +45,7 @@ superduck log --tail 20 # ~/.superduck/audit.jsonl
|
|
|
45
45
|
If the `superduck` command is not found, it can be installed with:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
npm install -g superduck
|
|
48
|
+
npm install -g superduck-cli
|
|
49
49
|
superduck setup # registers the native messaging manifest
|
|
50
50
|
```
|
|
51
51
|
|
package/bin/superduck.js
CHANGED
|
@@ -19,8 +19,7 @@ try {
|
|
|
19
19
|
if (!binPath) {
|
|
20
20
|
console.error(`superduck: no prebuilt binary found for ${platform}-${arch}.`);
|
|
21
21
|
console.error(`expected optional dependency '${pkg}'.`);
|
|
22
|
-
console.error(`if you are on a supported platform, try: npm install -g --force superduck`);
|
|
23
|
-
process.exit(127);
|
|
22
|
+
console.error(`if you are on a supported platform, try: npm install -g --force superduck-cli`); process.exit(127);
|
|
24
23
|
}
|
|
25
24
|
|
|
26
25
|
if (process.argv[2] === "--postinstall") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superduck-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Your browser's session, callable as a tool. CLI bridge from Claude Code/Codex/etc to your active Chrome tab.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superduck": "bin/superduck.js"
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"postinstall": "node bin/superduck.js --postinstall || true"
|
|
15
15
|
},
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"superduck-darwin-arm64": "0.2.
|
|
18
|
-
"superduck-darwin-x64": "0.2.
|
|
19
|
-
"superduck-linux-arm64": "0.2.
|
|
20
|
-
"superduck-linux-x64": "0.2.
|
|
17
|
+
"superduck-darwin-arm64": "0.2.5",
|
|
18
|
+
"superduck-darwin-x64": "0.2.5",
|
|
19
|
+
"superduck-linux-arm64": "0.2.5",
|
|
20
|
+
"superduck-linux-x64": "0.2.5"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=16"
|