pullfrog 0.1.53 → 0.1.55
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/claudePretoolGate.d.ts +4 -4
- package/dist/cli.mjs +59163 -30518
- package/dist/external.d.ts +1 -1
- package/dist/index.js +54378 -25964
- package/dist/internal/index.d.ts +3 -1
- package/dist/internal.js +132 -13
- package/dist/mcp/git.d.ts +27 -0
- package/dist/mcp/review.d.ts +6 -6
- package/dist/mcp/reviewComments.d.ts +5 -1
- package/dist/models.d.ts +21 -3
- package/dist/toolState.d.ts +7 -0
- package/dist/utils/apiKeys.d.ts +45 -0
- package/dist/utils/buildPullfrogFooter.d.ts +4 -4
- package/dist/utils/claudeSubscription.d.ts +9 -0
- package/dist/utils/codexOAuth.d.ts +11 -0
- package/dist/utils/credentialCheck.d.ts +21 -0
- package/dist/utils/credentialFallback.d.ts +42 -0
- package/dist/utils/github.d.ts +13 -0
- package/dist/utils/normalizeEnv.d.ts +2 -0
- package/dist/utils/providerErrors.d.ts +43 -0
- package/dist/utils/proxy.d.ts +1 -1
- package/dist/utils/runContext.d.ts +10 -0
- package/dist/utils/runContextData.d.ts +3 -0
- package/dist/utils/runErrorRenderer.d.ts +8 -2
- package/dist/utils/runStatusCheck.d.ts +14 -4
- package/dist/yes.js +223 -213
- package/package.json +1 -1
|
@@ -63,10 +63,10 @@ export declare function buildClaudePretoolGateSource(deniedTools: readonly strin
|
|
|
63
63
|
* their `Agent(...)` forms) to deny at a settings-source rule — the
|
|
64
64
|
* authoritative, bypass-immune layer. `--disallowedTools` alone (a `cliArg`
|
|
65
65
|
* deny) was observed to leak under `--dangerously-skip-permissions`, so the
|
|
66
|
-
* deny is carried here too.
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
66
|
+
* deny is carried here too. The single consumer is `buildClaudeSettings`, which
|
|
67
|
+
* spreads `hooks` and folds `permissions.deny` into its richer deny list; that
|
|
68
|
+
* one object is then written to BOTH the `--settings` flag and the `/etc`
|
|
69
|
+
* managed file, which is what keeps the two surfaces from drifting (#1179).
|
|
70
70
|
*/
|
|
71
71
|
export declare function buildClaudePretoolGateSettings(scriptAbsolutePath: string, execToolDenyRules: string[]): {
|
|
72
72
|
hooks: {
|