@zibby/skills 0.2.11 → 0.2.12

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/skills",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Built-in skill definitions for the Zibby agent-workflow framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,7 +29,12 @@ Read/write a Slack workspace — list channels, post messages, reply in threads,
29
29
  Slack uses a bot token + workspace team id.
30
30
 
31
31
  1. Create (or reuse) a Slack app at [api.slack.com/apps](https://api.slack.com/apps).
32
- 2. Add Bot Token Scopes: `chat:write`, `channels:read`, `channels:history`, `groups:read`, `users:read`, `reactions:write` (minimum).
32
+ 2. Add Bot Token Scopes the full set this skill's tools need:
33
+ `chat:write`, `channels:read`, `channels:history`, `groups:read`, `groups:history`,
34
+ `reactions:write`, `users:read`, `users:read.email`, `users.profile:read`, `usergroups:read`.
35
+ (`users:read.email` backs `slack_find_user_by_email`; `usergroups:read` backs
36
+ `slack_list_usergroups` / `slack_get_usergroup_members` — omit either and those
37
+ tools fail with `missing_scope`.)
33
38
  3. Install the app to your workspace; copy the **Bot User OAuth Token** (`xoxb-…`) and **Team ID**.
34
39
  4. Set them on the agent's env (locally) or via **Cloud → Env vars**:
35
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/skills",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Built-in skill definitions for the Zibby agent-workflow framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",