@penclipai/adapter-codex-local 2026.414.2 → 2026.419.0-canary.0
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": "@penclipai/adapter-codex-local",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.419.0-canary.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://github.com/penclipai/paperclip-cn",
|
|
6
6
|
"bugs": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"skills"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@penclipai/adapter-utils": "2026.
|
|
41
|
+
"@penclipai/adapter-utils": "2026.419.0-canary.0",
|
|
42
42
|
"picocolors": "^1.1.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
@@ -131,7 +131,24 @@ Done
|
|
|
131
131
|
MD
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
-
Status values: `backlog`, `todo`, `in_progress`, `in_review`, `done`, `blocked`, `cancelled`. Priority values: `critical`, `high`, `medium`, `low`. Other updatable fields: `title`, `description`, `priority`, `assigneeAgentId`, `projectId`, `goalId`, `parentId`, `billingCode`, `blockedByIssueIds`.
|
|
134
|
+
Status values: `backlog`, `todo`, `in_progress`, `in_review`, `done`, `blocked`, `cancelled`. Use the quick guide below when choosing one. Priority values: `critical`, `high`, `medium`, `low`. Other updatable fields: `title`, `description`, `priority`, `assigneeAgentId`, `projectId`, `goalId`, `parentId`, `billingCode`, `blockedByIssueIds`.
|
|
135
|
+
|
|
136
|
+
### Status Quick Guide
|
|
137
|
+
|
|
138
|
+
- `backlog` — not ready to execute yet. Use for parked or unscheduled work, not for something you are about to start this heartbeat.
|
|
139
|
+
- `todo` — ready and actionable, but not actively checked out yet. Use for newly assigned work or work that is ready to resume once someone picks it up.
|
|
140
|
+
- `in_progress` — actively owned work. For agents this means live execution-backed work; enter it by checkout, not by manually PATCHing the status.
|
|
141
|
+
- `in_review` — execution is paused pending reviewer, approver, or board/user feedback. Use this when handing work off for review, not as a generic synonym for done.
|
|
142
|
+
- `blocked` — cannot proceed until something specific changes. Always say what the blocker is, who must act, and use `blockedByIssueIds` when another issue is the blocker.
|
|
143
|
+
- `done` — the requested work is complete and no follow-up action remains on this issue.
|
|
144
|
+
- `cancelled` — the work is intentionally abandoned and should not be resumed.
|
|
145
|
+
|
|
146
|
+
Practical rules:
|
|
147
|
+
|
|
148
|
+
- For agent-assigned work, prefer `todo` until you actually checkout. Do not PATCH an issue into `in_progress` just to signal intent.
|
|
149
|
+
- If you are waiting on another ticket, use `blocked`, not `in_progress`, and set `blockedByIssueIds` instead of relying on `parentId` or a free-text comment alone.
|
|
150
|
+
- If a human asks to review or take the task back, usually reassign to that user and set `in_review`.
|
|
151
|
+
- `parentId` is structural only. It does not mean the parent or child is blocked unless `blockedByIssueIds` says so explicitly.
|
|
135
152
|
|
|
136
153
|
**Step 9 — Delegate if needed.** Create subtasks with `POST /api/companies/{companyId}/issues`. Always set `parentId` and `goalId`. When a follow-up issue needs to stay on the same code change but is not a true child task, set `inheritExecutionWorkspaceFromIssueId` to the source issue. Set `billingCode` for cross-team work.
|
|
137
154
|
|
|
@@ -665,10 +665,18 @@ backlog -> todo -> in_progress -> in_review -> done
|
|
|
665
665
|
|
|
666
666
|
Terminal states: `done`, `cancelled`
|
|
667
667
|
|
|
668
|
+
- `backlog` = not ready to execute yet.
|
|
669
|
+
- `todo` = ready to execute, but not actively checked out yet.
|
|
670
|
+
- `in_progress` = actively owned work. For agents, this should correspond to a live execution path and should be entered via checkout.
|
|
671
|
+
- `in_review` = waiting on review or approval action, not active execution.
|
|
672
|
+
- `blocked` = cannot proceed until a specific blocker changes; use `blockedByIssueIds` when another issue is the blocker.
|
|
673
|
+
- `done` = completed.
|
|
674
|
+
- `cancelled` = intentionally abandoned.
|
|
668
675
|
- `in_progress` requires an assignee (use checkout).
|
|
669
676
|
- `started_at` is auto-set on `in_progress`.
|
|
670
677
|
- `completed_at` is auto-set on `done`.
|
|
671
678
|
- One assignee per task at a time.
|
|
679
|
+
- `parentId` is structural and does not create a blocker relationship by itself.
|
|
672
680
|
|
|
673
681
|
---
|
|
674
682
|
|