octocode-cli 1.2.0 → 1.2.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 +18 -1
- package/out/octocode-cli.js +573 -354
- package/package.json +1 -1
- package/skills/README.md +17 -12
- package/skills/octocode-implement/SKILL.md +65 -60
- package/skills/octocode-local-search/SKILL.md +72 -41
- package/skills/octocode-plan/SKILL.md +431 -0
- package/skills/octocode-pr-review/SKILL.md +43 -1
- package/skills/octocode-research/SKILL.md +43 -101
- package/skills/octocode-roast/SKILL.md +39 -0
- package/skills/octocode-generate/SKILL.md +0 -172
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
|
|
23
23
|
- **🚀 One-Step Installation**: Instantly configure `octocode-mcp` for Cursor, Claude Desktop, Windsurf, Zed, and more.
|
|
24
24
|
- **🔌 MCP Marketplace**: Browse and install over 70+ community-vetted MCP servers directly from your terminal.
|
|
25
|
-
- **🧠 AI Skills Manager**: Install and update specialized AI coding skills for Claude Code (`research`, `plan`, `pr-review`).
|
|
25
|
+
- **🧠 AI Skills Manager**: Install and update specialized AI coding skills for Claude Code (`research`, `local-search`, `implement`, `plan`, `pr-review`, `roast`).
|
|
26
26
|
- **🔄 Universal Sync**: Keep your MCP configurations and authentication states synchronized across all your IDEs.
|
|
27
27
|
- **🔐 Secure Authentication**: Enterprise-grade token management with encrypted storage and multiple auth providers.
|
|
28
28
|
|
|
@@ -102,6 +102,20 @@ octocode-cli skills list
|
|
|
102
102
|
octocode-cli skills install
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
#### 5. Additional Commands
|
|
106
|
+
Other useful commands for power users.
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Logout from GitHub
|
|
110
|
+
octocode-cli logout
|
|
111
|
+
|
|
112
|
+
# Get GitHub token (for scripting)
|
|
113
|
+
octocode-cli token
|
|
114
|
+
|
|
115
|
+
# Auth management menu
|
|
116
|
+
octocode-cli auth
|
|
117
|
+
```
|
|
118
|
+
|
|
105
119
|
---
|
|
106
120
|
|
|
107
121
|
## 🖥️ Supported Clients
|
|
@@ -115,6 +129,9 @@ Octocode CLI supports a wide range of AI-first editors and tools.
|
|
|
115
129
|
| **Windsurf** | Codeium AI IDE | `~/.codeium/windsurf/mcp_config.json` |
|
|
116
130
|
| **Zed** | High-performance editor | `~/.config/zed/settings.json` |
|
|
117
131
|
| **Claude Code** | CLI Assistant | `~/.claude.json` |
|
|
132
|
+
| **Trae** | Adaptive AI IDE | `~/Library/Application Support/Trae/mcp.json` |
|
|
133
|
+
| **Antigravity** | Gemini-powered AI IDE | `~/.gemini/antigravity/mcp_config.json` |
|
|
134
|
+
| **Opencode** | AI coding agent CLI | `~/.config/opencode/config.json` |
|
|
118
135
|
| **VS Code Extensions** | Cline, Roo-Cline, Continue | *(Varies by extension)* |
|
|
119
136
|
|
|
120
137
|
---
|