@atollhq/skill-codex 0.4.11 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atollhq/skill-codex",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
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
@@ -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
 
@@ -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.