Improve chat feedback and drafts

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 14:01:49 +02:00
parent 7f053b0fc6
commit 0b7872b479
7 changed files with 166 additions and 23 deletions
+27 -8
View File
@@ -34,7 +34,7 @@ export class SessionCommandService {
}
if (name === "session") return { type: "done", message: formatSessionStats(session) };
if (name === "name") return this.nameSession(session, rest);
if (name === "name") return this.nameSession(active, rest);
if (name === "compact") return this.compact(session, rest);
if (name === "clone") return this.clone(active);
if (name === "fork") return this.fork(active);
@@ -56,17 +56,27 @@ export class SessionCommandService {
return { type: "unsupported", message: "Unsupported command response" };
}
private nameSession(session: AgentSession, name: string): ClientCommandResult {
private nameSession(active: ActiveSession, name: string): ClientCommandResult {
if (!name) return { type: "unsupported", message: "Usage: /name <session name>" };
session.setSessionName(name);
return { type: "done", message: `Session named ${name}` };
active.runtime.session.setSessionName(name);
return { type: "done", message: `Session named: ${name}`, session: clientSessionFromRuntime(active.runtime) };
}
private compact(session: AgentSession, instructions: string): ClientCommandResult {
void session.compact(instructions || undefined).catch((error) => {
this.events.publish(session.sessionId, { type: "session.error", message: error instanceof Error ? error.message : String(error) });
});
return { type: "done", message: "Compaction started" };
void session.compact(instructions || undefined)
.then((result) => {
this.events.publish(session.sessionId, {
type: "command.output",
level: "success",
message: formatCompactionResult(result),
});
})
.catch((error) => {
const message = error instanceof Error ? error.message : String(error);
this.events.publish(session.sessionId, { type: "command.output", level: "error", message: `Compaction failed: ${message}` });
this.events.publish(session.sessionId, { type: "session.error", message });
});
return { type: "done", message: "Compaction started…" };
}
private async clone(active: ActiveSession): Promise<ClientCommandResult> {
@@ -122,6 +132,15 @@ function formatSessionStats(session: AgentSession): string {
].join("\n");
}
function formatCompactionResult(result: { summary: string; tokensBefore: number }): string {
return [
"Compaction complete.",
`Tokens before: ${result.tokensBefore}`,
"",
result.summary,
].join("\n");
}
function truncate(text: string, maxLength: number): string {
const singleLine = text.replace(/\s+/g, " ").trim();
return singleLine.length <= maxLength ? singleLine : `${singleLine.slice(0, maxLength - 1)}`;