* docs: thread-bound subagents plan * docs: add exact thread-bound subagent implementation touchpoints * Docs: prioritize auto thread-bound subagent flow * Docs: add ACP harness thread-binding extensions * Discord: add thread-bound session routing and auto-bind spawn flow * Subagents: add focus commands and ACP/session binding lifecycle hooks * Tests: cover thread bindings, focus commands, and ACP unbind hooks * Docs: add plugin-hook appendix for thread-bound subagents * Plugins: add subagent lifecycle hook events * Core: emit subagent lifecycle hooks and decouple Discord bindings * Discord: handle subagent bind lifecycle via plugin hooks * Subagents: unify completion finalizer and split registry modules * Add subagent lifecycle events module * Hooks: fix subagent ended context key * Discord: share thread bindings across ESM and Jiti * Subagents: add persistent sessions_spawn mode for thread-bound sessions * Subagents: clarify thread intro and persistent completion copy * test(subagents): stabilize sessions_spawn lifecycle cleanup assertions * Discord: add thread-bound session TTL with auto-unfocus * Subagents: fail session spawns when thread bind fails * Subagents: cover thread session failure cleanup paths * Session: add thread binding TTL config and /session ttl controls * Tests: align discord reaction expectations * Agent: persist sessionFile for keyed subagent sessions * Discord: normalize imports after conflict resolution * Sessions: centralize sessionFile resolve/persist helper * Discord: harden thread-bound subagent session routing * Rebase: resolve upstream/main conflicts * Subagents: move thread binding into hooks and split bindings modules * Docs: add channel-agnostic subagent routing hook plan * Agents: decouple subagent routing from Discord * Discord: refactor thread-bound subagent flows * Subagents: prevent duplicate end hooks and orphaned failed sessions * Refactor: split subagent command and provider phases * Subagents: honor hook delivery target overrides * Discord: add thread binding kill switches and refresh plan doc * Discord: fix thread bind channel resolution * Routing: centralize account id normalization * Discord: clean up thread bindings on startup failures * Discord: add startup cleanup regression tests * Docs: add long-term thread-bound subagent architecture * Docs: split session binding plan and dedupe thread-bound doc * Subagents: add channel-agnostic session binding routing * Subagents: stabilize announce completion routing tests * Subagents: cover multi-bound completion routing * Subagents: suppress lifecycle hooks on failed thread bind * tests: fix discord provider mock typing regressions * docs/protocol: sync slash command aliases and delete param models * fix: add changelog entry for Discord thread-bound subagents (#21805) (thanks @onutc) --------- Co-authored-by: Shadow <hi@shadowing.dev>
209 lines
6.6 KiB
TypeScript
209 lines
6.6 KiB
TypeScript
import type { ChatType } from "../channels/chat-type.js";
|
||
|
||
export type ReplyMode = "text" | "command";
|
||
export type TypingMode = "never" | "instant" | "thinking" | "message";
|
||
export type SessionScope = "per-sender" | "global";
|
||
export type DmScope = "main" | "per-peer" | "per-channel-peer" | "per-account-channel-peer";
|
||
export type ReplyToMode = "off" | "first" | "all";
|
||
export type GroupPolicy = "open" | "disabled" | "allowlist";
|
||
export type DmPolicy = "pairing" | "allowlist" | "open" | "disabled";
|
||
|
||
export type OutboundRetryConfig = {
|
||
/** Max retry attempts for outbound requests (default: 3). */
|
||
attempts?: number;
|
||
/** Minimum retry delay in ms (default: 300-500ms depending on provider). */
|
||
minDelayMs?: number;
|
||
/** Maximum retry delay cap in ms (default: 30000). */
|
||
maxDelayMs?: number;
|
||
/** Jitter factor (0-1) applied to delays (default: 0.1). */
|
||
jitter?: number;
|
||
};
|
||
|
||
export type BlockStreamingCoalesceConfig = {
|
||
minChars?: number;
|
||
maxChars?: number;
|
||
idleMs?: number;
|
||
};
|
||
|
||
export type BlockStreamingChunkConfig = {
|
||
minChars?: number;
|
||
maxChars?: number;
|
||
breakPreference?: "paragraph" | "newline" | "sentence";
|
||
};
|
||
|
||
export type MarkdownTableMode = "off" | "bullets" | "code";
|
||
|
||
export type MarkdownConfig = {
|
||
/** Table rendering mode (off|bullets|code). */
|
||
tables?: MarkdownTableMode;
|
||
};
|
||
|
||
export type HumanDelayConfig = {
|
||
/** Delay style for block replies (off|natural|custom). */
|
||
mode?: "off" | "natural" | "custom";
|
||
/** Minimum delay in milliseconds (default: 800). */
|
||
minMs?: number;
|
||
/** Maximum delay in milliseconds (default: 2500). */
|
||
maxMs?: number;
|
||
};
|
||
|
||
export type SessionSendPolicyAction = "allow" | "deny";
|
||
export type SessionSendPolicyMatch = {
|
||
channel?: string;
|
||
chatType?: ChatType;
|
||
/**
|
||
* Session key prefix match.
|
||
* Note: some consumers match against a normalized key (for example, stripping `agent:<id>:`).
|
||
*/
|
||
keyPrefix?: string;
|
||
/** Optional raw session-key prefix match for consumers that normalize session keys. */
|
||
rawKeyPrefix?: string;
|
||
};
|
||
export type SessionSendPolicyRule = {
|
||
action: SessionSendPolicyAction;
|
||
match?: SessionSendPolicyMatch;
|
||
};
|
||
export type SessionSendPolicyConfig = {
|
||
default?: SessionSendPolicyAction;
|
||
rules?: SessionSendPolicyRule[];
|
||
};
|
||
|
||
export type SessionResetMode = "daily" | "idle";
|
||
export type SessionResetConfig = {
|
||
mode?: SessionResetMode;
|
||
/** Local hour (0-23) for the daily reset boundary. */
|
||
atHour?: number;
|
||
/** Sliding idle window (minutes). When set with daily mode, whichever expires first wins. */
|
||
idleMinutes?: number;
|
||
};
|
||
export type SessionResetByTypeConfig = {
|
||
direct?: SessionResetConfig;
|
||
/** @deprecated Use `direct` instead. Kept for backward compatibility. */
|
||
dm?: SessionResetConfig;
|
||
group?: SessionResetConfig;
|
||
thread?: SessionResetConfig;
|
||
};
|
||
|
||
export type SessionThreadBindingsConfig = {
|
||
/**
|
||
* Master switch for thread-bound session routing features.
|
||
* Channel/provider keys can override this default.
|
||
*/
|
||
enabled?: boolean;
|
||
/**
|
||
* Auto-unfocus TTL for thread-bound sessions (hours).
|
||
* Set to 0 to disable. Default: 24.
|
||
*/
|
||
ttlHours?: number;
|
||
};
|
||
|
||
export type SessionConfig = {
|
||
scope?: SessionScope;
|
||
/** DM session scoping (default: "main"). */
|
||
dmScope?: DmScope;
|
||
/** Map platform-prefixed identities (e.g. "telegram:123") to canonical DM peers. */
|
||
identityLinks?: Record<string, string[]>;
|
||
resetTriggers?: string[];
|
||
idleMinutes?: number;
|
||
reset?: SessionResetConfig;
|
||
resetByType?: SessionResetByTypeConfig;
|
||
/** Channel-specific reset overrides (e.g. { discord: { mode: "idle", idleMinutes: 10080 } }). */
|
||
resetByChannel?: Record<string, SessionResetConfig>;
|
||
store?: string;
|
||
typingIntervalSeconds?: number;
|
||
typingMode?: TypingMode;
|
||
mainKey?: string;
|
||
sendPolicy?: SessionSendPolicyConfig;
|
||
agentToAgent?: {
|
||
/** Max ping-pong turns between requester/target (0–5). Default: 5. */
|
||
maxPingPongTurns?: number;
|
||
};
|
||
/** Shared defaults for thread-bound session routing across channels/providers. */
|
||
threadBindings?: SessionThreadBindingsConfig;
|
||
/** Automatic session store maintenance (pruning, capping, file rotation). */
|
||
maintenance?: SessionMaintenanceConfig;
|
||
};
|
||
|
||
export type SessionMaintenanceMode = "enforce" | "warn";
|
||
|
||
export type SessionMaintenanceConfig = {
|
||
/** Whether to enforce maintenance or warn only. Default: "warn". */
|
||
mode?: SessionMaintenanceMode;
|
||
/** Remove session entries older than this duration (e.g. "30d", "12h"). Default: "30d". */
|
||
pruneAfter?: string | number;
|
||
/** Deprecated. Use pruneAfter instead. */
|
||
pruneDays?: number;
|
||
/** Maximum number of session entries to keep. Default: 500. */
|
||
maxEntries?: number;
|
||
/** Rotate sessions.json when it exceeds this size (e.g. "10mb"). Default: 10mb. */
|
||
rotateBytes?: number | string;
|
||
};
|
||
|
||
export type LoggingConfig = {
|
||
level?: "silent" | "fatal" | "error" | "warn" | "info" | "debug" | "trace";
|
||
file?: string;
|
||
consoleLevel?: "silent" | "fatal" | "error" | "warn" | "info" | "debug" | "trace";
|
||
consoleStyle?: "pretty" | "compact" | "json";
|
||
/** Redact sensitive tokens in tool summaries. Default: "tools". */
|
||
redactSensitive?: "off" | "tools";
|
||
/** Regex patterns used to redact sensitive tokens (defaults apply when unset). */
|
||
redactPatterns?: string[];
|
||
};
|
||
|
||
export type DiagnosticsOtelConfig = {
|
||
enabled?: boolean;
|
||
endpoint?: string;
|
||
protocol?: "http/protobuf" | "grpc";
|
||
headers?: Record<string, string>;
|
||
serviceName?: string;
|
||
traces?: boolean;
|
||
metrics?: boolean;
|
||
logs?: boolean;
|
||
/** Trace sample rate (0.0 - 1.0). */
|
||
sampleRate?: number;
|
||
/** Metric export interval (ms). */
|
||
flushIntervalMs?: number;
|
||
};
|
||
|
||
export type DiagnosticsCacheTraceConfig = {
|
||
enabled?: boolean;
|
||
filePath?: string;
|
||
includeMessages?: boolean;
|
||
includePrompt?: boolean;
|
||
includeSystem?: boolean;
|
||
};
|
||
|
||
export type DiagnosticsConfig = {
|
||
enabled?: boolean;
|
||
/** Optional ad-hoc diagnostics flags (e.g. "telegram.http"). */
|
||
flags?: string[];
|
||
otel?: DiagnosticsOtelConfig;
|
||
cacheTrace?: DiagnosticsCacheTraceConfig;
|
||
};
|
||
|
||
export type WebReconnectConfig = {
|
||
initialMs?: number;
|
||
maxMs?: number;
|
||
factor?: number;
|
||
jitter?: number;
|
||
maxAttempts?: number; // 0 = unlimited
|
||
};
|
||
|
||
export type WebConfig = {
|
||
/** If false, do not start the WhatsApp web provider. Default: true. */
|
||
enabled?: boolean;
|
||
heartbeatSeconds?: number;
|
||
reconnect?: WebReconnectConfig;
|
||
};
|
||
|
||
// Provider docking: allowlists keyed by provider id (and internal "webchat").
|
||
export type AgentElevatedAllowFromConfig = Partial<Record<string, Array<string | number>>>;
|
||
|
||
export type IdentityConfig = {
|
||
name?: string;
|
||
theme?: string;
|
||
emoji?: string;
|
||
/** Avatar image: workspace-relative path, http(s) URL, or data URI. */
|
||
avatar?: string;
|
||
};
|