pullfrog 0.1.40 → 0.1.42

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/internal.js CHANGED
@@ -27,8 +27,8 @@ var providers = {
27
27
  },
28
28
  "claude-opus": {
29
29
  displayName: "Claude Opus",
30
- resolve: "anthropic/claude-opus-4-8",
31
- openRouterResolve: "openrouter/anthropic/claude-opus-4.8",
30
+ resolve: "anthropic/claude-opus-5",
31
+ openRouterResolve: "openrouter/anthropic/claude-opus-5",
32
32
  preferred: true,
33
33
  subagentModel: "claude-sonnet"
34
34
  },
@@ -226,8 +226,8 @@ var providers = {
226
226
  },
227
227
  "claude-opus": {
228
228
  displayName: "Claude Opus",
229
- resolve: "opencode/claude-opus-4-8",
230
- openRouterResolve: "openrouter/anthropic/claude-opus-4.8",
229
+ resolve: "opencode/claude-opus-5",
230
+ openRouterResolve: "openrouter/anthropic/claude-opus-5",
231
231
  subagentModel: "claude-sonnet"
232
232
  },
233
233
  "claude-sonnet": {
@@ -1,3 +1,12 @@
1
+ /**
2
+ * Why the last `opencode models` came back empty, in opencode's own words.
3
+ *
4
+ * An unloadable repo config (`opencode.json`, `.opencode/**`) is the common cause
5
+ * and is fatal — opencode's schema is strict, so every later invocation fails the
6
+ * same way. Without this the empty set reaches `validateAgentApiKey` and the run
7
+ * dies telling the user to go add provider secrets, which is a false lead.
8
+ */
9
+ export declare function getModelsFailure(): string | undefined;
1
10
  /** Snapshot the set of models OpenCode can serve from the current env, BEFORE
2
11
  * Pullfrog-stored credentials are merged in. Call once early in `main.ts`. */
3
12
  export declare function captureBaselineModels(cliPath: string): void;
@@ -32,6 +32,7 @@ export declare const Inputs: import("arktype/internal/variants/object.ts").Objec
32
32
  push?: "disabled" | "enabled" | "restricted" | undefined;
33
33
  shell?: "disabled" | "enabled" | "restricted" | undefined;
34
34
  status_checks?: "disabled" | "enabled" | undefined;
35
+ progress_comments?: "disabled" | "enabled" | undefined;
35
36
  cwd?: string | undefined;
36
37
  output_schema?: string | undefined;
37
38
  }, {}>;
@@ -71,6 +72,7 @@ export declare function resolvePayload(resolvedPromptInput: ResolvedPromptInput,
71
72
  push: import("../external.ts").PushPermission;
72
73
  shell: import("../external.ts").ShellPermission;
73
74
  statusChecks: boolean;
75
+ progressComments: boolean;
74
76
  proxyModel: string | undefined;
75
77
  };
76
78
  export type ResolvedPayload = ReturnType<typeof resolvePayload>;
@@ -33,6 +33,7 @@ export interface RepoSettings {
33
33
  prApproveEnabled: boolean;
34
34
  autoMergeEnabled: boolean;
35
35
  signedCommits: boolean;
36
+ progressComments: boolean;
36
37
  modeInstructions: Record<string, string>;
37
38
  learnings: string | null;
38
39
  learningsHeadings: LearningsHeading[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.1.40",
3
+ "version": "0.1.42",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",
@@ -31,7 +31,7 @@
31
31
  "@ark/util": "0.56.0",
32
32
  "@clack/prompts": "^1.2.0",
33
33
  "@modelcontextprotocol/sdk": "^1.26.0",
34
- "@opencode-ai/sdk": "1.16.2",
34
+ "@opencode-ai/sdk": "1.18.5",
35
35
  "@octokit/plugin-throttling": "^11.0.3",
36
36
  "@octokit/rest": "^22.0.0",
37
37
  "@octokit/webhooks-types": "^7.6.1",
@@ -54,7 +54,7 @@
54
54
  "husky": "^9.0.0",
55
55
  "lru-cache": "^11.0.0",
56
56
  "object-hash": "^3.0.0",
57
- "opencode-ai": "1.16.2",
57
+ "opencode-ai": "1.18.5",
58
58
  "package-manager-detector": "^1.6.0",
59
59
  "picocolors": "^1.1.1",
60
60
  "semver": "^7.7.3",