agent-afk 5.24.0 → 5.25.0
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/agent/providers/anthropic-direct/loop.d.ts +1 -1
- package/dist/agent/providers/anthropic-direct/query/cwd-dependents.d.ts +37 -0
- package/dist/agent/providers/anthropic-direct/query/presence-lifecycle.d.ts +13 -0
- package/dist/agent/providers/anthropic-direct/query/token-resolution.d.ts +6 -0
- package/dist/agent/providers/openai-compatible/query/dispatch-append.d.ts +15 -0
- package/dist/agent/providers/shared/tool-loop-cap.d.ts +5 -0
- package/dist/cli/commands/interactive/bootstrap.d.ts +1 -0
- package/dist/cli/elicitation/field-validation.d.ts +35 -0
- package/dist/cli/shared-helpers.d.ts +2 -0
- package/dist/cli.mjs +492 -492
- package/dist/config/env.d.ts +1 -0
- package/dist/index.mjs +189 -189
- package/dist/telegram.mjs +240 -240
- package/package.json +1 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const env: {
|
|
|
25
25
|
readonly AFK_MAX_BUDGET_USD: string | undefined;
|
|
26
26
|
readonly AFK_MAX_OUTPUT_TOKENS: string | undefined;
|
|
27
27
|
readonly AFK_MAX_TOKENS: string | undefined;
|
|
28
|
+
readonly AFK_MAX_TOOL_USE_ITERATIONS: string | undefined;
|
|
28
29
|
readonly AFK_MEMORY_EVIDENCE_GATE: string | undefined;
|
|
29
30
|
readonly AFK_MODEL: string | undefined;
|
|
30
31
|
readonly AFK_MODEL_LARGE: string | undefined;
|