agent-afk 5.23.2 → 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/agent/shadow-verify-nudge.d.ts +1 -0
- package/dist/agent/tools/subagent/background-branch.d.ts +13 -0
- package/dist/agent/tools/subagent/child-config.d.ts +39 -0
- package/dist/agent/tools/subagent/failure-payload.d.ts +18 -0
- package/dist/agent/tools/subagent/foreground-promotion.d.ts +31 -0
- package/dist/agent/tools/subagent/input-parse.d.ts +14 -0
- package/dist/agent/tools/subagent-executor.d.ts +2 -1
- package/dist/agent/types/sdk-types.d.ts +1 -0
- package/dist/cli/commands/interactive/bootstrap.d.ts +1 -0
- package/dist/cli/commands/interactive/shared.d.ts +1 -1
- package/dist/cli/commands/interactive.d.ts +2 -1
- package/dist/cli/config.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 +507 -507
- package/dist/config/env.d.ts +2 -0
- package/dist/index.mjs +178 -178
- package/dist/telegram.mjs +248 -248
- 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;
|
|
@@ -47,6 +48,7 @@ export declare const env: {
|
|
|
47
48
|
readonly AFK_TASK_BUDGET: string | undefined;
|
|
48
49
|
readonly AFK_TEMPERATURE: string | undefined;
|
|
49
50
|
readonly AFK_THINKING: string | undefined;
|
|
51
|
+
readonly AFK_THINKING_UI: string | undefined;
|
|
50
52
|
readonly AFK_TIMEOUT_MS: string | undefined;
|
|
51
53
|
readonly CLAUDE_MODEL: string | undefined;
|
|
52
54
|
readonly AFK_SYSTEM_PROMPT: string | undefined;
|