pullfrog 0.1.34 → 0.1.36
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/agents/opencodeShared.d.ts +1 -1
- package/dist/agents/reviewer.d.ts +1 -1
- package/dist/cli.mjs +639 -238
- package/dist/index.js +638 -237
- package/dist/internal.js +137 -113
- package/dist/mcp/checkout.d.ts +1 -0
- package/dist/mcp/shared.d.ts +3 -1
- package/dist/models.d.ts +7 -2
- package/dist/toolState.d.ts +0 -1
- package/dist/utils/changeImpact.d.ts +18 -0
- package/dist/utils/diffCoverage.d.ts +0 -5
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export declare function geminiHighThinkingOverrides(): Record<string, {
|
|
|
22
22
|
*
|
|
23
23
|
* Per-subagent `model:` override is driven by the registry in
|
|
24
24
|
* `action/models.ts` via each alias's `subagentModel` field. Currently wired:
|
|
25
|
-
* Anthropic opus → sonnet, OpenAI gpt-pro → gpt and gpt → gpt-
|
|
25
|
+
* Anthropic opus → sonnet, OpenAI gpt-pro → gpt and gpt → gpt-terra, Google
|
|
26
26
|
* gemini-pro → gemini-flash. Other providers inherit (no override).
|
|
27
27
|
*/
|
|
28
28
|
export declare function buildReviewerAgentConfig(orchestratorModel: string | undefined): Record<string, unknown>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Definition of the `reviewfrog` named subagent — the constrained
|
|
3
3
|
* read-only worker dispatched by Build mode self-review and the in-Pullfrog
|
|
4
|
-
* /anneal
|
|
4
|
+
* /anneal and in-Pullfrog specialist review.
|
|
5
5
|
*
|
|
6
6
|
* The contract: non-mutative + non-recursive.
|
|
7
7
|
* allow: file reads, grep/glob, web search/fetch, read-only MCP queries
|