agent-afk 5.111.2 → 5.112.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/abort-graph.d.ts +1 -0
- package/dist/agent/subagent/constants.d.ts +1 -0
- package/dist/agent/subagent.d.ts +7 -1
- package/dist/agent/types/config-types.d.ts +1 -0
- package/dist/agent/witness-sweep.d.ts +20 -0
- package/dist/cli/commands/interactive/bootstrap-session-builder.d.ts +2 -0
- package/dist/cli.mjs +588 -587
- package/dist/config/env.d.ts +3 -0
- package/dist/improve/paths.d.ts +1 -1
- package/dist/index.mjs +193 -192
- package/dist/paths.d.ts +1 -0
- package/dist/telegram.mjs +257 -256
- package/package.json +1 -1
package/dist/config/env.d.ts
CHANGED
|
@@ -135,6 +135,9 @@ export declare const env: {
|
|
|
135
135
|
readonly AFK_DEBUG_CLIPBOARD: string | undefined;
|
|
136
136
|
readonly AFK_DEBUG_COMPOSITOR: string | undefined;
|
|
137
137
|
readonly AFK_TRACE_DISABLED: string | undefined;
|
|
138
|
+
readonly AFK_WITNESS_RETENTION_DISABLE: string | undefined;
|
|
139
|
+
readonly AFK_WITNESS_MAX_AGE_DAYS: string | undefined;
|
|
140
|
+
readonly AFK_WITNESS_MAX_BYTES: string | undefined;
|
|
138
141
|
readonly AFK_SESSION_LEDGER_DISABLED: string | undefined;
|
|
139
142
|
readonly AFK_RUN_RECEIPT_DISABLED: string | undefined;
|
|
140
143
|
readonly AFK_CAPTURE_SUBAGENT_PROMPTS: string | undefined;
|
package/dist/improve/paths.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare function getFailureCardsDir(): string;
|
|
|
3
3
|
export declare function getFailureCardsIndexPath(): string;
|
|
4
4
|
export declare function getFailureCardJsonPath(slug: string): string;
|
|
5
5
|
export declare function getFailureCardMarkdownPath(slug: string): string;
|
|
6
|
-
export
|
|
6
|
+
export { getWitnessRoot } from '../paths.js';
|
|
7
7
|
export declare function getProposalsDir(): string;
|
|
8
8
|
export declare function getProposalsIndexPath(): string;
|
|
9
9
|
export declare function getProposalJsonPath(proposalId: string): string;
|