@wokuapp/ai-toolkit 0.1.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.
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "woku-ai-toolkit",
3
+ "owner": {
4
+ "name": "woku"
5
+ },
6
+ "metadata": {
7
+ "description": "The woku AI Toolkit: connect your agent to woku's voice-of-customer platform"
8
+ },
9
+ "plugins": [
10
+ {
11
+ "name": "woku",
12
+ "source": "./",
13
+ "description": "Design a listening program for your customer journey, run the VoC instruments (NPS, CSAT, CES, wokus), and turn every signal into a support ticket or an action plan, through woku's MCP server.",
14
+ "version": "0.1.0",
15
+ "author": { "name": "woku" },
16
+ "license": "MIT",
17
+ "homepage": "https://woku.app",
18
+ "keywords": ["woku", "mcp", "voice-of-customer", "cx", "nps", "csat", "ces", "surveys", "feedback"]
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "woku",
3
+ "description": "Voice-of-customer for Claude Code. Design a listening program for your customer journey, run the fast VoC instruments (NPS, CSAT, CES, wokus), and turn every signal into a support ticket or an action plan, through woku's MCP server. Bundles the woku method so the agent acts as a CX consultant.",
4
+ "version": "0.1.0",
5
+ "author": { "name": "woku" },
6
+ "homepage": "https://woku.app",
7
+ "license": "MIT",
8
+ "keywords": ["woku", "mcp", "voice-of-customer", "cx", "nps", "csat", "ces", "surveys", "feedback"]
9
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "woku",
3
+ "version": "0.1.0",
4
+ "description": "Voice-of-customer for OpenAI Codex. Design a listening program, run the VoC instruments (NPS, CSAT, CES, wokus), and turn every signal into a support ticket or an action plan, through woku's MCP server.",
5
+ "author": { "name": "woku" },
6
+ "homepage": "https://docs.woku.app/mcp/agent-guide",
7
+ "repository": "https://github.com/wokuApp/woku-ai-toolkit",
8
+ "license": "MIT",
9
+ "keywords": ["woku", "voice-of-customer", "cx", "nps", "csat", "ces", "surveys", "feedback"],
10
+ "skills": "./skills/",
11
+ "mcpServers": {
12
+ "woku": {
13
+ "type": "http",
14
+ "url": "https://api.woku.app/mcp"
15
+ }
16
+ },
17
+ "interface": {
18
+ "displayName": "woku",
19
+ "shortDescription": "Turn customer feedback into tickets and action plans.",
20
+ "longDescription": "Connect your agent to woku, the voice-of-customer platform. Design a listening program for your customer journey, place the fast VoC instruments (NPS, CSAT, CES, wokus) at each moment of truth, and turn every signal into a support ticket or an action plan.",
21
+ "developerName": "woku",
22
+ "category": "Productivity",
23
+ "capabilities": ["Read", "Write"],
24
+ "websiteURL": "https://woku.app",
25
+ "privacyPolicyURL": "https://woku.app/privacy-policy",
26
+ "termsOfServiceURL": "https://woku.app/terms-and-conditions",
27
+ "defaultPrompt": [
28
+ "How do I start listening to my customers?",
29
+ "Design a VoC program for my customer journey",
30
+ "How is my NPS, and should I open an action plan?"
31
+ ]
32
+ }
33
+ }
package/.mcp.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "mcpServers": {
3
+ "woku": {
4
+ "type": "http",
5
+ "url": "https://api.woku.app/mcp"
6
+ }
7
+ }
8
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0
4
+
5
+ Initial release. Bundles woku's MCP server connection (`https://api.woku.app/mcp`) and the woku skill (the woku method plus the `woku_guide` / `design_voc_program` entry points). Plugin manifests for Claude Code (`.claude-plugin/`), Codex (`.codex-plugin/`), OpenClaw (`openclaw.plugin.json`) and Pi (`package.json`). OpenCode, claude.ai and ChatGPT connect to the MCP server through their own configuration.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 woku
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,96 @@
1
+ # woku AI Toolkit
2
+
3
+ Connect your AI agent to [woku](https://woku.app), the voice-of-customer platform.
4
+
5
+ The toolkit gives your agent woku's full tool catalog through woku's MCP server, plus the woku method so it acts as a customer-experience consultant: design a listening program for your customer journey, place the fast VoC instruments (NPS, CSAT, CES, wokus) at each moment of truth, and turn every signal into a support ticket or an action plan.
6
+
7
+ It bundles:
8
+
9
+ - The **woku MCP server** connection (`https://api.woku.app/mcp`), so the agent gets the full catalog (143 tools) with woku's OAuth. No API keys to copy.
10
+ - The **woku skill**, which primes the agent with the method and tells it to call `woku_guide` first.
11
+
12
+ ## Install
13
+
14
+ ### Claude Code
15
+
16
+ Add woku's marketplace, then install the plugin. This ships both the MCP server and the skill:
17
+
18
+ ```
19
+ /plugin marketplace add wokuApp/woku-ai-toolkit
20
+ /plugin install woku@woku-ai-toolkit
21
+ ```
22
+
23
+ Once the toolkit is accepted into the official marketplace, `/plugin install woku@claude-plugins-official` also works.
24
+
25
+ ### OpenAI Codex
26
+
27
+ Add the woku MCP server to `~/.codex/config.toml` and authenticate:
28
+
29
+ ```toml
30
+ [mcp_servers.woku]
31
+ url = "https://api.woku.app/mcp"
32
+ ```
33
+
34
+ ```
35
+ codex mcp login woku
36
+ ```
37
+
38
+ `auth = "oauth"` is the default for a bare `url`, so Codex opens the browser to complete woku's OAuth. Check it with `codex mcp list`.
39
+
40
+ ### OpenCode
41
+
42
+ Add the woku MCP server to your `opencode.json`:
43
+
44
+ ```json
45
+ {
46
+ "$schema": "https://opencode.ai/config.json",
47
+ "mcp": {
48
+ "woku": {
49
+ "type": "remote",
50
+ "url": "https://api.woku.app/mcp",
51
+ "enabled": true
52
+ }
53
+ }
54
+ }
55
+ ```
56
+
57
+ OpenCode runs OAuth automatically on the first authenticated call. To start the login yourself, run `opencode mcp auth woku`.
58
+
59
+ ### OpenClaw
60
+
61
+ Install the plugin (this ships the woku skill):
62
+
63
+ ```
64
+ openclaw plugins install git:github.com/wokuApp/woku-ai-toolkit
65
+ ```
66
+
67
+ OpenClaw's plugin manifest declares local MCP servers only, so add woku's remote MCP server (`https://api.woku.app/mcp`) through your OpenClaw MCP configuration.
68
+
69
+ ### Pi
70
+
71
+ The package exposes the woku skill through Pi's `pi` package convention. Install `@wokuapp/ai-toolkit` from npm in your project and Pi loads the skill. Add woku's MCP server (`https://api.woku.app/mcp`) through Pi's MCP configuration.
72
+
73
+ ### claude.ai and ChatGPT
74
+
75
+ These are configured from the app, not from a package. Add a custom connector (claude.ai) or a developer-mode connector (ChatGPT) with the URL `https://api.woku.app/mcp`.
76
+
77
+ ### Any other MCP client
78
+
79
+ Point it at `https://api.woku.app/mcp` and approve access from your woku account.
80
+
81
+ See the [connect guide](https://docs.woku.app/mcp/connect-a-client) and the [agent guide](https://docs.woku.app/mcp/agent-guide) for details.
82
+
83
+ ## What you get
84
+
85
+ Once connected, ask your agent things like:
86
+
87
+ - "I run an ecommerce, how do I start listening to my customers with woku?"
88
+ - "Design a VoC program for my customer journey."
89
+ - "How is my NPS this month, and should I open an action plan?"
90
+ - "Summarize last week's reviews and the top improvement themes."
91
+
92
+ Every connection is bound to one company, chosen when you approve access. Read tools need no special permission; write tools require the `mcp:write` scope, and destructive tools or sends require an explicit confirmation.
93
+
94
+ ## License
95
+
96
+ MIT. See [LICENSE](./LICENSE).
@@ -0,0 +1,12 @@
1
+ {
2
+ "id": "woku-ai-toolkit",
3
+ "name": "woku AI Toolkit",
4
+ "description": "Voice-of-customer for your agent. Design a listening program, run the VoC instruments (NPS, CSAT, CES, wokus), and turn every signal into a support ticket or an action plan, through woku's MCP server.",
5
+ "version": "0.1.0",
6
+ "skills": ["./skills"],
7
+ "configSchema": {
8
+ "type": "object",
9
+ "additionalProperties": false,
10
+ "properties": {}
11
+ }
12
+ }
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@wokuapp/ai-toolkit",
3
+ "version": "0.1.0",
4
+ "description": "woku AI Toolkit: connect your agent to woku's voice-of-customer platform. Design VoC programs and turn customer feedback into support tickets and action plans, through woku's MCP server.",
5
+ "author": "woku",
6
+ "license": "MIT",
7
+ "homepage": "https://docs.woku.app/mcp/agent-guide",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/wokuApp/woku-ai-toolkit"
11
+ },
12
+ "keywords": [
13
+ "woku",
14
+ "mcp",
15
+ "voice-of-customer",
16
+ "cx",
17
+ "nps",
18
+ "csat",
19
+ "ces",
20
+ "surveys",
21
+ "feedback",
22
+ "plugin",
23
+ "pi-package"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "files": [
29
+ "skills",
30
+ ".mcp.json",
31
+ ".claude-plugin",
32
+ ".codex-plugin",
33
+ "openclaw.plugin.json",
34
+ "README.md",
35
+ "LICENSE",
36
+ "CHANGELOG.md"
37
+ ],
38
+ "pi": {
39
+ "skills": [
40
+ "./skills"
41
+ ]
42
+ }
43
+ }
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: woku
3
+ description: "Use woku to protect revenue with the voice of the customer. Use when the user wants to set up customer feedback or listening, design a Voice-of-Customer program, place surveys (NPS, CSAT, CES) or wokus at moments of their customer journey, turn feedback into support tickets or action plans, or operate their woku account from the agent. Requires the woku MCP server connected (this toolkit declares it)."
4
+ ---
5
+
6
+ # woku: voice-of-customer for your agent
7
+
8
+ woku is a voice-of-customer platform. This toolkit connects your agent to woku's MCP server (`https://api.woku.app/mcp`), which exposes the full tool catalog plus two meta-tools that teach you how to use it. Act as a customer-experience consultant: help the user design their listening, do not just run commands.
9
+
10
+ ## Start here
11
+
12
+ Before doing anything else, call the `woku_guide` tool. With no arguments it returns the method, the topic index, and the id-discovery rules; with a `topic` it returns a step-by-step playbook; with a `question` in natural language it picks the best playbook. Read it before calling other woku tools. If the tools are not available, tell the user to connect the woku MCP server (see this toolkit's README) and approve access.
13
+
14
+ ## The woku method
15
+
16
+ Every business is a customer journey, and each moment of truth decides whether the customer returns or leaves. woku protects revenue with a simple idea:
17
+
18
+ 1. At each moment of truth, listen with a fast instrument (a rating plus a text or voice comment, under 60 seconds): NPS, CSAT, CES, or a woku.
19
+ 2. Every signal triggers an action. One signal becomes a support ticket (individual attention). Recurring signals across customers become an action plan (systematic improvement).
20
+ 3. Trackers are the connective tissue: they segment instruments by journey, moment, or locality, and that segmentation routes each ticket and groups each plan.
21
+
22
+ ## How to help
23
+
24
+ 1. To design a program, call `design_voc_program`. Pass what the user knows (business type, channels, their journey moments, how to segment) and it returns a blueprint: the recommended instrument per moment (from the canonical template: sale to CSAT, delivery to woku, support to CES, post-sale to woku, loyalty to NPS), the tracker design, the action wiring, and the ordered `create_*` steps to build it.
25
+ 2. Walk the blueprint with the user and adapt it to their real journey.
26
+ 3. Build it with the `create_*` tools once the user approves, and distribute the instruments with the `send_*` tools. Nothing is created or sent without an explicit confirmation.
27
+ 4. From then on, let every signal trigger its action: tickets for individual attention, plans for systematic improvement.
28
+
29
+ ## Safety
30
+
31
+ Read tools need no special permission. Write tools require the `mcp:write` scope, and destructive tools (for example `delete_woku`) or sends (for example `send_nps_invitations`, `send_report_now`) require `confirm: true`. The list the server advertises on a live connection (`tools/list`) is always the authoritative answer about what is available.