pullfrog 0.1.63 → 0.1.64

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/dist/cli.mjs CHANGED
@@ -106004,7 +106004,16 @@ var providers = {
106004
106004
  resolve: "opencode/claude-opus-5",
106005
106005
  effort: ["low", "medium", "high", "xhigh", "max"],
106006
106006
  openRouterResolve: "openrouter/anthropic/claude-opus-5",
106007
- subagentModel: "claude-sonnet"
106007
+ subagentModel: "claude-sonnet",
106008
+ // TEMPORARY — clear this when Zen serves opus again. Zen still LISTS
106009
+ // claude-opus-5 in /zen/v1/models, so the catalog test passes, but the
106010
+ // endpoint answers 503 `Upstream request failed: Endpoint is
106011
+ // unavailable.` (measured 5/5; claude-sonnet-5, claude-opus-4-8,
106012
+ // claude-haiku-4-5 and claude-fable-5 all 200 on the same key). opencode
106013
+ // retries the 503 above the AI SDK emitting no part.updated, so a run
106014
+ // just produces nothing until it is killed — metaideas/init logged six
106015
+ // zero-output failures from 2026-08-23. see wiki/opencode-silent-stall.md
106016
+ fallback: "opencode/claude-sonnet"
106008
106017
  },
106009
106018
  "claude-sonnet": {
106010
106019
  displayName: "Claude Sonnet",
@@ -107358,7 +107367,7 @@ var import_semver = __toESM(require_semver2(), 1);
107358
107367
  // package.json
107359
107368
  var package_default = {
107360
107369
  name: "pullfrog",
107361
- version: "0.1.63",
107370
+ version: "0.1.64",
107362
107371
  type: "module",
107363
107372
  bin: {
107364
107373
  pullfrog: "dist/cli.mjs",
@@ -199303,7 +199312,7 @@ async function runCli4(input) {
199303
199312
  }
199304
199313
 
199305
199314
  // cli.ts
199306
- var VERSION10 = "0.1.63";
199315
+ var VERSION10 = "0.1.64";
199307
199316
  var bin = basename2(process.argv[1] || "");
199308
199317
  var PROG = bin === "pf" || bin === "pullfrog" ? bin : "pullfrog";
199309
199318
  var rawArgs = process.argv.slice(2);
package/dist/index.js CHANGED
@@ -103837,7 +103837,16 @@ var providers = {
103837
103837
  resolve: "opencode/claude-opus-5",
103838
103838
  effort: ["low", "medium", "high", "xhigh", "max"],
103839
103839
  openRouterResolve: "openrouter/anthropic/claude-opus-5",
103840
- subagentModel: "claude-sonnet"
103840
+ subagentModel: "claude-sonnet",
103841
+ // TEMPORARY — clear this when Zen serves opus again. Zen still LISTS
103842
+ // claude-opus-5 in /zen/v1/models, so the catalog test passes, but the
103843
+ // endpoint answers 503 `Upstream request failed: Endpoint is
103844
+ // unavailable.` (measured 5/5; claude-sonnet-5, claude-opus-4-8,
103845
+ // claude-haiku-4-5 and claude-fable-5 all 200 on the same key). opencode
103846
+ // retries the 503 above the AI SDK emitting no part.updated, so a run
103847
+ // just produces nothing until it is killed — metaideas/init logged six
103848
+ // zero-output failures from 2026-08-23. see wiki/opencode-silent-stall.md
103849
+ fallback: "opencode/claude-sonnet"
103841
103850
  },
103842
103851
  "claude-sonnet": {
103843
103852
  displayName: "Claude Sonnet",
@@ -105191,7 +105200,7 @@ var import_semver = __toESM(require_semver2(), 1);
105191
105200
  // package.json
105192
105201
  var package_default = {
105193
105202
  name: "pullfrog",
105194
- version: "0.1.63",
105203
+ version: "0.1.64",
105195
105204
  type: "module",
105196
105205
  bin: {
105197
105206
  pullfrog: "dist/cli.mjs",
package/dist/internal.js CHANGED
@@ -349,7 +349,16 @@ var providers = {
349
349
  resolve: "opencode/claude-opus-5",
350
350
  effort: ["low", "medium", "high", "xhigh", "max"],
351
351
  openRouterResolve: "openrouter/anthropic/claude-opus-5",
352
- subagentModel: "claude-sonnet"
352
+ subagentModel: "claude-sonnet",
353
+ // TEMPORARY — clear this when Zen serves opus again. Zen still LISTS
354
+ // claude-opus-5 in /zen/v1/models, so the catalog test passes, but the
355
+ // endpoint answers 503 `Upstream request failed: Endpoint is
356
+ // unavailable.` (measured 5/5; claude-sonnet-5, claude-opus-4-8,
357
+ // claude-haiku-4-5 and claude-fable-5 all 200 on the same key). opencode
358
+ // retries the 503 above the AI SDK emitting no part.updated, so a run
359
+ // just produces nothing until it is killed — metaideas/init logged six
360
+ // zero-output failures from 2026-08-23. see wiki/opencode-silent-stall.md
361
+ fallback: "opencode/claude-sonnet"
353
362
  },
354
363
  "claude-sonnet": {
355
364
  displayName: "Claude Sonnet",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.1.63",
3
+ "version": "0.1.64",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",