agent-afk 5.60.0 → 5.61.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/compact.d.ts +1 -0
- package/dist/agent/providers/anthropic-direct/query/auto-compact.d.ts +1 -1
- package/dist/agent/providers/openai-compatible/compact.d.ts +3 -0
- package/dist/agent/providers/shared/auto-compact.d.ts +1 -0
- package/dist/agent/providers/shared/compaction.d.ts +4 -0
- package/dist/agent/tools/subagent/foreground-promotion.d.ts +2 -0
- package/dist/cli.mjs +482 -478
- package/dist/config/env.d.ts +1 -0
- package/dist/index.mjs +158 -156
- package/dist/telegram.mjs +213 -209
- package/package.json +1 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare const ENV_REGISTRY: readonly EnvVarMeta[];
|
|
|
15
15
|
export declare const env: {
|
|
16
16
|
readonly AFK_COMPACT_KEEP_LAST_TURNS: string | undefined;
|
|
17
17
|
readonly AFK_COMPACT_MODEL: string | undefined;
|
|
18
|
+
readonly AFK_COMPACT_SHRINK_FRACTION: string | undefined;
|
|
18
19
|
readonly AFK_COMPANION_PRIMER: string | undefined;
|
|
19
20
|
readonly AFK_DEFAULT_SUBAGENT_MODEL: string | undefined;
|
|
20
21
|
readonly AFK_DIAGNOSE_BASELINE: string | undefined;
|