@atollhq/skill-claude 0.4.12 → 0.4.13

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
@@ -18,11 +18,11 @@ Get an agent API key from **Agents** in the Atoll app. Integration keys are stil
18
18
 
19
19
  This does three things:
20
20
 
21
- 1. Copies the skill into `~/.claude/skills/atoll-api/`
21
+ 1. Copies the skill into `~/.claude/skills/atoll/`
22
22
  2. Removes stale Atoll credential/profile env from `~/.claude/settings.json` when profile mode is used
23
23
  3. Creates or updates the named Atoll CLI profile when `--profile` is provided
24
24
 
25
- Restart Claude Code and the `atoll-api` skill is available.
25
+ Restart Claude Code and the `atoll` skill is available.
26
26
 
27
27
  Use `@latest` in the `npx` command so npm does not reuse a stale cached installer. In profile mode, the installer prints its package version and a verification command; run `atoll --profile agent-a agent-context --json` if you need to confirm the profile was created.
28
28
 
package/bin/install.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { existsSync, mkdirSync, cpSync, readFileSync, writeFileSync } from 'node:fs'
3
+ import { existsSync, mkdirSync, cpSync, readFileSync, writeFileSync, rmSync } from 'node:fs'
4
4
  import { join, dirname } from 'node:path'
5
5
  import { homedir } from 'node:os'
6
6
  import { fileURLToPath } from 'node:url'
@@ -121,13 +121,18 @@ function writeAtollProfile() {
121
121
  console.log(`Configured Atoll CLI profile "${args.profile}" in ${configPath}`)
122
122
  }
123
123
 
124
- // 1. Copy skill files to ~/.claude/skills/atoll-api/
124
+ // 1. Copy skill files to ~/.claude/skills/atoll/
125
125
  const skillSrc = join(__dirname, '..', 'skill')
126
- const skillDest = join(homedir(), '.claude', 'skills', 'atoll-api')
126
+ const skillDest = join(homedir(), '.claude', 'skills', 'atoll')
127
+ const legacySkillDest = join(homedir(), '.claude', 'skills', 'atoll-api')
127
128
 
128
129
  mkdirSync(join(skillDest, 'references'), { recursive: true })
129
130
  cpSync(skillSrc, skillDest, { recursive: true })
130
131
  console.log(`Installed skill to ${skillDest}`)
132
+ if (existsSync(legacySkillDest)) {
133
+ rmSync(legacySkillDest, { recursive: true, force: true })
134
+ console.log(`Removed legacy Atoll skill at ${legacySkillDest}`)
135
+ }
131
136
 
132
137
  // 2. Configure ~/.claude/settings.json. Profile mode stores credentials only
133
138
  // in the Atoll CLI profile and removes stale credential/profile env from
@@ -176,5 +181,5 @@ if (args.profile) {
176
181
  console.log(`Verify the profile with: atoll --profile ${args.profile} agent-context --json`)
177
182
  }
178
183
 
179
- console.log(`\nDone! Start Claude Code and the atoll-api skill will be available.`)
184
+ console.log(`\nDone! Start Claude Code and the atoll skill will be available.`)
180
185
  console.log(`Try: "List my Atoll tasks" or "Check my heartbeat"`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-claude",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
4
4
  "description": "Install the Atoll project management skill for Claude Code",
5
5
  "bin": {
6
6
  "skill-claude": "bin/install.mjs"
package/skill/SKILL.md CHANGED
@@ -1,9 +1,9 @@
1
1
  ---
2
- name: atoll-api
3
- description: Interact with the Atoll project management API for managing tasks, projects, goals, KPIs, initiatives, milestones, comments, members, teams, labels, dependencies, automation, and webhooks. Use when making HTTP requests to atollhq.com, working with Atoll issues/tasks, creating or updating projects, managing team workflows, tracking goals and KPIs, or building agent integrations with the Atoll platform. Atoll treats agents as equal team members — not assistants — with their own goals, assigned work, and the ability to self-direct based on business context.
2
+ name: atoll
3
+ description: Interact with Atoll project management through CLI, API, and MCP guidance for tasks, projects, goals, KPIs, initiatives, milestones, comments, members, teams, labels, dependencies, automation, and webhooks. Use when working with Atoll issues/tasks, creating or updating projects, managing team workflows, tracking goals and KPIs, making HTTP requests to atollhq.com, or building agent integrations with the Atoll platform. Atoll treats agents as equal team members — not assistants — with their own goals, assigned work, and the ability to self-direct based on business context.
4
4
  ---
5
5
 
6
- # Atoll API
6
+ # Atoll
7
7
 
8
8
  Base URL: `https://atollhq.com`
9
9
 
@@ -39,7 +39,7 @@ For OpenClaw / ClawHub, prefer skill-scoped config in `~/.openclaw/openclaw.json
39
39
  {
40
40
  skills: {
41
41
  entries: {
42
- "atoll-api": {
42
+ "atoll": {
43
43
  enabled: true,
44
44
  apiKey: "sk_atoll_...",
45
45
  env: {
@@ -201,7 +201,7 @@ CLI JSON conventions:
201
201
 
202
202
  ## KPI HTTP Sync Drafts
203
203
 
204
- When a human asks you to help automate a KPI from a third-party API, use this Atoll skill. If the current agent environment does not have the `atoll-api` skill installed, tell the user to install it before continuing or use the Atoll CLI/MCP tools directly if they are available.
204
+ When a human asks you to help automate a KPI from a third-party API, use this Atoll skill. If the current agent environment does not have the `atoll` skill installed, tell the user to install it before continuing or use the Atoll CLI/MCP tools directly if they are available.
205
205
 
206
206
  Agents may create draft syncs and validate proposed configs only after a human admin has allowlisted the exact destination host in Atoll. Human admins must create or review the draft in Settings > Integrations > KPI syncs, edit supported request/extraction fields and secrets through structured UI, dry-run, publish, disable, or run-now with snapshot writing.
207
207