@atollhq/skill-claude 0.1.6 → 0.1.7

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 CHANGED
@@ -7,7 +7,7 @@ Gives your Claude Code agent the ability to manage tasks, goals, KPIs, initiativ
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npx @atollhq/skill-claude --key sk_atoll_... --org your-org-slug
10
+ npx @atollhq/skill-claude --key sk_atoll_... --org your-org-id
11
11
  ```
12
12
 
13
13
  Get an API key from **Settings > Members > Add Agent** (or **Create API Key** for integrations) in the Atoll app.
@@ -15,7 +15,7 @@ Get an API key from **Settings > Members > Add Agent** (or **Create API Key** fo
15
15
  This does two things:
16
16
 
17
17
  1. Copies the skill into `~/.claude/skills/atoll-api/`
18
- 2. Writes `ATOLL_API_KEY` and `ATOLL_ORG_SLUG` into `~/.claude/settings.json` under `env`
18
+ 2. Writes `ATOLL_API_KEY` and `ATOLL_ORG_ID` into `~/.claude/settings.json` under `env`
19
19
 
20
20
  Restart Claude Code and the `atoll-api` skill is available.
21
21
 
package/bin/install.mjs CHANGED
@@ -23,11 +23,11 @@ function parseArgs(argv) {
23
23
 
24
24
  function printUsage() {
25
25
  console.log(`
26
- Usage: npx @atollhq/skill-claude --key <api-key> --org <org-slug>
26
+ Usage: npx @atollhq/skill-claude --key <api-key> --org <org-id>
27
27
 
28
28
  Options:
29
29
  --key Atoll API key (sk_atoll_...)
30
- --org Organization slug
30
+ --org Organization ID
31
31
  --help Show this help message
32
32
 
33
33
  This installs the Atoll skill for Claude Code, giving your agent
@@ -75,10 +75,10 @@ if (existsSync(settingsPath)) {
75
75
 
76
76
  if (!settings.env) settings.env = {}
77
77
  settings.env.ATOLL_API_KEY = args.key
78
- settings.env.ATOLL_ORG_SLUG = args.org
78
+ settings.env.ATOLL_ORG_ID = args.org
79
79
 
80
80
  writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n')
81
- console.log(`Configured ATOLL_API_KEY and ATOLL_ORG_SLUG in ${settingsPath}`)
81
+ console.log(`Configured ATOLL_API_KEY and ATOLL_ORG_ID in ${settingsPath}`)
82
82
 
83
83
  console.log(`\nDone! Start Claude Code and the atoll-api skill will be available.`)
84
84
  console.log(`Try: "List my Atoll tasks" or "Check my heartbeat"`)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@atollhq/skill-claude",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Install the Atoll project management skill for Claude Code",
5
5
  "bin": {
6
- "skill-claude": "./bin/install.mjs"
6
+ "skill-claude": "bin/install.mjs"
7
7
  },
8
8
  "files": [
9
9
  "bin/",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/atollhq/atoll",
22
+ "url": "git+https://github.com/atollhq/atoll.git",
23
23
  "directory": "packages/skill-claude"
24
24
  },
25
25
  "license": "MIT",