@atollhq/skill-claude 0.4.11 → 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.11",
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: {
@@ -111,6 +111,7 @@ atoll agent-context
111
111
  # List tasks
112
112
  atoll issue list --json
113
113
  atoll issue list --status todo --priority 1 --limit 25
114
+ atoll issue list --scope blocked --initiative initiative-uuid --order-by due_date --order-dir asc
114
115
 
115
116
  # View a task
116
117
  atoll issue get ATOLL-42
@@ -118,6 +119,7 @@ atoll issue view ATOLL-42 # alias kept for humans
118
119
 
119
120
  # Create a task
120
121
  atoll issue create --title "Fix login bug" --status todo --priority 1
122
+ atoll issue create --title "Weekly status review" --due-date 2026-07-06 --recurrence weekly
121
123
  atoll issue upsert --match-title --project <project-id> --title "Fix login bug" --status todo
122
124
  atoll issue bulk-create --file ./issues.json --continue-on-error
123
125
 
@@ -134,6 +136,17 @@ atoll issue assign ATOLL-42 --to self
134
136
  # Comments
135
137
  atoll comment add ATOLL-42 --body "Working on this now"
136
138
 
139
+ # Labels, notifications, subtasks, activity
140
+ atoll label list
141
+ atoll label add ATOLL-42 bug
142
+ atoll notification list --json
143
+ atoll notification ack notification-uuid
144
+ atoll subtask create ATOLL-42 --title "Verify recurrence"
145
+ atoll activity issue ATOLL-42
146
+
147
+ # Read-only API fallback for uncommon inspection gaps
148
+ atoll api get /api/orgs/$ATOLL_ORG_ID/labels --json
149
+
137
150
  # Dependencies
138
151
  atoll dependency bulk-add --file ./dependencies.json --continue-on-error
139
152
 
@@ -188,7 +201,7 @@ CLI JSON conventions:
188
201
 
189
202
  ## KPI HTTP Sync Drafts
190
203
 
191
- 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.
192
205
 
193
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.
194
207
 
@@ -296,7 +309,11 @@ Keep it practical. I want the smallest strategy layer that would help an AI agen
296
309
 
297
310
  ## Quick Start — API (for advanced use)
298
311
 
299
- All CLI commands map to REST endpoints. Use the API directly when the CLI doesn't cover a specific operation.
312
+ All CLI commands map to REST endpoints. Use `atoll api get` for GET-only inspection gaps when a typed command does not exist yet. The CLI blocks `/api/internal/*`, billing, and KPI sync admin routes because some GET endpoints can run jobs, synchronize external state, or require human-admin review. Use direct API calls for writes only when the CLI does not cover a specific operation and the workflow is not human-admin-gated.
313
+
314
+ ```bash
315
+ atoll api get "/api/orgs/$ATOLL_ORG_ID/issues?status=todo" --json
316
+ ```
300
317
 
301
318
  ```bash
302
319
  # Prereq: both env vars exported (see Authentication above)
@@ -43,7 +43,7 @@ Request bodies accept **camelCase** (`assigneeId`, `projectId`). Snake_case also
43
43
  }
44
44
  ```
45
45
 
46
- All fields work on both POST (create) and PATCH (update).
46
+ Most fields work on both POST (create) and PATCH (update). `labelIds` is accepted on task create and bulk create. For existing tasks, use the label endpoints or `atoll label add/remove`.
47
47
 
48
48
  - **Multiple assignees**: Use `assigneeIds` (array). Legacy `assigneeId` (single) still works. Responses include `assignees` array with `id`, `display_name`, `type`, `avatar_url`.
49
49
  - **Start date**: Sets when work begins. Combined with `dueDate`, defines the Gantt time span.