agent-afk 5.82.12 → 5.83.1
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/awareness/index.d.ts +1 -1
- package/dist/agent/awareness/runtime-snapshot.d.ts +1 -0
- package/dist/agent/providers/anthropic-direct/query/date-rollover.d.ts +1 -0
- package/dist/agent/providers/anthropic-direct/translate.d.ts +1 -1
- package/dist/agent/providers/shared/stream-stall-timeout.d.ts +15 -0
- package/dist/agent/providers/shared/timer-limits.d.ts +2 -0
- package/dist/agent/tools/handlers/web-scrape.d.ts +2 -0
- package/dist/agent/tools/skill-executor/fork-result.d.ts +5 -0
- package/dist/browser/playwright/launcher.d.ts +1 -0
- package/dist/browser/types.d.ts +1 -0
- package/dist/cli/commands/interactive/shared.d.ts +1 -1
- package/dist/cli/quota-footer.d.ts +6 -0
- package/dist/cli/quota-indicator.d.ts +20 -0
- package/dist/cli/status-line.d.ts +2 -1
- package/dist/cli.mjs +517 -514
- package/dist/config/env.d.ts +2 -0
- package/dist/index.mjs +187 -184
- package/dist/telegram.mjs +239 -236
- package/dist/web/egress-guard.d.ts +24 -0
- package/dist/web/index.d.ts +2 -0
- package/dist/web/scrape.d.ts +2 -0
- package/dist/web/types.d.ts +1 -0
- package/package.json +2 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare const env: {
|
|
|
33
33
|
readonly AFK_MICROCOMPACT_TOOL_RESULT_BYTES: string | undefined;
|
|
34
34
|
readonly AFK_MODEL: string | undefined;
|
|
35
35
|
readonly AFK_MODEL_TTFB_TIMEOUT_MS: string | undefined;
|
|
36
|
+
readonly AFK_MODEL_STALL_TIMEOUT_MS: string | undefined;
|
|
36
37
|
readonly AFK_MODEL_LARGE: string | undefined;
|
|
37
38
|
readonly AFK_MODEL_LARGE_API_KEY: string | undefined;
|
|
38
39
|
readonly AFK_MODEL_LARGE_BASE_URL: string | undefined;
|
|
@@ -140,6 +141,7 @@ export declare const env: {
|
|
|
140
141
|
readonly AFK_WRITE_DENYLIST: string | undefined;
|
|
141
142
|
readonly AFK_READ_DENYLIST: string | undefined;
|
|
142
143
|
readonly AFK_WRITE_DIFF: string | undefined;
|
|
144
|
+
readonly AFK_WEB_ALLOW_PRIVATE_HOSTS: string | undefined;
|
|
143
145
|
readonly AFK_DEMO_CLEAN: string | undefined;
|
|
144
146
|
readonly SCRIPT: string | undefined;
|
|
145
147
|
readonly ASCIINEMA_REC: string | undefined;
|