wotann 0.5.86 → 0.5.88

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,18 @@
1
+ /**
2
+ * `wotann insights` — render deterministic metrics from saved sessions.
3
+ *
4
+ * Thin CLI wrapper around src/learning/insights.ts. JSON mode emits the
5
+ * full structured report; text mode formats a Hermes-style readout
6
+ * with top tools / common query prefixes / error patterns.
7
+ */
8
+ export interface RunInsightsOptions {
9
+ /** Defaults to `process.cwd()`. */
10
+ readonly workingDir?: string;
11
+ /** Day-window (Number.isFinite + > 0). Omit for all-time. */
12
+ readonly days?: number;
13
+ /** Emit the full report as JSON instead of the formatted text. */
14
+ readonly json?: boolean;
15
+ /** Injectable writer for tests. Defaults to console.log. */
16
+ readonly write?: (line: string) => void;
17
+ }
18
+ export declare function runInsights(opts?: RunInsightsOptions): number;
@@ -0,0 +1,64 @@
1
+ /**
2
+ * `wotann insights` — render deterministic metrics from saved sessions.
3
+ *
4
+ * Thin CLI wrapper around src/learning/insights.ts. JSON mode emits the
5
+ * full structured report; text mode formats a Hermes-style readout
6
+ * with top tools / common query prefixes / error patterns.
7
+ */
8
+ import chalk from "chalk";
9
+ import { generateInsights } from "../../learning/insights.js";
10
+ export function runInsights(opts = {}) {
11
+ const write = opts.write ?? ((line) => console.log(line));
12
+ const report = generateInsights({
13
+ workingDir: opts.workingDir ?? process.cwd(),
14
+ ...(opts.days !== undefined && Number.isFinite(opts.days) && opts.days > 0
15
+ ? { days: opts.days }
16
+ : {}),
17
+ });
18
+ if (opts.json === true) {
19
+ write(JSON.stringify(report, null, 2));
20
+ return 0;
21
+ }
22
+ renderTextReport(write, report);
23
+ return 0;
24
+ }
25
+ function renderTextReport(write, r) {
26
+ const windowLabel = r.windowDays !== null ? `last ${r.windowDays} days` : "all time";
27
+ write("");
28
+ write(chalk.bold(`WOTANN insights — ${windowLabel}`));
29
+ write("");
30
+ if (r.sessionsTotal === 0) {
31
+ write(chalk.dim(" no sessions found in .wotann/sessions/"));
32
+ write("");
33
+ return;
34
+ }
35
+ write(` sessions in window: ${r.sessionsInWindow} of ${r.sessionsTotal} on disk`);
36
+ if (r.sessionsCorrupt > 0) {
37
+ write(chalk.yellow(` sessions corrupt: ${r.sessionsCorrupt} (skipped)`));
38
+ }
39
+ if (r.sessionsIncognito > 0) {
40
+ write(chalk.dim(` sessions incognito: ${r.sessionsIncognito} (excluded from query histograms)`));
41
+ }
42
+ write(` messages: ${r.messagesTotal}`);
43
+ if (r.sessionsInWindow > 0) {
44
+ write(` avg msgs/session: ${r.avgMessagesPerSession.toFixed(1)}`);
45
+ }
46
+ write(` tokens: ${r.tokensTotal.toLocaleString()}`);
47
+ write(` cost: $${r.costTotal.toFixed(4)}`);
48
+ write(` tool calls: ${r.toolCallsTotal}`);
49
+ write(` providers: ${r.providersUsed.join(", ") || chalk.dim("(none)")}`);
50
+ write(` models: ${r.modelsUsed.join(", ") || chalk.dim("(none)")}`);
51
+ renderHistogram(write, "Top tools", r.topTools, 30);
52
+ renderHistogram(write, "Common query prefixes", r.topUserPrefixes, 40);
53
+ renderHistogram(write, "Error patterns", r.errors, 60);
54
+ write("");
55
+ }
56
+ function renderHistogram(write, title, rows, keyWidth) {
57
+ if (rows.length === 0)
58
+ return;
59
+ write("");
60
+ write(chalk.bold(` ${title}:`));
61
+ for (const row of rows) {
62
+ write(` ${row.key.padEnd(keyWidth)} ${row.count}`);
63
+ }
64
+ }
@@ -36,8 +36,48 @@ export interface ToolResultEvent {
36
36
  readonly toolName: string;
37
37
  readonly result: string;
38
38
  }
