@atollhq/skill-codex 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
@@ -27,7 +27,7 @@ Get an agent API key from **Agents** in the Atoll app. Integration keys are stil
27
27
 
28
28
  This does six things:
29
29
 
30
- 1. Installs the `atoll-api` skill to `~/.codex/skills/atoll-api/`
30
+ 1. Installs the `atoll` skill to `~/.codex/skills/atoll/`
31
31
  2. Appends (or updates) a neutral `# Atoll Integration` section in `~/.codex/AGENTS.md`
32
32
  3. Copies API reference files to `~/.codex/atoll-references/`
33
33
  4. Creates or updates the named Atoll CLI profile when `--profile` is provided
package/bin/install.mjs CHANGED
@@ -55,7 +55,7 @@ Options:
55
55
  --help Show this help message
56
56
 
57
57
  Installs the Atoll integration for Codex CLI:
58
- - Installs the atoll-api skill to ~/.codex/skills/atoll-api/
58
+ - Installs the atoll skill to ~/.codex/skills/atoll/
59
59
  - Writes neutral AGENTS.md API guidance to ~/.codex/
60
60
  - Creates/updates an Atoll CLI profile when --profile is provided
61
61
  - Optionally writes repo-local AGENTS.md/CLAUDE.md profile guidance with --write-project-instructions
@@ -251,15 +251,20 @@ function writeProjectInstructions() {
251
251
  writeProjectInstructionUpdates(updates)
252
252
  }
253
253
 
254
- // 1. Install the Codex skill to ~/.codex/skills/atoll-api/
254
+ // 1. Install the Codex skill to ~/.codex/skills/atoll/
255
255
  const codexDir = join(homedir(), '.codex')
256
256
  mkdirSync(codexDir, { recursive: true })
257
257
 
258
258
  const skillDir = join(__dirname, '..', 'skill')
259
- const skillDest = join(codexDir, 'skills', 'atoll-api')
259
+ const skillDest = join(codexDir, 'skills', 'atoll')
260
+ const legacySkillDest = join(codexDir, 'skills', 'atoll-api')
260
261
  mkdirSync(skillDest, { recursive: true })
261
262
  cpSync(skillDir, skillDest, { recursive: true })
262
263
  console.log(`Installed Atoll skill to ${skillDest}`)
264
+ if (existsSync(legacySkillDest)) {
265
+ rmSync(legacySkillDest, { recursive: true, force: true })
266
+ console.log(`Removed legacy Atoll skill at ${legacySkillDest}`)
267
+ }
263
268
 
264
269
  // 2. Write AGENTS.md to ~/.codex/
265
270
  const skillMd = readFileSync(join(skillDir, 'SKILL.md'), 'utf-8')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-codex",
3
- "version": "0.4.11",
3
+ "version": "0.4.13",
4
4
  "description": "Install the Atoll project management integration for Codex CLI",
5
5
  "bin": {
6
6
  "skill-codex": "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.