@wolfx/oh-my-openagent 3.17.13 → 3.17.15
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/features/background-agent/manager.d.ts +1 -0
- package/dist/features/background-agent/process-cleanup.d.ts +4 -0
- package/dist/features/run-continuation-state/types.d.ts +1 -1
- package/dist/features/skill-mcp-manager/types.d.ts +1 -0
- package/dist/index.js +314 -129
- package/dist/shared/bun-spawn-shim.d.ts +39 -0
- package/dist/shared/tmux/tmux-utils/spawn-process.d.ts +1 -1
- package/package.json +3 -2
|
@@ -84,6 +84,7 @@ export declare class BackgroundManager {
|
|
|
84
84
|
private startTask;
|
|
85
85
|
getTask(id: string): BackgroundTask | undefined;
|
|
86
86
|
getTasksByParentSession(sessionID: string): BackgroundTask[];
|
|
87
|
+
private updateBackgroundTaskMarker;
|
|
87
88
|
getAllDescendantTasks(sessionID: string): BackgroundTask[];
|
|
88
89
|
findBySession(sessionID: string): BackgroundTask | undefined;
|
|
89
90
|
private resolveTaskAttemptBySession;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/** @internal test-only */
|
|
2
|
+
export declare function __disableScheduledForcedExitForTesting(): void;
|
|
3
|
+
/** @internal test-only */
|
|
4
|
+
export declare function __enableScheduledForcedExitForTesting(): void;
|
|
1
5
|
interface CleanupTarget {
|
|
2
6
|
shutdown(): void | Promise<void>;
|
|
3
7
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type ContinuationMarkerSource = "todo" | "stop";
|
|
1
|
+
export type ContinuationMarkerSource = "todo" | "stop" | "background-task";
|
|
2
2
|
export type ContinuationMarkerState = "idle" | "active" | "stopped";
|
|
3
3
|
export interface ContinuationMarkerSourceEntry {
|
|
4
4
|
state: ContinuationMarkerState;
|