agent-afk 5.85.7 → 5.85.9

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.
@@ -0,0 +1,4 @@
1
+ export declare function isCaseInsensitiveFs(protectedPath?: string): boolean;
2
+ export declare function pathIsWithin(real: string, blocked: string, protectedPath?: string): boolean;
3
+ export declare function textMentionsPath(haystack: string, needle: string): boolean;
4
+ export declare function _resetFsCaseCacheForTests(value?: boolean): void;
@@ -1,7 +1,7 @@
1
1
  import { type SourceState } from './stream-renderer-source.js';
2
2
  import type { ProgressEvent } from '../../agent/types.js';
3
3
  export declare const STICKY_HOLD_MS = 3000;
4
- export declare const CHILD_QUIET_MS = 30000;
4
+ export declare const CHILD_QUIET_MS = 8000;
5
5
  export interface ChildActivity {
6
6
  sourceId: string;
7
7
  label: string;
@@ -1,7 +1,7 @@
1
1
  import type { TerminalCompositor } from '../terminal-compositor.js';
2
2
  import { OverlayComposer } from './overlay-composer.js';
3
3
  import { createStageTracker } from '../commands/interactive/loop-stage.js';
4
- import type { SourceState } from './stream-renderer-source.js';
4
+ import { type SourceState } from './stream-renderer-source.js';
5
5
  import { type ChildActivityTracker } from './child-activity-select.js';
6
6
  import type { ToolLane } from '../commands/interactive/tool-lane.js';
7
7
  import type { ThinkingLane } from '../commands/interactive/thinking-lane.js';
@@ -35,3 +35,4 @@ export declare function registerOverlaySlots(overlayComposer: OverlayComposer, c
35
35
  export declare function formatInterruptAffordance(interrupting: boolean): string;
36
36
  export declare function subscribeToResize(overlayComposer: OverlayComposer, disposed: boolean): () => void;
37
37
  export declare function checkPauseAnnotations(ctx: LifecycleContext): boolean;
38
+ export declare function checkProgressBannerStaleness(ctx: LifecycleContext): boolean;