@cortexkit/aft-opencode 0.29.0 → 0.30.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/bg-notifications.d.ts +90 -7
- package/dist/bg-notifications.d.ts.map +1 -1
- package/dist/config.d.ts +3 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4602 -209
- package/dist/shared/live-server-client.d.ts +30 -11
- package/dist/shared/live-server-client.d.ts.map +1 -1
- package/dist/shared/pty-cache.d.ts +18 -0
- package/dist/shared/pty-cache.d.ts.map +1 -0
- package/dist/tools/bash.d.ts.map +1 -1
- package/dist/tools/bash_watch.d.ts +24 -0
- package/dist/tools/bash_watch.d.ts.map +1 -0
- package/dist/tools/bash_write.d.ts +38 -0
- package/dist/tools/bash_write.d.ts.map +1 -0
- package/dist/tools/hoisted.d.ts +1 -1
- package/dist/tools/hoisted.d.ts.map +1 -1
- package/dist/tui.js +9 -8
- package/dist/workflow-hints.d.ts.map +1 -1
- package/package.json +9 -8
- package/src/shared/live-server-client.ts +56 -14
- package/src/shared/pty-cache.ts +113 -0
|
@@ -14,17 +14,32 @@ export interface BgCompletion {
|
|
|
14
14
|
original_tokens?: number;
|
|
15
15
|
compressed_tokens?: number;
|
|
16
16
|
tokens_skipped?: boolean;
|
|
17
|
+
mode?: "pipes" | "pty" | string;
|
|
18
|
+
output_path?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface PatternMatchEntry {
|
|
21
|
+
task_id: string;
|
|
22
|
+
session_id: string;
|
|
23
|
+
watch_id: string;
|
|
24
|
+
match_text: string;
|
|
25
|
+
match_offset: number;
|
|
26
|
+
context: string;
|
|
27
|
+
once: boolean;
|
|
28
|
+
reason?: "pattern_match" | "task_exit";
|
|
17
29
|
}
|
|
18
30
|
export interface BgLongRunningReminder {
|
|
19
31
|
task_id: string;
|
|
20
32
|
session_id: string;
|
|
21
33
|
command: string;
|
|
22
34
|
elapsed_ms: number;
|
|
35
|
+
mode?: "pipes" | "pty" | string;
|
|
23
36
|
}
|
|
24
37
|
type SessionBgState = {
|
|
25
38
|
outstandingTaskIds: Set<string>;
|
|
26
39
|
pendingCompletions: BgCompletion[];
|
|
27
40
|
pendingLongRunning: BgLongRunningReminder[];
|
|
41
|
+
pendingPatternMatches: PatternMatchEntry[];
|
|
42
|
+
explicitControlTasks: Set<string>;
|
|
28
43
|
debounceTimer: NodeJS.Timeout | null;
|
|
29
44
|
firstCompletionAt: number | null;
|
|
30
45
|
scheduledFireAt: number | null;
|
|
@@ -37,6 +52,28 @@ type SessionBgState = {
|
|
|
37
52
|
completion: BgCompletion;
|
|
38
53
|
receivedAt: number;
|
|
39
54
|
}>;
|
|
55
|
+
/**
|
|
56
|
+
* Task IDs spawned since the last session.idle event. Push completions for
|
|
57
|
+
* these tasks are kept pending but do not promptAsync-wake immediately: the
|
|
58
|
+
* agent may still be in the same assistant turn and about to call sync
|
|
59
|
+
* bash_watch, whose inline result should be the only delivery. In-turn
|
|
60
|
+
* append and the next session.idle still deliver normally.
|
|
61
|
+
*/
|
|
62
|
+
wakeDeferredTaskIds: Set<string>;
|
|
63
|
+
/**
|
|
64
|
+
* Task IDs whose completions were consumed inline by an explicit
|
|
65
|
+
* `bash_status({ exit: true, ... })` wait. The bash_completed push
|
|
66
|
+
* frame for these tasks may arrive AFTER the wait poll loop returned
|
|
67
|
+
* (the Rust→plugin frame is async); without this set, the late frame
|
|
68
|
+
* would land in `pendingCompletions` and the next `appendInTurnBgCompletions`
|
|
69
|
+
* or wake would deliver a duplicate reminder. We dedupe at the ingest
|
|
70
|
+
* boundary so `pendingCompletions` stays a clean source of truth.
|
|
71
|
+
*
|
|
72
|
+
* Bounded by `CONSUMED_TASKIDS_CAP` (FIFO eviction) so a session that
|
|
73
|
+
* runs thousands of bg tasks doesn't grow this set without bound.
|
|
74
|
+
*/
|
|
75
|
+
consumedTaskIds: Set<string>;
|
|
76
|
+
consumedTaskOrder: string[];
|
|
40
77
|
lastSeenAt: number;
|
|
41
78
|
};
|
|
42
79
|
export declare const sessionBgStates: Map<string, SessionBgState>;
|
|
@@ -46,17 +83,62 @@ interface DrainContext {
|
|
|
46
83
|
directory: string;
|
|
47
84
|
sessionID: string;
|
|
48
85
|
/**
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
* live listener
|
|
52
|
-
*
|
|
53
|
-
* the
|
|
54
|
-
*
|
|
55
|
-
*
|
|
86
|
+
* Plugin-provided OpenCode SDK client (`input.client`). The wake path
|
|
87
|
+
* uses this as a fallback when `useLiveServerWake()` is false — i.e.
|
|
88
|
+
* the live HTTP listener was unreachable when probed at plugin init,
|
|
89
|
+
* so `getLiveServerClient(...)` cannot be built. Falling back here
|
|
90
|
+
* accepts the upstream `promptAsync` runner-split bug
|
|
91
|
+
* (anomalyco/opencode#28202; duplicate "stop" messages) in exchange
|
|
92
|
+
* for wakes still arriving at all in plain-TUI sessions.
|
|
93
|
+
*
|
|
94
|
+
* Typed `unknown` because the real `@opencode-ai/sdk` `OpencodeClient`
|
|
95
|
+
* has a narrower, generated `promptAsync` signature than the loose
|
|
96
|
+
* structural `OpenCodeClient` shape used by the live-server factory
|
|
97
|
+
* and test stubs. The wake closure asserts to `OpenCodeClient` after
|
|
98
|
+
* deciding which transport to use.
|
|
99
|
+
*/
|
|
100
|
+
client?: unknown;
|
|
101
|
+
/**
|
|
102
|
+
* Live OpenCode HTTP listener URL (from `input.serverUrl`). When the
|
|
103
|
+
* listener was reachable at startup, the wake path builds a separate
|
|
104
|
+
* `createOpencodeClient` from this URL so requests hit the same Effect
|
|
105
|
+
* memoMap as the live UI — works around the runner-split bug
|
|
106
|
+
* (anomalyco/opencode#28202). When the listener was unreachable, the
|
|
107
|
+
* wake path falls back to `client` above; this URL is unused.
|
|
56
108
|
*/
|
|
57
109
|
serverUrl?: string;
|
|
58
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* Mark a bg task's completion as consumed by an explicit bash_status wait.
|
|
113
|
+
* Removes it from pendingCompletions so the next wake/in-turn drain
|
|
114
|
+
* doesn't double-notify the agent.
|
|
115
|
+
*/
|
|
116
|
+
export declare function consumeBgCompletion(sessionID: string | undefined, taskId: string): void;
|
|
117
|
+
export declare function markBgCompletionDelivered(drainContext: DrainContext, taskId: string): Promise<void>;
|
|
118
|
+
/**
|
|
119
|
+
* Pre-mark a task as expected to be consumed inline before the wait loop
|
|
120
|
+
* starts polling. This is the key suppression mechanism: ingestBgCompletions
|
|
121
|
+
* will skip push frames for tasks already in consumedTaskIds, so a wake is
|
|
122
|
+
* never scheduled in the first place. The consume-after-detection path
|
|
123
|
+
* loses a race when push frame arrives faster than the wait loop's next poll.
|
|
124
|
+
*
|
|
125
|
+
* Caller MUST balance with `unmarkTaskWaiting` if the wait loop returns
|
|
126
|
+
* without seeing terminal status (timeout or pattern-match-without-exit),
|
|
127
|
+
* so future push frames deliver normally.
|
|
128
|
+
*/
|
|
129
|
+
export declare function markTaskWaiting(sessionID: string | undefined, taskId: string): void;
|
|
130
|
+
/**
|
|
131
|
+
* Remove a task from the consumed set when the wait loop returned without
|
|
132
|
+
* seeing terminal status (e.g. timeout or pattern-only match). Without
|
|
133
|
+
* this, future push frames for the task would be permanently suppressed.
|
|
134
|
+
*/
|
|
135
|
+
export declare function unmarkTaskWaiting(sessionID: string | undefined, taskId: string): void;
|
|
59
136
|
export declare function trackBgTask(sessionID: string | undefined, taskId: string): void;
|
|
137
|
+
export declare function markExplicitControl(sessionID: string | undefined, taskId: string, trackOutstanding?: boolean): void;
|
|
138
|
+
export declare function unmarkExplicitControl(sessionID: string | undefined, taskId: string): void;
|
|
139
|
+
export declare function handlePushedPatternMatch(drainContext: DrainContext & {
|
|
140
|
+
client: unknown;
|
|
141
|
+
}, frame: PatternMatchEntry): Promise<void>;
|
|
60
142
|
export declare function ingestBgCompletions(sessionID: string | undefined, completions: unknown): BgCompletion[];
|
|
61
143
|
export declare function handlePushedBgCompletion(drainContext: DrainContext & {
|
|
62
144
|
client: unknown;
|
|
@@ -72,6 +154,7 @@ export declare function handleIdleBgCompletions(drainContext: DrainContext & {
|
|
|
72
154
|
}): Promise<void>;
|
|
73
155
|
export declare function formatSystemReminder(completions: readonly BgCompletion[]): string;
|
|
74
156
|
export declare function formatLongRunningReminder(reminders: readonly BgLongRunningReminder[]): string;
|
|
157
|
+
export declare function formatPatternMatchReminder(matches: readonly PatternMatchEntry[]): string;
|
|
75
158
|
export declare function extractSessionID(value: unknown): string | undefined;
|
|
76
159
|
export declare function __resetBgNotificationStateForTests(): void;
|
|
77
160
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bg-notifications.d.ts","sourceRoot":"","sources":["../src/bg-notifications.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAWhD,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2EAA2E;IAC3E,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,qEAAqE;IACrE,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAG3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"bg-notifications.d.ts","sourceRoot":"","sources":["../src/bg-notifications.ts"],"names":[],"mappings":"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"}
|
package/dist/config.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export declare const AftConfigSchema: z.ZodObject<{
|
|
|
54
54
|
rewrite: z.ZodOptional<z.ZodBoolean>;
|
|
55
55
|
compress: z.ZodOptional<z.ZodBoolean>;
|
|
56
56
|
background: z.ZodOptional<z.ZodBoolean>;
|
|
57
|
+
subagent_background: z.ZodOptional<z.ZodBoolean>;
|
|
57
58
|
long_running_reminder_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
58
59
|
long_running_reminder_interval_ms: z.ZodOptional<z.ZodNumber>;
|
|
59
60
|
}, z.core.$strip>]>>;
|
|
@@ -164,6 +165,8 @@ export interface ResolvedBashConfig {
|
|
|
164
165
|
rewrite: boolean;
|
|
165
166
|
compress: boolean;
|
|
166
167
|
background: boolean;
|
|
168
|
+
/** See BashFeaturesSchema.subagent_background. Default false. */
|
|
169
|
+
subagent_background: boolean;
|
|
167
170
|
long_running_reminder_enabled?: boolean;
|
|
168
171
|
long_running_reminder_interval_ms?: number;
|
|
169
172
|
}
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqExB,eAAO,MAAM,eAAe;;;;;;;;;iBAE1B,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqExB,eAAO,MAAM,eAAe;;;;;;;;;iBAE1B,CAAC;AAkFH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqFjB,CAAC;AAEZ,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,EAAE,OAAO,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC;AAED,MAAM,WAAW,qBAAqB;IACpC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,WAAW,CAAC,EAAE,kBAAkB,EAAE,CAAC;IACnC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,8BAA8B;IAC7C,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,4BAA4B,CAAC,EAAE,OAAO,CAAC;IACvC,kCAAkC,CAAC,EAAE,OAAO,CAAC;IAC7C,sCAAsC,CAAC,EAAE,MAAM,CAAC;IAChD,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAMD,wBAAgB,4BAA4B,CAAC,MAAM,EAAE,SAAS,GAAG,qBAAqB,CAmDrF;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,mCAAmC,CAAC,MAAM,EAAE,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CA4B9F;AAED;;;;;;;;;;GAUG;AACH,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,iEAAiE;IACjE,mBAAmB,EAAE,OAAO,CAAC;IAC7B,6BAA6B,CAAC,EAAE,OAAO,CAAC;IACxC,iCAAiC,CAAC,EAAE,MAAM,CAAC;CAC5C;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,SAAS,GAAG,kBAAkB,CAgFvE;AAED,wBAAgB,qCAAqC,CACnD,MAAM,EAAE,SAAS,GAChB,8BAA8B,CAsBhC;AAED,KAAK,MAAM,GAAG;IACZ,GAAG,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACjC,CAAC;AAoMF,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,EAClB,MAAM,GAAE,MAAsB,GAC7B;IAAE,QAAQ,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,CAAA;CAAE,CAwD1C;AAsWD;;;;;;;;;GASG;AACH,wBAAgB,aAAa,CAAC,gBAAgB,EAAE,MAAM,GAAG,SAAS,CAiDjE"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAoLlD;;;;;;;;;;;;;;;;;;GAkBG;AAQH,QAAA,MAAM,MAAM,EAAE,MAA6D,CAAC;AAqzB5E,eAAe,MAAM,CAAC"}
|