pullfrog 0.1.13 → 0.1.15
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/README.md +1 -1
- package/dist/agents/gateServer.d.ts +6 -0
- package/dist/agents/opencodeShared.d.ts +1 -1
- package/dist/agents/postRun.d.ts +13 -0
- package/dist/cli.mjs +63846 -59777
- package/dist/index.js +63733 -59682
- package/dist/internal/index.d.ts +2 -0
- package/dist/internal.js +105 -10
- package/dist/toolState.d.ts +1 -1
- package/dist/utils/apiKeys.d.ts +11 -2
- package/dist/utils/byokFallback.d.ts +14 -25
- package/dist/utils/codexHome.d.ts +17 -4
- package/dist/utils/codexOAuth.d.ts +60 -0
- package/dist/utils/gitAuth.d.ts +15 -6
- package/dist/utils/gitAuthServer.d.ts +9 -3
- package/dist/utils/lifecycle.d.ts +12 -0
- package/dist/utils/openCodeModels.d.ts +11 -0
- package/dist/utils/packageManager.d.ts +32 -0
- package/dist/utils/providerErrors.d.ts +18 -0
- package/dist/utils/runErrorRenderer.d.ts +23 -8
- package/dist/utils/runLifecycle.d.ts +7 -0
- package/package.json +2 -1
- package/dist/agents/opencodePlugin.d.ts +0 -60
package/README.md
CHANGED
|
@@ -37,4 +37,4 @@ export declare function buildReviewerAgentConfig(orchestratorModel: string | und
|
|
|
37
37
|
export declare function installOpencodeCli(params: {
|
|
38
38
|
binPath: string;
|
|
39
39
|
}): Promise<string>;
|
|
40
|
-
export declare function autoSelectModel(
|
|
40
|
+
export declare function autoSelectModel(): string | undefined;
|
package/dist/agents/postRun.d.ts
CHANGED
|
@@ -54,6 +54,19 @@ export declare function collectPostRunIssues(ctx: AgentRunContext, options?: {
|
|
|
54
54
|
skipSummaryStale?: boolean;
|
|
55
55
|
}): Promise<PostRunIssues>;
|
|
56
56
|
export declare function buildPostRunPrompt(issues: PostRunIssues): string;
|
|
57
|
+
/**
|
|
58
|
+
* terminal-only post-run finalize: re-checks the hard-fail gates after the
|
|
59
|
+
* agent has exited and converts a successful result to a hard-fail when
|
|
60
|
+
* `stopHook` or `unsubmittedReview` is still failing. used by harnesses
|
|
61
|
+
* that inject follow-up turns via a mechanism other than the resume
|
|
62
|
+
* callback (e.g. the Claude managed Stop hook + gate server). soft gates
|
|
63
|
+
* (`dirtyTree`, `summaryStale`) are intentionally not re-checked here —
|
|
64
|
+
* they never flip a successful run to failed.
|
|
65
|
+
*/
|
|
66
|
+
export declare function finalizeAgentResult<R extends AgentResult>(params: {
|
|
67
|
+
ctx: AgentRunContext;
|
|
68
|
+
result: R;
|
|
69
|
+
}): Promise<R>;
|
|
57
70
|
export declare function shouldRunReflection(mode: string | undefined): boolean;
|
|
58
71
|
/**
|
|
59
72
|
* prompt for a dedicated post-run reflection turn nudging the agent to edit
|