@wokuapp/ai-toolkit 0.2.0 → 0.2.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/CHANGELOG.md +4 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/woku-sdk-javascript/SKILL.md +2 -5
- package/skills/woku-sdk-python/SKILL.md +2 -5
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"name": "woku",
|
|
12
12
|
"source": "./",
|
|
13
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.2.
|
|
14
|
+
"version": "0.2.1",
|
|
15
15
|
"author": { "name": "woku" },
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"homepage": "https://woku.app",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "woku",
|
|
3
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.2.
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"author": { "name": "woku" },
|
|
6
6
|
"homepage": "https://woku.app",
|
|
7
7
|
"license": "MIT",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "woku",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
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
5
|
"author": { "name": "woku" },
|
|
6
6
|
"homepage": "https://docs.woku.app/mcp/agent-guide",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
Remove the action-plan external-send example (Jira/Monday/ClickUp/Notion) from the SDK skills: those destinations are not available in production and the SDKs dropped `actionPlans.send`. The skills now show approve plus manage-in-woku.
|
|
6
|
+
|
|
3
7
|
## 0.2.0
|
|
4
8
|
|
|
5
9
|
Add two developer skills so the agent can build server-side woku integrations in code, not only operate the account through the MCP server:
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "woku-ai-toolkit",
|
|
3
3
|
"name": "woku AI Toolkit",
|
|
4
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.2.
|
|
5
|
+
"version": "0.2.1",
|
|
6
6
|
"skills": ["./skills"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wokuapp/ai-toolkit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
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
5
|
"author": "woku",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,12 +62,9 @@ const delivery = await woku.dispatches.stats({ channel: 'email' });
|
|
|
62
62
|
// Support tickets (AI-generated): list, filter, curate.
|
|
63
63
|
for await (const t of await woku.tickets.list({ severity: 'high' })) console.log(t.title);
|
|
64
64
|
|
|
65
|
-
// Action plans: approve and
|
|
65
|
+
// Action plans: approve and manage inside woku (change status, work tasks).
|
|
66
66
|
await woku.actionPlans.approve('plan_123');
|
|
67
|
-
await woku.actionPlans.
|
|
68
|
-
provider: 'jira',
|
|
69
|
-
target: { projectId: '10032', issueTypeId: '10001' },
|
|
70
|
-
});
|
|
67
|
+
await woku.actionPlans.complete('plan_123');
|
|
71
68
|
```
|
|
72
69
|
|
|
73
70
|
Namespaces: `trackers`, `npsTools` / `csatTools` / `cesTools`, `nps` / `csat` /
|
|
@@ -63,12 +63,9 @@ delivery = woku.dispatches.stats({"channel": "email"})
|
|
|
63
63
|
for t in woku.tickets.list({"severity": "high"}):
|
|
64
64
|
print(t["title"])
|
|
65
65
|
|
|
66
|
-
# Action plans: approve and
|
|
66
|
+
# Action plans: approve and manage inside woku (change status, work tasks).
|
|
67
67
|
woku.action_plans.approve("plan_123")
|
|
68
|
-
woku.action_plans.
|
|
69
|
-
"plan_123",
|
|
70
|
-
{"provider": "jira", "target": {"projectId": "10032", "issueTypeId": "10001"}},
|
|
71
|
-
)
|
|
68
|
+
woku.action_plans.complete("plan_123")
|
|
72
69
|
```
|
|
73
70
|
|
|
74
71
|
Namespaces: `trackers`, `nps_tools` / `csat_tools` / `ces_tools`, `nps` / `csat`
|