@waniwani/cli 0.0.37 → 0.0.39
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 +5 -5
- package/dist/index.js +384 -383
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,8 +44,8 @@ Requires Node.js 20 or later.
|
|
|
44
44
|
# Authenticate
|
|
45
45
|
waniwani login
|
|
46
46
|
|
|
47
|
-
# Create an MCP
|
|
48
|
-
waniwani mcp
|
|
47
|
+
# Create an MCP project
|
|
48
|
+
waniwani mcp init my-server
|
|
49
49
|
|
|
50
50
|
# Send tasks to Claude
|
|
51
51
|
waniwani task "Add a weather tool"
|
|
@@ -54,7 +54,7 @@ waniwani task "Add a weather tool"
|
|
|
54
54
|
waniwani mcp test
|
|
55
55
|
|
|
56
56
|
# Deploy to GitHub + Vercel
|
|
57
|
-
waniwani mcp
|
|
57
|
+
waniwani mcp publish
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## Commands
|
|
@@ -63,12 +63,12 @@ waniwani mcp deploy
|
|
|
63
63
|
|---------|-------------|
|
|
64
64
|
| `login` | Authenticate with WaniWani |
|
|
65
65
|
| `logout` | Clear local credentials |
|
|
66
|
-
| `mcp
|
|
66
|
+
| `mcp init <name>` | Create a new MCP project |
|
|
67
67
|
| `mcp list` | List your MCPs |
|
|
68
68
|
| `mcp use <name>` | Select active MCP |
|
|
69
69
|
| `mcp status` | Show current MCP status |
|
|
70
70
|
| `mcp test [tool]` | Test MCP tools |
|
|
71
|
-
| `mcp
|
|
71
|
+
| `mcp publish` | Publish to GitHub + Vercel |
|
|
72
72
|
| `mcp stop` | Stop and cleanup sandbox |
|
|
73
73
|
| `task <prompt>` | Send task to Claude |
|
|
74
74
|
| `org list` | List organizations |
|