octocode-cli 1.2.9 → 1.2.11
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 +10 -10
- package/out/octocode-cli.js +64 -29
- package/package.json +7 -8
- package/skills/octocode-engineer/SKILL.md +420 -490
package/README.md
CHANGED
|
@@ -91,13 +91,13 @@ Full options and examples: [CLI Reference](https://github.com/bgauryy/octocode-m
|
|
|
91
91
|
Default target is `claude-code` (`~/.claude/skills/`). Use `--targets` for multiple clients and `--mode` to choose copy or symlink.
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
octocode skills list # see what's installed
|
|
95
|
-
octocode skills install # install all (default target)
|
|
96
|
-
octocode skills install --skill octocode-researcher # install one skill
|
|
97
|
-
octocode skills install --skill octocode-researcher --force # update existing
|
|
98
|
-
octocode skills install --targets claude-code,cursor,codex # multi-target
|
|
99
|
-
octocode skills install --targets claude-code,cursor --mode symlink
|
|
100
|
-
octocode skills remove --skill octocode-researcher --targets claude-code,cursor
|
|
94
|
+
npx octocode-cli skills list # see what's installed
|
|
95
|
+
npx octocode-cli skills install # install all (default target)
|
|
96
|
+
npx octocode-cli skills install --skill octocode-researcher # install one skill
|
|
97
|
+
npx octocode-cli skills install --skill octocode-researcher --force # update existing
|
|
98
|
+
npx octocode-cli skills install --targets claude-code,cursor,codex # multi-target
|
|
99
|
+
npx octocode-cli skills install --targets claude-code,cursor --mode symlink
|
|
100
|
+
npx octocode-cli skills remove --skill octocode-researcher --targets claude-code,cursor
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
Supported `--targets`: `claude-code`, `claude-desktop`, `cursor`, `codex`, `opencode`.
|
|
@@ -128,11 +128,11 @@ Full reference: [Skills Guide](https://github.com/bgauryy/octocode-mcp/blob/main
|
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
130
|
npx node-doctor # diagnose environment
|
|
131
|
-
rm -rf ~/.octocode && octocode-cli login # reset credentials
|
|
132
|
-
octocode-cli status # verify auth
|
|
131
|
+
rm -rf ~/.octocode && npx octocode-cli login # reset credentials
|
|
132
|
+
npx octocode-cli status # verify auth
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
-
- **Token expired** — run `octocode-cli login`.
|
|
135
|
+
- **Token expired** — run `npx octocode-cli login`.
|
|
136
136
|
- **Browser not opening** — copy the authorization URL from the terminal.
|
|
137
137
|
|
|
138
138
|
---
|