agent-afk 5.85.12 → 5.87.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/tools/compose-executor.d.ts +1 -0
- package/dist/agent/tools/nesting.d.ts +2 -0
- package/dist/agent/tools/skill-depth-message.d.ts +2 -0
- package/dist/bundled-plugins/awa-bundled/skills/ground-state/SKILL.md +7 -3
- package/dist/cli/commands/interactive/shared.d.ts +3 -0
- package/dist/cli/commands/interactive/worktree-disposition.d.ts +23 -0
- package/dist/cli/commands/interactive/worktree.d.ts +2 -0
- package/dist/cli/config/types.d.ts +2 -0
- package/dist/cli.mjs +545 -545
- package/dist/config/env.d.ts +2 -0
- package/dist/index.mjs +117 -117
- package/dist/telegram.mjs +227 -227
- package/package.json +1 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const env: {
|
|
|
25
25
|
readonly AFK_EFFORT: string | undefined;
|
|
26
26
|
readonly AFK_FORCE_BASH_INTERPRETER_GUARD: string | undefined;
|
|
27
27
|
readonly AFK_MAX_BUDGET_USD: string | undefined;
|
|
28
|
+
readonly AFK_MAX_NESTING_DEPTH: string | undefined;
|
|
28
29
|
readonly AFK_MAX_OUTPUT_TOKENS: string | undefined;
|
|
29
30
|
readonly AFK_MAX_TOKENS: string | undefined;
|
|
30
31
|
readonly AFK_MAX_TOOL_USE_ITERATIONS: string | undefined;
|
|
@@ -96,6 +97,7 @@ export declare const env: {
|
|
|
96
97
|
readonly AFK_WORKTREE_AUTONAME: string | undefined;
|
|
97
98
|
readonly AFK_WORKTREE_BRANCH_PREFIX: string | undefined;
|
|
98
99
|
readonly AFK_WORKTREE_BASE: string | undefined;
|
|
100
|
+
readonly AFK_WORKTREE_ON_EXIT: string | undefined;
|
|
99
101
|
readonly AFK_WORKTREE_BOOT_PRUNE: string | undefined;
|
|
100
102
|
readonly AFK_WORKTREE_PRUNE_DISABLE: string | undefined;
|
|
101
103
|
readonly AFK_WORKTREE_MAX_AGE_CLEAN: string | undefined;
|