vibe-cokit 1.4.1 → 1.5.1
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 +34 -5
- package/dist/cli.js +2241 -311
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -8,16 +8,45 @@ A toolkit for interacting with Claude Code.
|
|
|
8
8
|
bun install -g vibe-cokit
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Commands
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
# Initialize vibe-cokit for current project
|
|
15
|
-
vk
|
|
14
|
+
vk init # Initialize vibe-cokit for current project
|
|
15
|
+
vk update # Update CLI + config + skills
|
|
16
|
+
vk skills # Install/update skills
|
|
17
|
+
vk doctor # Health check setup
|
|
18
|
+
vk doctor --fix # Auto-fix setup issues
|
|
19
|
+
vk help # Show detailed usage guide
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### MCP Servers
|
|
16
23
|
|
|
17
|
-
|
|
18
|
-
vk
|
|
24
|
+
```bash
|
|
25
|
+
vk mcp install # List available MCP modules
|
|
26
|
+
vk mcp install serena context7 # Install specific MCP servers
|
|
27
|
+
vk mcp install --all # Install all MCP servers
|
|
28
|
+
vk mcp uninstall serena # Remove an MCP server
|
|
19
29
|
```
|
|
20
30
|
|
|
31
|
+
Available modules: `serena`, `context7`, `brave-search`, `filesystem`, `github`, `sequential-thinking`, `memory`, `puppeteer`
|
|
32
|
+
|
|
33
|
+
### Plugins
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
vk plugin install # List available plugins
|
|
37
|
+
vk plugin install context7 code-review # Install specific plugins
|
|
38
|
+
vk plugin install --all # Install all plugins
|
|
39
|
+
vk plugin uninstall hookify # Remove a plugin
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Available plugins: `context7`, `code-review`, `ralph-loop`, `typescript-lsp`, `pyright-lsp`, `gopls-lsp`, `rust-analyzer-lsp`, `frontend-design`, `security-guidance`, `hookify`, `code-simplifier`, `feature-dev`, `pr-review-toolkit`, `commit-commands`
|
|
43
|
+
|
|
44
|
+
## Prerequisites
|
|
45
|
+
|
|
46
|
+
- [gh](https://cli.github.com) — GitHub CLI
|
|
47
|
+
- [git](https://git-scm.com) — Git version control
|
|
48
|
+
- [claude](https://docs.anthropic.com/en/docs/claude-code) — Claude Code CLI (for mcp/plugin commands)
|
|
49
|
+
|
|
21
50
|
## Development
|
|
22
51
|
|
|
23
52
|
```bash
|