Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .agents/skills/ship/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,14 @@ scheduler re-invokes `/ship $ARGUMENTS` later. Use it at the end of each
iteration with the playbook cadence (270s just-pushed / 720s CI or bots running /
1800s waiting on human review).

**ADE Work chat (Claude Agent SDK):** `ScheduleWakeup` is **NOT honored** — the
host only advances on a fresh user message, and `run_in_background` task
notifications flush on the next user turn, not autonomously. So do NOT pretend to
self-resume. Either:
**ADE Work chat (Claude Agent SDK):** Work confidently inside the current turn,
but treat `ScheduleWakeup` as unavailable in this harness. It does not start a
later turn by itself, and `run_in_background` notifications are not a reliable
self-resume signal. Either:
- Poll synchronously inside the current turn (one bounded foreground
`until ... ; do sleep N; done`), then fix/merge/exit; or
- Stop the turn cleanly, write the state file with `status: running`, and tell
the user to re-ping `/ship` when they want the next iteration.

Do not start a background poller and claim it will wake you — it won't.
the user exactly when to re-ping `/ship` for the next iteration.

---

Expand Down
142 changes: 71 additions & 71 deletions apps/ade-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/ade-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.170",
"@anthropic-ai/claude-agent-sdk": "^0.3.186",
"@anthropic-ai/sdk": "^0.103.0",
"@cursor/sdk": "^1.0.13",
"@factory/droid-sdk": "^0.2.0",
Expand Down
Loading
Loading