claude-overnight 1.16.11 → 1.16.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.
Files changed (2) hide show
  1. package/README.md +32 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,13 +8,38 @@ Isolated by default. Every agent runs in its own git worktree on its own branch,
8
8
 
9
9
  Different shape from hosted agent harnesses like [Claude Managed Agents](https://platform.claude.com/docs/en/managed-agents/overview): instead of one agent in one cloud container billed separately, you get many parallel sessions on your own machine, in your real repo, against your own Max plan (or API key). Works with Claude Opus, Sonnet, and Haiku — or pair an Anthropic planner with a cheaper executor on Qwen, OpenRouter, or any Anthropic-compatible endpoint.
10
10
 
11
+ ## Run on Qwen 3.6 Plus
12
+
13
+ Hit your Claude Max plan limits? Running on a tight budget? Qwen 3.6 Plus via Alibaba Cloud's DashScope gateway is a drop-in executor that speaks the Anthropic Messages API — same client, same flow, pennies per run.
14
+
15
+ 1. **Get an API key.** Sign up at [Alibaba Cloud](https://account.alibabacloud.com/login/login.htm?oauth_callback=https%3A%2F%2Fmodelstudio.console.alibabacloud.com%2Fap-southeast-1%3Ftab%3Ddashboard%23%2Fapi-key&clearRedirectCookie=1) — the link takes you straight to the API key dashboard.
16
+ 2. **Configure the provider.** Run `claude-overnight`, choose `Other…` on the executor step, and fill in:
17
+
18
+ | Field | Value |
19
+ |---|---|
20
+ | Name | `Qwen 3.6 Plus` |
21
+ | Base URL | `https://dashscope-intl.aliyuncs.com/apps/anthropic` |
22
+ | Model id | `qwen3.6-plus` |
23
+ | API key | your DashScope key |
24
+
25
+ 3. That's it. Planner runs on Sonnet (or Opus), executor runs on Qwen.
26
+
27
+ Or set it via env directly:
28
+
29
+ ```bash
30
+ export ANTHROPIC_BASE_URL="https://dashscope-intl.aliyuncs.com/apps/anthropic"
31
+ export ANTHROPIC_API_KEY="sk-..."
32
+ export ANTHROPIC_MODEL="qwen3.6-plus"
33
+ claude-overnight
34
+ ```
35
+
11
36
  ## Install
12
37
 
13
38
  ```bash
14
39
  npm install -g claude-overnight
15
40
  ```
16
41
 
17
- Requires Node.js ≥ 20 and Claude authentication (`claude auth login` or `ANTHROPIC_API_KEY`).
42
+ Requires Node.js ≥ 20 and Claude authentication (`claude auth login` or `ANTHROPIC_API_KEY`). No Anthropic plan or key? See **Run on Qwen 3.6 Plus** above — a cheap, drop-in alternative.
18
43
 
19
44
  ## Quick start
20
45
 
@@ -35,7 +60,7 @@ claude-overnight
35
60
  ● Opus — Opus 4.6 · Most capable
36
61
  ○ Sonnet — Sonnet 4.6 · Best for everyday tasks
37
62
 
38
- ⑤ Executor model (what runs the tasks — Qwen/OpenRouter/etc via Other…):
63
+ ⑤ Executor model (what runs the tasks — Qwen 3.6 Plus / OpenRouter / etc via Other…):
39
64
  ● Sonnet — Sonnet 4.6 · Best for everyday tasks
40
65
  ○ Opus — Opus 4.6 · Most capable
41
66
  ○ Other… · custom OpenAI/Anthropic-compatible endpoint
@@ -232,14 +257,14 @@ Planner and executor are picked separately — pair Opus-on-Anthropic for the pl
232
257
  From the interactive picker, choose `Other…` on the planner or executor step:
233
258
 
234
259
  ```
235
- ⑤ Executor model (what runs the tasks — Qwen/OpenRouter/etc via Other…):
260
+ ⑤ Executor model (what runs the tasks — Qwen 3.6 Plus / OpenRouter / etc via Other…):
236
261
  ○ Sonnet
237
262
  ○ Opus
238
263
  ● Other…
239
264
 
240
- Name: Qwen Coder
241
- Base URL: https://dashscope-intl.aliyuncs.com/api/v2/apps/claude-code-proxy
242
- Model id: qwen3-coder-plus
265
+ Name: Qwen 3.6 Plus
266
+ Base URL: https://dashscope-intl.aliyuncs.com/apps/anthropic
267
+ Model id: qwen3.6-plus
243
268
  API key source:
244
269
  ● Paste key now · stored plaintext in ~/.claude/claude-overnight/providers.json (0600)
245
270
  ○ Read from env var · nothing written to disk
@@ -253,7 +278,7 @@ Saved providers live user-level at `~/.claude/claude-overnight/providers.json` (
253
278
 
254
279
  **Resume.** Provider ids are persisted in `run.json` and rehydrated on resume. If you deleted a provider between runs, resume refuses to start and tells you exactly which id is missing.
255
280
 
256
- **Non-interactive / CI.** `claude-overnight --model=qwen3-coder-plus` auto-resolves the model id to a saved provider — no separate `--provider` flag.
281
+ **Non-interactive / CI.** `claude-overnight --model=qwen3.6-plus` auto-resolves the model id to a saved provider — no separate `--provider` flag.
257
282
 
258
283
  ## Spend caps and usage controls
259
284
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-overnight",
3
- "version": "1.16.11",
3
+ "version": "1.16.12",
4
4
  "description": "Background lane for your Claude Max plan. Parallel Claude Agent SDK sessions in git worktrees with a usage cap that reserves headroom for your interactive Claude Code. Crash-safe resume. Opus/Sonnet/Haiku + Qwen/OpenRouter.",
5
5
  "type": "module",
6
6
  "bin": {