39
- export type RunAgentControlEvent = IterationStartEvent | ToolResultEvent;
39
+ /**
40
+ * Emitted at an iteration boundary after the loop drained one or more
41
+ * user-side redirects (Hermes Gap 2 — interrupt-and-redirect). UI
42
+ * consumers can render a system bubble showing the redirected text so
43
+ * the user has visual confirmation the directive landed. The redirect
44
+ * is ALREADY appended to context by the loop before this event fires;
45
+ * receivers MUST NOT re-append it themselves.
46
+ */
47
+ export interface RedirectReceivedEvent {
48
+ readonly kind: "redirect_received";
49
+ readonly count: number;
50
+ readonly messages: readonly string[];
51
+ }
52
+ export type RunAgentControlEvent = IterationStartEvent | ToolResultEvent | RedirectReceivedEvent;
40
53
  export type AgentEvent = StreamChunk | RunAgentControlEvent;
54
+ /**
55
+ * Channel for user-side redirects (Hermes Gap 2). The TUI / RPC client
56
+ * pushes messages when the user sends a new directive WHILE the agent
57
+ * is streaming. The runAgent loop drains at each iteration boundary
58
+ * and appends them to context as new user turns, so the model absorbs
59
+ * the directive on the next turn — no context loss, no abort needed.
60
+ *
61
+ * Implementations MUST be safe to call concurrently (push from the
62
+ * UI thread, drain from the loop's async generator).
63
+ */
64
+ export interface RedirectChannel {
65
+ /** Drain all pending redirects. Returns empty array when none queued. */
66
+ drain(): readonly string[];
67
+ }
68
+ /**
69
+ * Default in-memory channel. Pushes are appended to a queue; drain
70
+ * empties the queue atomically. The queue ignores empty-string pushes
71
+ * so an accidental Ctrl+R on an empty composer doesn't inject a blank
72
+ * user turn into the model context.
73
+ */
74
+ export declare class InMemoryRedirectChannel implements RedirectChannel {
75
+ private queue;
76
+ push(message: string): void;
77
+ drain(): readonly string[];
78
+ /** Snapshot of pending count — for status-bar indicators. Read-only. */
79
+ get pending(): number;
80
+ }
41
81
  export interface RunAgentOptions {
42
82
  readonly prompt: string;
43
83
  readonly images?: readonly string[];
@@ -49,6 +89,14 @@ export interface RunAgentOptions {
49
89
  readonly signal?: AbortSignal;
50
90
  readonly guardrails?: readonly GuardrailCheck[];
51
91
  readonly guardrailContext?: GuardrailContext;
92
+ /**
93
+ * Optional user-redirect channel. When provided, the loop drains
94
+ * pending messages BEFORE each iteration's query and appends them
95
+ * to context as new user turns. Lets the user redirect a streaming
96
+ * agent without losing context (Hermes Gap 2). See
97
+ * {@link InMemoryRedirectChannel} for the default implementation.
98
+ */
99
+ readonly redirectChannel?: RedirectChannel;
52
100
  readonly query: (o: WotannQueryOptions) => AsyncGenerator<StreamChunk>;
53
101
  readonly executeTool: (name: string, input: Record<string, unknown>) => Promise<string>;
54
102
  }
@@ -1,5 +1,31 @@
1
1
  import { evaluateGuardrails, } from "../guardrails/tripwire.js";
2
- import { IntelligenceAmplifier, updateDoomLoopState } from "../intelligence/amplifier.js";
2
+ import { IntelligenceAmplifier, updateDoomLoopState, } from "../intelligence/amplifier.js";
3
+ /**
4
+ * Default in-memory channel. Pushes are appended to a queue; drain
5
+ * empties the queue atomically. The queue ignores empty-string pushes
6
+ * so an accidental Ctrl+R on an empty composer doesn't inject a blank
7
+ * user turn into the model context.
8
+ */
9
+ export class InMemoryRedirectChannel {
10
+ queue = [];
11
+ push(message) {
12
+ const trimmed = message.trim();
13
+ if (trimmed.length === 0)
14
+ return;
15
+ this.queue.push(trimmed);
16
+ }
17
+ drain() {
18
+ if (this.queue.length === 0)
19
+ return [];
20
+ const out = this.queue;
21
+ this.queue = [];
22
+ return out;
23
+ }
24
+ /** Snapshot of pending count — for status-bar indicators. Read-only. */
25
+ get pending() {
26
+ return this.queue.length;
27
+ }
28
+ }
3
29
  export async function* runAgent(opts) {
4
30
  const maxIterations = opts.maxIterations ?? 8;
5
31
  const guardrails = opts.guardrails ?? [];
@@ -20,6 +46,22 @@ export async function* runAgent(opts) {
20
46
  while (iteration < maxIterations) {
21
47
  iteration++;
22
48
  yield { kind: "iteration_start", iteration };
49
+ // Hermes Gap 2 — drain user-side redirects BEFORE this iteration's
50
+ // query. Each pending message becomes a new user turn appended to
51
+ // context, so the model sees the directive on its next turn. No
52
+ // abort, no context loss. We emit a `redirect_received` control
53
+ // event so UI consumers can render a system breadcrumb.
54
+ if (opts.redirectChannel !== undefined) {
55
+ const pending = opts.redirectChannel.drain();
56
+ if (pending.length > 0) {
57
+ const next = [...context];
58
+ for (const msg of pending) {
59
+ next.push({ role: "user", content: msg });
60
+ }
61
+ context = next;
62
+ yield { kind: "redirect_received", count: pending.length, messages: pending };
63
+ }
64
+ }
23
65
  let fullContent = "";
24
66
  let model;
25
67
  let provider;
package/dist/index.js CHANGED
@@ -3630,6 +3630,28 @@ curatorCmd
3630
3630
  const mod = await import("./cli/commands/skills-curator.js");
3631
3631
  process.exit(mod.runUnpin(name));
3632
3632
  });
3633
+ // ── wotann insights ──────────────────────────────────────────
3634
+ //
3635
+ // Hermes Gap 3 port — deterministic metrics over saved sessions:
3636
+ // top tools, common query prefixes, error patterns. Pure-data MVP;
3637
+ // LLM-graded review deferred to a follow-up (aux-cred pattern).
3638
+ // Module lives at src/learning/insights.ts; CLI shell in
3639
+ // src/cli/commands/insights.ts.
3640
+ program
3641
+ .command("insights")
3642
+ .description("Show session metrics — top tools, common query prefixes, error patterns")
3643
+ .option("--days <n>", "Only include sessions started within the last N days (default: all time)", (v) => parseInt(v, 10))
3644
+ .option("--json", "Emit the full report as JSON instead of formatted text")
3645
+ .action(async (opts) => {
3646
+ const mod = await import("./cli/commands/insights.js");
3647
+ const cliOpts = {};
3648
+ if (opts.days !== undefined && Number.isFinite(opts.days) && opts.days > 0) {
3649
+ cliOpts.days = opts.days;
3650
+ }
3651
+ if (opts.json === true)
3652
+ cliOpts.json = true;
3653
+ process.exit(mod.runInsights(cliOpts));
3654
+ });
3633
3655
  // ── wotann cost ──────────────────────────────────────────────
3634
3656
  //
3635
3657
  // Wave 4G: the cost command now accepts an optional `period` argument
@@ -0,0 +1,82 @@
1
+ /**
2
+ * Insights — deterministic metrics over saved WOTANN sessions.
3
+ *
4
+ * Hermes Gap 3 port: surface the "what worked / what failed / repeating
5
+ * patterns" data WOTANN already stores. The Hermes implementation adds
6
+ * an LLM-graded pass on top — that's deferred to a follow-up ticket
7
+ * (lands with the same aux-cred pattern the Skill Curator is waiting on).
8
+ * The data layer below is the foundation: pure aggregation, zero LLM,
9
+ * works fully offline.
10
+ *
11
+ * Inputs: every `.json` file in `<workingDir>/.wotann/sessions/`.
12
+ * Each file is a {@link SessionState} round-trip (see
13
+ * `src/core/session.ts`).
14
+ *
15
+ * Output: a structured {@link InsightsReport} with totals + top-N
16
+ * histograms for tools, user query prefixes, and error patterns.
17
+ *
18
+ * Strict invariants:
19
+ * - Pure read-only — never writes back to the sessions directory.
20
+ * - Skips sessions that fail to parse (corrupt JSON) rather than
21
+ * crashing the whole report. Honest count via {@link
22
+ * InsightsReport.sessionsTotal}.
23
+ * - Ignores incognito sessions when counting query patterns (those
24
+ * are explicitly off-the-record).
25
+ * - Stable sort — top-N lists are deterministic across runs.
26
+ */
27
+ export interface InsightsOptions {
28
+ /** Working directory containing `.wotann/sessions/`. */
29
+ readonly workingDir: string;
30
+ /** Limit to sessions started within the last N days (omit = all time). */
31
+ readonly days?: number;
32
+ }
33
+ export interface TopCount {
34
+ readonly key: string;
35
+ readonly count: number;
36
+ }
37
+ export interface InsightsReport {
38
+ /** The day-window applied, or null when no window was requested. */
39
+ readonly windowDays: number | null;
40
+ /** Sessions present on disk (regardless of window). */
41
+ readonly sessionsTotal: number;
42
+ /** Sessions that fell within the configured day-window. */
43
+ readonly sessionsInWindow: number;
44
+ /** Sessions skipped because the JSON failed to parse. */
45
+ readonly sessionsCorrupt: number;
46
+ /** Sessions skipped because they were incognito. */
47
+ readonly sessionsIncognito: number;
48
+ /** Aggregate message count across the in-window non-incognito set. */
49
+ readonly messagesTotal: number;
50
+ readonly avgMessagesPerSession: number;
51
+ readonly tokensTotal: number;
52
+ readonly costTotal: number;
53
+ readonly toolCallsTotal: number;
54
+ /** Top tools by invocation count (descending). */
55
+ readonly topTools: readonly TopCount[];
56
+ /** Top user-query prefixes (first 5 words, lowercased) — descending. */
57
+ readonly topUserPrefixes: readonly TopCount[];
58
+ /** Top error patterns (Runtime error / [Guardrail] prefix). */
59
+ readonly errors: readonly TopCount[];
60
+ /** Distinct models observed in-window — sorted alphabetically. */
61
+ readonly modelsUsed: readonly string[];
62
+ /** Distinct providers observed in-window — sorted alphabetically. */
63
+ readonly providersUsed: readonly string[];
64
+ }
65
+ export declare function generateInsights(opts: InsightsOptions): InsightsReport;
66
+ /**
67
+ * Extract a 5-word, lowercased prefix from a user message. Returns null
68
+ * when the content is empty or whitespace-only so {@link bump} doesn't
69
+ * inflate a phantom "" bucket.
70
+ */
71
+ export declare function extractPrefix(content: string): string | null;
72
+ /**
73
+ * Recognize the two error shapes WOTANN's runtime emits as system
74
+ * messages: `Runtime error: <reason>` (from AppV3.tsx) and
75
+ * `[Guardrail] <reason>` (from runtime-agent-loop.ts). Anything else
76
+ * is treated as informational and ignored.
77
+ *
78
+ * The returned string is truncated to 80 chars to keep the histogram
79
+ * cardinality bounded (different stack traces / file paths shouldn't
80
+ * each get their own bucket).
81
+ */
82
+ export declare function normalizeErrorMessage(content: string): string | null;
@@ -0,0 +1,180 @@
1
+ /**
2
+ * Insights — deterministic metrics over saved WOTANN sessions.
3
+ *
4
+ * Hermes Gap 3 port: surface the "what worked / what failed / repeating
5
+ * patterns" data WOTANN already stores. The Hermes implementation adds
6
+ * an LLM-graded pass on top — that's deferred to a follow-up ticket
7
+ * (lands with the same aux-cred pattern the Skill Curator is waiting on).
8
+ * The data layer below is the foundation: pure aggregation, zero LLM,
9
+ * works fully offline.
10
+ *
11
+ * Inputs: every `.json` file in `<workingDir>/.wotann/sessions/`.
12
+ * Each file is a {@link SessionState} round-trip (see
13
+ * `src/core/session.ts`).
14
+ *
15
+ * Output: a structured {@link InsightsReport} with totals + top-N
16
+ * histograms for tools, user query prefixes, and error patterns.
17
+ *
18
+ * Strict invariants:
19
+ * - Pure read-only — never writes back to the sessions directory.
20
+ * - Skips sessions that fail to parse (corrupt JSON) rather than
21
+ * crashing the whole report. Honest count via {@link
22
+ * InsightsReport.sessionsTotal}.
23
+ * - Ignores incognito sessions when counting query patterns (those
24
+ * are explicitly off-the-record).
25
+ * - Stable sort — top-N lists are deterministic across runs.
26
+ */
27
+ import { existsSync, readdirSync } from "node:fs";
28
+ import { join } from "node:path";
29
+ import { restoreSession } from "../core/session.js";
30
+ // ── Public API ────────────────────────────────────────────────────
31
+ export function generateInsights(opts) {
32
+ const sessionsDir = join(opts.workingDir, ".wotann", "sessions");
33
+ if (!existsSync(sessionsDir)) {
34
+ return emptyReport(opts.days ?? null);
35
+ }
36
+ const files = readdirSync(sessionsDir).filter((name) => name.endsWith(".json"));
37
+ const parsed = [];
38
+ let corrupt = 0;
39
+ for (const name of files) {
40
+ const session = restoreSession(join(sessionsDir, name));
41
+ if (session === null) {
42
+ corrupt++;
43
+ continue;
44
+ }
45
+ parsed.push(session);
46
+ }
47
+ return buildReport(parsed, opts.days, corrupt);
48
+ }
49
+ // ── Internal helpers ──────────────────────────────────────────────
50
+ function buildReport(sessions, days, corruptCount) {
51
+ const cutoffMs = days !== undefined ? Date.now() - days * 86_400_000 : null;
52
+ const inWindow = cutoffMs !== null
53
+ ? sessions.filter((s) => {
54
+ const startMs = s.startedAt instanceof Date ? s.startedAt.getTime() : new Date(s.startedAt).getTime();
55
+ return Number.isFinite(startMs) && startMs >= cutoffMs;
56
+ })
57
+ : sessions;
58
+ const incognito = inWindow.filter((s) => s.incognito);
59
+ const live = inWindow.filter((s) => !s.incognito);
60
+ let messagesTotal = 0;
61
+ let tokensTotal = 0;
62
+ let costTotal = 0;
63
+ let toolCallsTotal = 0;
64
+ const toolCounts = new Map();
65
+ const prefixCounts = new Map();
66
+ const errorCounts = new Map();
67
+ const models = new Set();
68
+ const providers = new Set();
69
+ for (const session of live) {
70
+ messagesTotal += session.messages.length;
71
+ tokensTotal += session.totalTokens;
72
+ costTotal += session.totalCost;
73
+ toolCallsTotal += session.toolCalls;
74
+ if (typeof session.model === "string" && session.model.length > 0) {
75
+ models.add(session.model);
76
+ }
77
+ if (typeof session.provider === "string" && session.provider.length > 0) {
78
+ providers.add(session.provider);
79
+ }
80
+ for (const msg of session.messages) {
81
+ if (msg.role === "tool" && typeof msg.toolName === "string" && msg.toolName.length > 0) {
82
+ bump(toolCounts, msg.toolName);
83
+ }
84
+ if (msg.role === "user" && typeof msg.content === "string") {
85
+ const prefix = extractPrefix(msg.content);
86
+ if (prefix !== null)
87
+ bump(prefixCounts, prefix);
88
+ }
89
+ if (msg.role === "system" && typeof msg.content === "string") {
90
+ const normalized = normalizeErrorMessage(msg.content);
91
+ if (normalized !== null)
92
+ bump(errorCounts, normalized);
93
+ }
94
+ }
95
+ }
96
+ return {
97
+ windowDays: days ?? null,
98
+ sessionsTotal: sessions.length,
99
+ sessionsInWindow: inWindow.length,
100
+ sessionsCorrupt: corruptCount,
101
+ sessionsIncognito: incognito.length,
102
+ messagesTotal,
103
+ avgMessagesPerSession: live.length > 0 ? messagesTotal / live.length : 0,
104
+ tokensTotal,
105
+ costTotal,
106
+ toolCallsTotal,
107
+ topTools: topN(toolCounts, 10),
108
+ topUserPrefixes: topN(prefixCounts, 10),
109
+ errors: topN(errorCounts, 10),
110
+ modelsUsed: [...models].sort(),
111
+ providersUsed: [...providers].sort(),
112
+ };
113
+ }
114
+ /**
115
+ * Extract a 5-word, lowercased prefix from a user message. Returns null
116
+ * when the content is empty or whitespace-only so {@link bump} doesn't
117
+ * inflate a phantom "" bucket.
118
+ */
119
+ export function extractPrefix(content) {
120
+ const words = content
121
+ .trim()
122
+ .split(/\s+/)
123
+ .filter((w) => w.length > 0)
124
+ .slice(0, 5);
125
+ if (words.length === 0)
126
+ return null;
127
+ return words.join(" ").toLowerCase();
128
+ }
129
+ /**
130
+ * Recognize the two error shapes WOTANN's runtime emits as system
131
+ * messages: `Runtime error: <reason>` (from AppV3.tsx) and
132
+ * `[Guardrail] <reason>` (from runtime-agent-loop.ts). Anything else
133
+ * is treated as informational and ignored.
134
+ *
135
+ * The returned string is truncated to 80 chars to keep the histogram
136
+ * cardinality bounded (different stack traces / file paths shouldn't
137
+ * each get their own bucket).
138
+ */
139
+ export function normalizeErrorMessage(content) {
140
+ if (content.startsWith("Runtime error:") || content.startsWith("[Guardrail]")) {
141
+ return content.slice(0, 80);
142
+ }
143
+ return null;
144
+ }
145
+ function bump(counts, key) {
146
+ counts.set(key, (counts.get(key) ?? 0) + 1);
147
+ }
148
+ /**
149
+ * Top-N by count, descending. Ties resolve by key lexicographic order
150
+ * so output is deterministic across runs.
151
+ */
152
+ function topN(counts, n) {
153
+ return [...counts.entries()]
154
+ .map(([key, count]) => ({ key, count }))
155
+ .sort((a, b) => {
156
+ if (b.count !== a.count)
157
+ return b.count - a.count;
158
+ return a.key.localeCompare(b.key);
159
+ })
160
+ .slice(0, n);
161
+ }
162
+ function emptyReport(windowDays) {
163
+ return {
164
+ windowDays,
165
+ sessionsTotal: 0,
166
+ sessionsInWindow: 0,
167
+ sessionsCorrupt: 0,
168
+ sessionsIncognito: 0,
169
+ messagesTotal: 0,
170
+ avgMessagesPerSession: 0,
171
+ tokensTotal: 0,
172
+ costTotal: 0,
173
+ toolCallsTotal: 0,
174
+ topTools: [],
175
+ topUserPrefixes: [],
176
+ errors: [],
177
+ modelsUsed: [],
178
+ providersUsed: [],
179
+ };
180
+ }
@@ -41,7 +41,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "#wotann-jsx/j
41
41
  */
42
42
  import { useCallback, useEffect, useMemo, useRef, useState } from "react";
43
43
  import { Box, Text, useInput } from "ink";
44
- import { runAgent } from "../../../core/runtime-agent-loop.js";
44
+ import { InMemoryRedirectChannel, runAgent } from "../../../core/runtime-agent-loop.js";
45
45
  import { buildAgentToolContext } from "../../../core/agent-tool-context.js";
46
46
  import { AGENT_TOOL_DEFINITIONS, executeAgentTool } from "../../../tools/agent-tools.js";
47
47
  import { ThemeProvider, useThemeTone } from "../../theme/context.js";
@@ -217,6 +217,13 @@ function AppV3Inner({ providers, initialModel, initialProvider, messages, isStre
217
217
  const [transcriptScrollOffset, setTranscriptScrollOffset] = useState(0);
218
218
  const activeRunRef = useRef(null);
219
219
  const sideActiveRunRef = useRef(null);
220
+ // Hermes Gap 2 — interrupt-and-redirect: persistent channel for the
221
+ // host composer's mid-stream redirects. Ctrl+R captures the current
222
+ // draft and pushes it here; runAgent's iteration loop drains pending
223
+ // redirects at the next iteration boundary and appends them to
224
+ // context as new user turns. One channel per AppV3Inner instance so
225
+ // pending redirects survive within a session.
226
+ const redirectChannelRef = useRef(new InMemoryRedirectChannel());
220
227
  const [sidePaneDraft, setSidePaneDraft] = useState("");
221
228
  const [nowMs, setNowMs] = useState(() => Date.now());
222
229
  useEffect(() => {
@@ -241,6 +248,16 @@ function AppV3Inner({ providers, initialModel, initialProvider, messages, isStre
241
248
  // composer is empty so we don't intercept the dot from a typed
242
249
  // slash-command argument or filename.
243
250
  useInput((input, key) => {
251
+ // Hermes Gap 2 — Ctrl+R: queue the composer draft as a mid-stream
252
+ // redirect. ONLY fires when the agent is currently streaming AND
253
+ // the draft has non-whitespace content. The channel's drain runs
254
+ // at the next iteration boundary, so the user sees a system
255
+ // "redirect queued" bubble within ~1 turn.
256
+ if (key.ctrl && input === "r" && isStreaming && draftValue.trim().length > 0) {
257
+ redirectChannelRef.current.push(draftValue);
258
+ setDraftValue("");
259
+ return;
260
+ }
244
261
  if (key.ctrl && (input === "k" || input === "p")) {
245
262
  overlay.open("palette");
246
263
  return;
@@ -342,6 +359,7 @@ function AppV3Inner({ providers, initialModel, initialProvider, messages, isStre
342
359
  provider: initialProvider || undefined,
343
360
  tools: AGENT_TOOL_DEFINITIONS,
344
361
  signal: abortController.signal,
362
+ redirectChannel: redirectChannelRef.current,
345
363
  query: (o) => runtime.query(o),
346
364
  executeTool: (name, input) => executeAgentTool(name, input, buildAgentToolContext(runtime, {
347
365
  workingDir: runtime.getWorkingDir(),
@@ -362,6 +380,20 @@ function AppV3Inner({ providers, initialModel, initialProvider, messages, isStre
362
380
  },
363
381
  ]);
364
382
  }
383
+ else if (ev.kind === "redirect_received") {
384
+ // Hermes Gap 2 — UI breadcrumb so user sees the directive
385
+ // landed. The loop already appended it to context; we
386
+ // ONLY render here (do NOT push to context again).
387
+ for (const message of ev.messages) {
388
+ setMessages((prev) => [
389
+ ...prev,
390
+ {
391
+ role: "system",
392
+ content: `↳ redirect queued: ${message}`,
393
+ },
394
+ ]);
395
+ }
396
+ }
365
397
  continue;
366
398
  }
367
399
  if (ev.type === "text" && ev.content.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wotann",
3
- "version": "0.5.86",
3
+ "version": "0.5.88",
4
4
  "description": "WOTANN — The All-Father of AI Agent Harnesses",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",