@waniwani/sdk 0.11.27 → 0.12.0
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 +13 -0
- package/dist/chat/embed.js +66 -66
- package/dist/chat/embed.js.map +1 -1
- package/dist/chat/index.d.ts +63 -7
- package/dist/chat/index.js +7 -7
- package/dist/chat/index.js.map +1 -1
- package/dist/chat/styles.css +1 -1
- package/dist/legacy/index.d.ts +40 -2
- package/dist/legacy/index.js +13 -13
- package/dist/legacy/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,19 @@ For a fuller starter project with chat widget, dev tunnel, and a sample funnel p
|
|
|
104
104
|
git clone https://github.com/WaniWani-AI/mcp-distribution-template.git my-mcp-server
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
+
## CLI
|
|
108
|
+
|
|
109
|
+
The companion [`@waniwani/cli`](https://www.npmjs.com/package/@waniwani/cli) wires a local repo to a WaniWani agent and runs your MCP server against the hosted playground in one command. Optional — the SDK works without it.
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
bun add -g @waniwani/cli
|
|
113
|
+
waniwani login # browser-based OAuth2 PKCE
|
|
114
|
+
waniwani connect # pick an org + agent, writes waniwani.config.ts
|
|
115
|
+
waniwani dev # run local MCP, open playground bridged to localhost
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
See the [CLI docs](https://docs.waniwani.ai/cli/overview) for the full command reference.
|
|
119
|
+
|
|
107
120
|
## Documentation
|
|
108
121
|
|
|
109
122
|
Full docs at **[docs.waniwani.ai](https://docs.waniwani.ai)**. Same source as [`./docs/`](./docs).
|