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.
@@ -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 */