fix(tasks): keep bounded notices actionable

This commit is contained in:
Tianyi Cui
2026-07-23 01:38:10 +08:00
parent 6ad8e4501f
commit f8939daf0a
4 changed files with 61 additions and 6 deletions
+21 -3
View File
@@ -50,6 +50,12 @@ function retainTail(text: string, maxBytes: number): string {
return retainer.finish().text
}
function retainHead(text: string, maxBytes: number): string {
const retainer = new TextRetainer({ kind: 'head', maxBytes })
retainer.push(text)
return retainer.finish().text
}
function fitWithSuffix(
content: string,
suffix: string,
@@ -64,6 +70,20 @@ function fitWithSuffix(
return `${retainTail(content, maxBytes - fixedBytes)}${fixed}`
}
function fitCompletionNotice(snapshot: TaskSnapshot): string {
const prefix = `background task ${snapshot.id}`
const detail = ` (${snapshot.kind}: ${snapshot.label}) finished ${statusLine(snapshot)}`
const action = '\nDone; task_output.'
const complete = `${prefix}${detail}. Read its output with task_output.`
const maxBytes = snapshot.outputLimitBytes
if (maxBytes === undefined || encoder.encode(complete).byteLength <= maxBytes) return complete
const omitted = '\n[notice truncated]'
const fixed = `${prefix}${omitted}${action}`
const fixedBytes = encoder.encode(fixed).byteLength
if (fixedBytes >= maxBytes) return retainHead(fixed, maxBytes)
return `${prefix}${retainHead(detail, maxBytes - fixedBytes)}${omitted}${action}`
}
/** Validate the non-empty constraint that SchemaSpec cannot express. */
function validateTaskId(value: string): TaskId {
if (value.length === 0) {
@@ -98,12 +118,10 @@ export function apply(ctx: Context, config: Config): void {
ctx.tasks.onTaskDone((snapshot, owner) => {
if (snapshot.reported || owner === undefined) return
try {
const prefix = `background task ${snapshot.id} (${snapshot.kind}: ${snapshot.label})`
const suffix = ` finished ${statusLine(snapshot)}. Read its output with task_output.`
owner.inject(
[{
type: 'text',
text: fitWithSuffix(prefix, suffix, snapshot.outputLimitBytes, '\n[notice truncated]'),
text: fitCompletionNotice(snapshot),
}],
{ source: { kind: 'plugin', plugin: 'tool-tasks' } },
)