pullfrog 0.1.52 → 0.1.54
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 +59270 -30564
- package/dist/external.d.ts +9 -1
- package/dist/index.js +54454 -25979
- package/dist/internal/index.d.ts +3 -1
- package/dist/internal.js +166 -42
- 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/mcp/shell.d.ts +1 -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/payload.d.ts +3 -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
package/dist/external.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare function formatMcpToolRef(agentId: AgentId, toolName: string): st
|
|
|
16
16
|
export type { EffortPosition } from "./effort.ts";
|
|
17
17
|
export { DEFAULT_EFFORT_POSITION, EFFORT_ALIASES, isEffortPosition, offeredRungs, parseEffortPosition, resolveRung, rungLabel, rungPosition, } from "./effort.ts";
|
|
18
18
|
export type { AutoTier, ModelAlias, ModelProvider, ProviderConfig } from "./models.ts";
|
|
19
|
-
export { AUTO_EFFICIENT, AUTO_INTELLIGENT, DEFAULT_PROXY_MODEL, defaultAutoTier, getAutoSelectHintModel, getModelEffortLevels, getModelEnvVars, getModelManagedCredentials, getModelProvider, getProviderDisplayName, isAutoTier, isCardGatedModel, isOssAllowedModel, modelAliases, modelHasStoredAuth, OSS_MODEL_ALLOWLIST, OSS_RECOMMENDED_MODEL, parseModel, providers, resolveAutoTier, resolveCliModel, resolveDisplayAlias, resolveModelRung, resolveModelSlug, resolveOpenRouterModel, } from "./models.ts";
|
|
19
|
+
export { AUTO_EFFICIENT, AUTO_INTELLIGENT, DEFAULT_PROXY_MODEL, defaultAutoTier, getAutoSelectHintModel, getModelEffortLevels, getModelEnvVars, getModelManagedCredentials, getModelProvider, getProviderDisplayName, isAutoTier, isCardGatedModel, isOssAllowedModel, modelAliases, modelHasStoredAuth, OSS_MODEL_ALLOWLIST, OSS_RECOMMENDED_MODEL, ossFundedModelNames, parseModel, providers, resolveAutoTier, resolveCliModel, resolveDisplayAlias, resolveModelRung, resolveModelSlug, resolveOpenRouterModel, } from "./models.ts";
|
|
20
20
|
export type ToolPermission = "disabled" | "enabled";
|
|
21
21
|
export type ShellPermission = "disabled" | "restricted" | "enabled";
|
|
22
22
|
export type PushPermission = "disabled" | "restricted" | "enabled";
|
|
@@ -232,6 +232,14 @@ export interface WriteablePayload {
|
|
|
232
232
|
modelExplicit?: boolean | undefined;
|
|
233
233
|
/** reasoning-effort position on [0,1]; 0 is the model's cheapest rung, 1 its priciest */
|
|
234
234
|
effort?: EffortPosition | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* raise this one run's logging (`--debug`, or the `debug` action input): makes
|
|
237
|
+
* `log.debug` output visible and puts the opencode server at INFO. the only
|
|
238
|
+
* way to diagnose a run that fails with an empty log — see
|
|
239
|
+
* wiki/opencode-silent-stall.md. affects what we print, never what the agent
|
|
240
|
+
* may do, so it carries no access/permission consequence.
|
|
241
|
+
*/
|
|
242
|
+
debug?: boolean | undefined;
|
|
235
243
|
/** the user's actual request (body if @pullfrog tagged) */
|
|
236
244
|
prompt: string;
|
|
237
245
|
/** github username of the human who triggered this workflow run */
|