agent-afk 5.95.7 → 5.96.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/cli/config/json-tier-parse.d.ts +8 -0
- package/dist/cli/config/json-tier-paths.d.ts +7 -0
- package/dist/cli/config/json-tier.d.ts +1 -1
- package/dist/cli/config/live-apply.d.ts +15 -0
- package/dist/cli/config/provenance-cache.d.ts +8 -0
- package/dist/cli/config/provenance.d.ts +24 -0
- package/dist/cli/input/input-surface.d.ts +1 -0
- package/dist/cli/input/suggest-prompt-state.d.ts +15 -0
- package/dist/cli/input/suggest-prompt.d.ts +16 -0
- package/dist/cli/input/suggest-provider.d.ts +9 -0
- package/dist/cli/input/suggest-sanitize.d.ts +1 -0
- package/dist/cli/input/suggest-tier1.d.ts +2 -0
- package/dist/cli/input/suggest-tier2.d.ts +19 -0
- package/dist/cli/input/suggest-types.d.ts +39 -0
- package/dist/cli/input/suggest.d.ts +5 -35
- package/dist/cli/render/config-menu-model.d.ts +20 -0
- package/dist/cli/render/config-menu.d.ts +6 -20
- package/dist/cli/terminal-compositor.autocomplete.d.ts +0 -2
- package/dist/cli/terminal-compositor.d.ts +2 -0
- package/dist/cli/terminal-compositor.ghost.d.ts +5 -0
- package/dist/cli/terminal-compositor.input-dispatch.d.ts +1 -0
- package/dist/cli.mjs +503 -502
- package/dist/config/env.d.ts +2 -0
- package/dist/index.mjs +158 -158
- package/dist/telegram.mjs +196 -196
- package/package.json +1 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export declare const env: {
|
|
|
51
51
|
readonly AFK_OVERLOAD_PAUSE_MS: string | undefined;
|
|
52
52
|
readonly AFK_PROMPT_CACHE_TTL: string | undefined;
|
|
53
53
|
readonly AFK_SUGGEST_ENABLED: string | undefined;
|
|
54
|
+
readonly AFK_SUGGEST_PROMPT: string | undefined;
|
|
54
55
|
readonly AFK_SUGGEST_GHOST: string | undefined;
|
|
55
56
|
readonly AFK_SUGGEST_MODEL: string | undefined;
|
|
56
57
|
readonly AFK_SUBAGENT_TIMEOUT_MS: string | undefined;
|
|
@@ -164,3 +165,4 @@ export type EnvVarName = keyof typeof env;
|
|
|
164
165
|
export declare function getEnvVarMeta(name: string): EnvVarMeta | undefined;
|
|
165
166
|
export declare function getMissingRequiredEnvVars(category?: EnvVarCategory): EnvVarMeta[];
|
|
166
167
|
export declare function isEnvVarSet(name: string): boolean;
|
|
168
|
+
export declare function getEnvVarValue(name: string): string | undefined;
|