pullfrog 0.1.51 → 0.1.52
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/opencodeShared.d.ts +1 -1
- package/dist/cli.mjs +842 -506
- package/dist/external.d.ts +1 -1
- package/dist/index.js +840 -505
- package/dist/internal/index.d.ts +1 -1
- package/dist/internal.js +130 -38
- package/dist/mcp/shell.d.ts +3 -3
- package/dist/models.d.ts +29 -5
- package/dist/utils/apiKeys.d.ts +14 -9
- package/dist/utils/gitAuth.d.ts +13 -0
- package/dist/utils/modelAccess.d.ts +4 -2
- package/dist/utils/packageManager.d.ts +22 -0
- package/dist/utils/rangeDiff.d.ts +20 -1
- package/dist/utils/runContext.d.ts +1 -0
- package/dist/utils/runEffort.d.ts +15 -0
- package/dist/utils/runErrorRenderer.d.ts +15 -2
- package/dist/utils/secrets.d.ts +5 -0
- package/dist/utils/setup.d.ts +7 -0
- package/dist/utils/statusChecks.d.ts +1 -1
- package/dist/utils/worktree.d.ts +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ jobs:
|
|
|
101
101
|
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
Every PR run posts a `pullfrog` commit-status check: `in_progress` from the moment the run is dispatched, then success when it finishes or failure on error/timeout. It is on by default
|
|
104
|
+
Every PR run posts a `pullfrog` commit-status check: `in_progress` from the moment the run is dispatched, then success when it finishes or failure on error/timeout. It is on by default. To also gate merges on Pullfrog's review verdict, enable the `pullfrog-approval` check, which reports whether Pullfrog would approve the PR. Both are repository settings, configured in the Pullfrog console (Automations → Review PRs), and both are requireable as branch-protection status checks. See [PR reviews → Status checks](https://docs.pullfrog.dev/pr-reviews#status-checks).
|
|
105
105
|
|
|
106
106
|
#### 2. Create `triggers.yml`
|
|
107
107
|
|
|
@@ -55,7 +55,7 @@ export declare function kimiOpenRouterProviderOverrides(): Record<string, {
|
|
|
55
55
|
*
|
|
56
56
|
* Per-subagent `model:` override is driven by the registry in
|
|
57
57
|
* `action/models.ts` via each alias's `subagentModel` field. Currently wired:
|
|
58
|
-
* Anthropic opus → sonnet, OpenAI gpt-pro → gpt and gpt → gpt-terra, Google
|
|
58
|
+
* Anthropic opus → sonnet, OpenAI gpt-sol-pro → gpt-sol and gpt-sol → gpt-terra, Google
|
|
59
59
|
* gemini-pro → gemini-flash. Other providers inherit (no override).
|
|
60
60
|
*/
|
|
61
61
|
export declare function buildReviewerAgentConfig(orchestratorModel: string | undefined): Record<string, unknown>;
|