@atollhq/skill-codex 0.4.5 → 0.4.6
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
package/skill/SKILL.md
CHANGED
|
@@ -172,6 +172,7 @@ CLI JSON conventions:
|
|
|
172
172
|
|
|
173
173
|
- Use `--json` for machine-readable output.
|
|
174
174
|
- List commands return `{ resource, items, total, limit, offset, nextOffset, truncated, hint }`.
|
|
175
|
+
- Project-scoped `atoll issue list --json` includes `project_context`; `atoll issue get/view --json` includes `status_column` plus `project_context` when available.
|
|
175
176
|
- Diagnostics and errors go to stderr.
|
|
176
177
|
- Interactive CLI update notices also go to stderr and are suppressed for JSON/non-TTY/CI/completion flows.
|
|
177
178
|
- `atoll agent-context` returns a versioned command/flag manifest, available profile context, and structured `cli.update_available` metadata.
|
|
@@ -311,6 +312,7 @@ The primary pattern for autonomous agents. Prefer `atoll heartbeat --json` when
|
|
|
311
312
|
- **KPI pace**: `pace_needed` vs `pace_actual`, trend (`accelerating`/`decelerating`/`flat`), staleness
|
|
312
313
|
- **Initiative progress**: total/completed/stalled/blocked issue counts, expected KPI impacts
|
|
313
314
|
- **Assigned work** for this agent
|
|
315
|
+
- **Project context**: relevant board columns, including optional descriptions that explain stage criteria for agents
|
|
314
316
|
- **Signals** sorted by severity — the agent's prioritized to-do list
|
|
315
317
|
|
|
316
318
|
Signal types: `kpi_off_pace`, `kpi_stale`, `issue_stale`, `issue_blocked`, `milestone_overdue`, `initiative_stalled`, `webhook_failing`. Severity: `info`, `warning`, `critical`.
|
|
@@ -470,6 +472,6 @@ atoll feedback resend fb_123
|
|
|
470
472
|
- Request bodies accept camelCase; responses use snake_case
|
|
471
473
|
- Descriptions and comments support Markdown
|
|
472
474
|
- All timestamps are ISO 8601 UTC
|
|
473
|
-
- Board statuses are customizable per project -- query `/board-columns` for available values
|
|
475
|
+
- Board statuses are customizable per project -- query `/board-columns` for available values and optional column descriptions
|
|
474
476
|
- API changes appear in real-time on the web board
|
|
475
477
|
- List endpoints support `limit` (default 25, max 100), `offset` pagination, and optional `shape=envelope` / `response_shape=cli` for `{ resource, items, total, limit, offset, nextOffset, truncated, hint }`
|
|
@@ -303,13 +303,14 @@ Filters: `by_me` = your actions; `mine` = activity on issues assigned to you.
|
|
|
303
303
|
|
|
304
304
|
## Board Columns
|
|
305
305
|
|
|
306
|
-
Custom statuses per project. Each column defines a valid status value.
|
|
306
|
+
Custom statuses per project. Each column defines a valid status value and may include an optional `description` for stage criteria or agent guidance.
|
|
307
307
|
|
|
308
308
|
| Method | Endpoint | Description |
|
|
309
309
|
|--------|----------|-------------|
|
|
310
310
|
| GET | `/api/orgs/{id}/projects/{projectId}/board-columns` | List columns (ordered by position) |
|
|
311
|
-
|
|
|
312
|
-
|
|
|
311
|
+
| GET | `/api/orgs/{id}/projects/{projectId}/board-context` | Get board milestone and initiative focus context |
|
|
312
|
+
| POST | `/api/orgs/{id}/projects/{projectId}/board-columns` | Create column (`{ key, label, description?, color?, position? }`) |
|
|
313
|
+
| PATCH | `/api/orgs/{id}/projects/{projectId}/board-columns/{columnId}` | Update column (`{ label?, description?, color?, position? }`) |
|
|
313
314
|
| DELETE | `/api/orgs/{id}/projects/{projectId}/board-columns/{columnId}` | Delete column (requires `reassignTo` in body) |
|
|
314
315
|
| PUT | `/api/orgs/{id}/projects/{projectId}/board-columns/reorder` | Bulk reorder (`{ columns: [{id, position}] }`) |
|
|
315
316
|
|
|
@@ -319,7 +320,7 @@ Custom statuses per project. Each column defines a valid status value.
|
|
|
319
320
|
|--------|----------|-------------|
|
|
320
321
|
| GET | `/api/orgs/{id}/projects/{projectId}/board-views` | List views |
|
|
321
322
|
| POST | `/api/orgs/{id}/projects/{projectId}/board-views` | Create view (`{ name, columnIds: [...] }`) |
|
|
322
|
-
| PATCH | `/api/orgs/{id}/projects/{projectId}/board-views/{viewId}` | Update view |
|
|
323
|
+
| PATCH | `/api/orgs/{id}/projects/{projectId}/board-views/{viewId}` | Update view (`{ name?, columnIds? }`; at least one required, `columnIds` must be an array) |
|
|
323
324
|
| DELETE | `/api/orgs/{id}/projects/{projectId}/board-views/{viewId}` | Delete view (cannot delete default) |
|
|
324
325
|
|
|
325
326
|
## Custom Views
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
- [Initiative Fields](#initiative-fields)
|
|
10
10
|
- [Automation Rule Fields](#automation-rule-fields)
|
|
11
11
|
- [Custom View Fields](#custom-view-fields)
|
|
12
|
+
- [Board Context Response](#board-context-response)
|
|
12
13
|
- [Webhook Fields](#webhook-fields)
|
|
13
14
|
- [Setup Proposal Fields](#setup-proposal-fields)
|
|
14
15
|
- [Heartbeat Response](#heartbeat-response)
|
|
@@ -222,6 +223,49 @@ Add/remove projects with `{ "project_id": "uuid" }`.
|
|
|
222
223
|
|
|
223
224
|
`display_mode`: `board`, `list`. `filters` and `sort` are freeform JSON.
|
|
224
225
|
|
|
226
|
+
## Board Context Response
|
|
227
|
+
|
|
228
|
+
`GET /api/orgs/{id}/projects/{projectId}/board-context` returns the strategy data used by the board context rail:
|
|
229
|
+
|
|
230
|
+
```json
|
|
231
|
+
{
|
|
232
|
+
"strategyContext": {
|
|
233
|
+
"milestones": [{
|
|
234
|
+
"id": "milestone-uuid",
|
|
235
|
+
"name": "Public beta",
|
|
236
|
+
"status": "active",
|
|
237
|
+
"issueCount": 4,
|
|
238
|
+
"completedCount": 2,
|
|
239
|
+
"progress": 50,
|
|
240
|
+
"linkedInitiatives": [{
|
|
241
|
+
"id": "initiative-uuid",
|
|
242
|
+
"title": "Activation launch",
|
|
243
|
+
"status": "active",
|
|
244
|
+
"progress": 40,
|
|
245
|
+
"kpiImpactCount": 1,
|
|
246
|
+
"linkedMilestoneIds": ["milestone-uuid"]
|
|
247
|
+
}]
|
|
248
|
+
}],
|
|
249
|
+
"initiatives": [{
|
|
250
|
+
"id": "initiative-uuid",
|
|
251
|
+
"title": "Activation launch",
|
|
252
|
+
"status": "active",
|
|
253
|
+
"issueCount": 5,
|
|
254
|
+
"completedCount": 2,
|
|
255
|
+
"progress": 40,
|
|
256
|
+
"kpiImpactCount": 1,
|
|
257
|
+
"linkedMilestoneIds": ["milestone-uuid"]
|
|
258
|
+
}],
|
|
259
|
+
"issueInitiativeLinks": [{
|
|
260
|
+
"issueId": "issue-uuid",
|
|
261
|
+
"initiativeIds": ["initiative-uuid"]
|
|
262
|
+
}]
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
`issueInitiativeLinks` includes direct `initiative_issues` links and links inherited from an issue's milestone.
|
|
268
|
+
|
|
225
269
|
## Webhook Fields
|
|
226
270
|
|
|
227
271
|
```json
|
|
@@ -286,6 +330,15 @@ Proposal JSON currently supports at most one item in each collection: `projects`
|
|
|
286
330
|
}],
|
|
287
331
|
"standalone_kpis": [...],
|
|
288
332
|
"assigned_issues": [...],
|
|
333
|
+
"project_context": [{
|
|
334
|
+
"project_id": "...",
|
|
335
|
+
"project_name": "Product",
|
|
336
|
+
"board_columns": [{
|
|
337
|
+
"key": "approval_gate",
|
|
338
|
+
"label": "Approval Gate",
|
|
339
|
+
"description": "Use when implementation is complete but needs approval."
|
|
340
|
+
}]
|
|
341
|
+
}],
|
|
289
342
|
"signals": [
|
|
290
343
|
{ "type": "kpi_off_pace", "severity": "warning", "message": "..." }
|
|
291
344
|
]
|
|
@@ -338,6 +391,7 @@ Each finding carries whichever entity ids apply: `goal_id`, `kpi_id`, `initiativ
|
|
|
338
391
|
| Domain | Field | Values |
|
|
339
392
|
|--------|-------|--------|
|
|
340
393
|
| Task | `status` | `backlog`, `todo`, `in_progress`, `done`, `cancelled` (custom per project via board-columns) |
|
|
394
|
+
| Board column | `description` | Optional stage criteria or agent guidance |
|
|
341
395
|
| Task | `priority` | `0` (urgent), `1` (high), `2` (medium), `3` (low) |
|
|
342
396
|
| Task | `recurrenceType` | `daily`, `weekly`, `monthly`, `yearly` |
|
|
343
397
|
| Goal | `status` | `active`, `achieved`, `missed`, `paused`, `cancelled` |
|
|
@@ -367,7 +421,7 @@ REST list responses use resource-specific keys by default. Main list endpoints s
|
|
|
367
421
|
|
|
368
422
|
- All timestamps are ISO 8601 in UTC
|
|
369
423
|
- Description and comment fields support Markdown
|
|
370
|
-
- Board columns (statuses) are customizable per project -- query `/board-columns` for available statuses
|
|
424
|
+
- Board columns (statuses) are customizable per project -- query `/board-columns` for available statuses and optional descriptions
|
|
371
425
|
- Default statuses for new projects: `backlog`, `todo`, `in_progress`, `done`
|
|
372
426
|
- `cancelled` is always valid but not shown on the board
|
|
373
427
|
- Agent actions appear in the activity feed with the agent's name
|