@elizaos/plugin-directives 2.0.0-alpha.5 → 2.0.0-alpha.6

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.
@@ -226,8 +226,9 @@ function extractThinkDirective(body) {
226
226
  if (!body)
227
227
  return { cleaned: "", hasDirective: false };
228
228
  const extracted = extractLevelDirective(body, ["thinking", "think", "t"], normalizeThinkLevel);
229
+ const cleaned = extracted.hasDirective && !extracted.level && extracted.rawLevel ? `${extracted.rawLevel} ${extracted.cleaned}`.trim() : extracted.cleaned;
229
230
  return {
230
- cleaned: extracted.cleaned,
231
+ cleaned,
231
232
  thinkLevel: extracted.level,
232
233
  rawLevel: extracted.rawLevel,
233
234
  hasDirective: extracted.hasDirective
@@ -312,7 +313,7 @@ function extractExecDirective(body) {
312
313
  hasDirective: false
313
314
  };
314
315
  }
315
- const execMatch = body.match(/(?:^|\s)\/exec(?:\s+([^\/\n]+))?(?=$|\s|\/)/i);
316
+ const execMatch = body.match(/(?:^|\s)\/exec(?:\s+([^/\n]+))?(?=$|\s|\/)/i);
316
317
  if (!execMatch) {
317
318
  return {
318
319
  cleaned: body.trim(),
@@ -331,8 +332,7 @@ function extractExecDirective(body) {
331
332
  let rawExecAsk;
332
333
  let rawExecNode;
333
334
  const kvPattern = /(\w+)\s*=\s*([^\s]+)/g;
334
- let match;
335
- while ((match = kvPattern.exec(args)) !== null) {
335
+ for (const match of args.matchAll(kvPattern)) {
336
336
  const key = match[1].toLowerCase();
337
337
  const value = match[2];
338
338
  if (key === "host")
@@ -560,7 +560,8 @@ function formatDirectiveAcknowledgment(directives) {
560
560
  var directiveStateProvider = {
561
561
  name: "DIRECTIVE_STATE",
562
562
  description: "Current directive levels (thinking, verbose, model, etc.)",
563
- async get(runtime, message, _state) {
563
+ dynamic: true,
564
+ async get(_runtime, message, _state) {
564
565
  const roomId = message.roomId;
565
566
  const directives = getDirectiveState(roomId);
566
567
  return {
@@ -687,10 +688,10 @@ var directivesPlugin = {
687
688
  ]
688
689
  }
689
690
  ],
690
- async init(_config, runtime) {
691
+ async init(_config, _runtime) {
691
692
  import_core.logger.log("[plugin-directives] Initializing directive parser");
692
693
  }
693
694
  };
694
695
  var src_default = directivesPlugin;
695
696
 
696
- //# debugId=DB05CA1BBD0B951464756E2164756E21
697
+ //# debugId=21873DD0528C6F7A64756E2164756E21
@@ -2,10 +2,10 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts", "../../src/parsers.ts"],
4
4
  "sourcesContent": [
5
- "/**\n * Plugin Directives - Inline directive parsing for Eliza agents\n *\n * Parses and applies inline directives from message text:\n * - /think or /t - Thinking level control\n * - /verbose or /v - Verbose output control\n * - /reasoning - Reasoning visibility\n * - /elevated - Elevated permissions\n * - /exec - Execution environment settings\n * - /model - Model selection\n * - /status - Status request\n */\n\nimport {\n type IAgentRuntime,\n type Plugin,\n type Provider,\n type ProviderResult,\n logger,\n} from \"@elizaos/core\";\n\nimport {\n extractElevatedDirective,\n extractExecDirective,\n extractModelDirective,\n extractReasoningDirective,\n extractStatusDirective,\n extractThinkDirective,\n extractVerboseDirective,\n normalizeElevatedLevel,\n normalizeReasoningLevel,\n normalizeThinkLevel,\n normalizeVerboseLevel,\n} from \"./parsers\";\n\nimport type {\n DirectiveState,\n ElevatedLevel,\n ParsedDirectives,\n ParseOptions,\n ReasoningLevel,\n ThinkLevel,\n VerboseLevel,\n} from \"./types\";\n\n// Re-export types\nexport * from \"./types\";\nexport * from \"./parsers\";\n\n// ============================================================================\n// Session State Management\n// ============================================================================\n\nconst sessionStates = new Map<string, DirectiveState>();\n\nfunction getDefaultState(): DirectiveState {\n return {\n thinking: \"low\",\n verbose: \"off\",\n reasoning: \"off\",\n elevated: \"off\",\n exec: {},\n model: {},\n };\n}\n\n/**\n * Get directive state for a room\n */\nexport function getDirectiveState(roomId: string): DirectiveState {\n return sessionStates.get(roomId) ?? getDefaultState();\n}\n\n/**\n * Set directive state for a room\n */\nexport function setDirectiveState(roomId: string, state: DirectiveState): void {\n sessionStates.set(roomId, state);\n}\n\n/**\n * Clear directive state for a room\n */\nexport function clearDirectiveState(roomId: string): void {\n sessionStates.delete(roomId);\n}\n\n// ============================================================================\n// Main Parse Function\n// ============================================================================\n\n/**\n * Parse all inline directives from message text\n */\nexport function parseDirectives(\n body: string,\n options?: ParseOptions,\n): ParsedDirectives {\n const {\n cleaned: thinkCleaned,\n thinkLevel,\n rawLevel: rawThinkLevel,\n hasDirective: hasThinkDirective,\n } = extractThinkDirective(body);\n\n const {\n cleaned: verboseCleaned,\n verboseLevel,\n rawLevel: rawVerboseLevel,\n hasDirective: hasVerboseDirective,\n } = extractVerboseDirective(thinkCleaned);\n\n const {\n cleaned: reasoningCleaned,\n reasoningLevel,\n rawLevel: rawReasoningLevel,\n hasDirective: hasReasoningDirective,\n } = extractReasoningDirective(verboseCleaned);\n\n const {\n cleaned: elevatedCleaned,\n elevatedLevel,\n rawLevel: rawElevatedLevel,\n hasDirective: hasElevatedDirective,\n } = options?.disableElevated\n ? {\n cleaned: reasoningCleaned,\n elevatedLevel: undefined,\n rawLevel: undefined,\n hasDirective: false,\n }\n : extractElevatedDirective(reasoningCleaned);\n\n const {\n cleaned: execCleaned,\n execHost,\n execSecurity,\n execAsk,\n execNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions,\n invalidHost: invalidExecHost,\n invalidSecurity: invalidExecSecurity,\n invalidAsk: invalidExecAsk,\n invalidNode: invalidExecNode,\n hasDirective: hasExecDirective,\n } = extractExecDirective(elevatedCleaned);\n\n const allowStatusDirective = options?.allowStatusDirective !== false;\n const { cleaned: statusCleaned, hasDirective: hasStatusDirective } =\n allowStatusDirective\n ? extractStatusDirective(execCleaned)\n : { cleaned: execCleaned, hasDirective: false };\n\n const {\n cleaned: modelCleaned,\n rawModel,\n rawProfile,\n hasDirective: hasModelDirective,\n } = extractModelDirective(statusCleaned, {\n aliases: options?.modelAliases,\n });\n\n // Determine if message contains only directives\n const hasAnyDirective =\n hasThinkDirective ||\n hasVerboseDirective ||\n hasReasoningDirective ||\n hasElevatedDirective ||\n hasExecDirective ||\n hasModelDirective;\n const directivesOnly = hasAnyDirective && modelCleaned.trim().length === 0;\n\n return {\n cleanedText: modelCleaned,\n directivesOnly,\n hasThinkDirective,\n thinkLevel,\n rawThinkLevel,\n hasVerboseDirective,\n verboseLevel,\n rawVerboseLevel,\n hasReasoningDirective,\n reasoningLevel,\n rawReasoningLevel,\n hasElevatedDirective,\n elevatedLevel,\n rawElevatedLevel,\n hasExecDirective,\n execHost,\n execSecurity,\n execAsk,\n execNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions,\n invalidExecHost,\n invalidExecSecurity,\n invalidExecAsk,\n invalidExecNode,\n hasStatusDirective,\n hasModelDirective,\n rawModelDirective: rawModel,\n rawModelProfile: rawProfile,\n };\n}\n\n/**\n * Apply parsed directives to session state\n */\nexport function applyDirectives(\n roomId: string,\n directives: ParsedDirectives,\n persist = true,\n): DirectiveState {\n const current = getDirectiveState(roomId);\n const updated = { ...current };\n\n if (directives.hasThinkDirective && directives.thinkLevel) {\n updated.thinking = directives.thinkLevel;\n }\n if (directives.hasVerboseDirective && directives.verboseLevel) {\n updated.verbose = directives.verboseLevel;\n }\n if (directives.hasReasoningDirective && directives.reasoningLevel) {\n updated.reasoning = directives.reasoningLevel;\n }\n if (directives.hasElevatedDirective && directives.elevatedLevel) {\n updated.elevated = directives.elevatedLevel;\n }\n if (directives.hasExecDirective) {\n updated.exec = {\n ...updated.exec,\n ...(directives.execHost && { host: directives.execHost }),\n ...(directives.execSecurity && { security: directives.execSecurity }),\n ...(directives.execAsk && { ask: directives.execAsk }),\n ...(directives.execNode && { node: directives.execNode }),\n };\n }\n if (directives.hasModelDirective && directives.rawModelDirective) {\n const parts = directives.rawModelDirective.split(\"/\");\n if (parts.length === 2) {\n updated.model = {\n provider: parts[0],\n model: parts[1],\n authProfile: directives.rawModelProfile,\n };\n } else {\n updated.model = {\n model: directives.rawModelDirective,\n authProfile: directives.rawModelProfile,\n };\n }\n }\n\n if (persist) {\n setDirectiveState(roomId, updated);\n }\n\n return updated;\n}\n\n/**\n * Format directive state for display\n */\nexport function formatDirectiveState(state: DirectiveState): string {\n const lines: string[] = [];\n lines.push(`Thinking: ${state.thinking}`);\n lines.push(`Verbose: ${state.verbose}`);\n lines.push(`Reasoning: ${state.reasoning}`);\n lines.push(`Elevated: ${state.elevated}`);\n if (state.model.provider || state.model.model) {\n const modelStr = state.model.provider\n ? `${state.model.provider}/${state.model.model}`\n : state.model.model;\n lines.push(\n `Model: ${modelStr}${state.model.authProfile ? ` @${state.model.authProfile}` : \"\"}`,\n );\n }\n return lines.join(\"\\n\");\n}\n\n/**\n * Format acknowledgment for directive-only messages\n */\nexport function formatDirectiveAcknowledgment(\n directives: ParsedDirectives,\n): string {\n const changes: string[] = [];\n\n if (directives.hasThinkDirective) {\n changes.push(`Thinking: ${directives.thinkLevel ?? \"status\"}`);\n }\n if (directives.hasVerboseDirective) {\n changes.push(`Verbose: ${directives.verboseLevel ?? \"status\"}`);\n }\n if (directives.hasReasoningDirective) {\n changes.push(`Reasoning: ${directives.reasoningLevel ?? \"status\"}`);\n }\n if (directives.hasElevatedDirective) {\n changes.push(`Elevated: ${directives.elevatedLevel ?? \"status\"}`);\n }\n if (directives.hasModelDirective) {\n changes.push(`Model: ${directives.rawModelDirective ?? \"status\"}`);\n }\n\n return changes.length > 0 ? `✓ ${changes.join(\", \")}` : \"No changes applied\";\n}\n\n// ============================================================================\n// Provider\n// ============================================================================\n\n/**\n * Provider that exposes current directive state to the agent\n */\nexport const directiveStateProvider: Provider = {\n name: \"DIRECTIVE_STATE\",\n description: \"Current directive levels (thinking, verbose, model, etc.)\",\n\n async get(runtime, message, _state): Promise<ProviderResult> {\n const roomId = message.roomId;\n const directives = getDirectiveState(roomId);\n\n return {\n text: formatDirectiveState(directives),\n values: {\n thinkingLevel: directives.thinking,\n verboseLevel: directives.verbose,\n reasoningLevel: directives.reasoning,\n elevatedLevel: directives.elevated,\n modelProvider: directives.model.provider ?? \"\",\n modelName: directives.model.model ?? \"\",\n isElevated: directives.elevated !== \"off\",\n },\n data: { directives },\n };\n },\n};\n\n// ============================================================================\n// Plugin Export\n// ============================================================================\n\n/**\n * Plugin Directives\n *\n * Provides inline directive parsing for Eliza agents, allowing users to\n * control thinking levels, verbosity, model selection, and more through\n * inline commands in their messages.\n */\nexport const directivesPlugin: Plugin = {\n name: \"directives\",\n description:\n \"Inline directive parsing (@think, @model, @verbose, etc.) for controlling agent behavior\",\n\n providers: [directiveStateProvider],\n\n config: {\n DEFAULT_THINKING: \"low\",\n DEFAULT_VERBOSE: \"off\",\n ALLOW_ELEVATED: \"true\",\n ALLOW_EXEC: \"false\",\n },\n\n tests: [\n {\n name: \"directive-parsing\",\n tests: [\n {\n name: \"Parse think directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/think:high hello world\");\n if (!result.hasThinkDirective) {\n throw new Error(\"Should detect think directive\");\n }\n if (result.thinkLevel !== \"high\") {\n throw new Error(`Expected 'high', got '${result.thinkLevel}'`);\n }\n if (result.cleanedText !== \"hello world\") {\n throw new Error(\n `Expected 'hello world', got '${result.cleanedText}'`,\n );\n }\n logger.success(\"Think directive parsed correctly\");\n },\n },\n {\n name: \"Parse verbose directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/v on test message\");\n if (!result.hasVerboseDirective) {\n throw new Error(\"Should detect verbose directive\");\n }\n if (result.verboseLevel !== \"on\") {\n throw new Error(`Expected 'on', got '${result.verboseLevel}'`);\n }\n logger.success(\"Verbose directive parsed correctly\");\n },\n },\n {\n name: \"Parse model directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\n \"/model anthropic/claude-3-opus what is 2+2\",\n );\n if (!result.hasModelDirective) {\n throw new Error(\"Should detect model directive\");\n }\n if (result.rawModelDirective !== \"anthropic/claude-3-opus\") {\n throw new Error(\n `Expected 'anthropic/claude-3-opus', got '${result.rawModelDirective}'`,\n );\n }\n logger.success(\"Model directive parsed correctly\");\n },\n },\n {\n name: \"Detect directive-only message\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/think:high /verbose on\");\n if (!result.directivesOnly) {\n throw new Error(\"Should detect directive-only message\");\n }\n logger.success(\"Directive-only detection works correctly\");\n },\n },\n {\n name: \"Parse multiple directives\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\n \"/think:medium /v full /elevated on hello\",\n );\n if (\n !result.hasThinkDirective ||\n !result.hasVerboseDirective ||\n !result.hasElevatedDirective\n ) {\n throw new Error(\"Should detect all directives\");\n }\n if (result.thinkLevel !== \"medium\") {\n throw new Error(`Expected 'medium', got '${result.thinkLevel}'`);\n }\n if (result.verboseLevel !== \"full\") {\n throw new Error(`Expected 'full', got '${result.verboseLevel}'`);\n }\n if (result.elevatedLevel !== \"on\") {\n throw new Error(`Expected 'on', got '${result.elevatedLevel}'`);\n }\n if (result.cleanedText !== \"hello\") {\n throw new Error(`Expected 'hello', got '${result.cleanedText}'`);\n }\n logger.success(\"Multiple directives parsed correctly\");\n },\n },\n {\n name: \"Session state management\",\n fn: async (_runtime: IAgentRuntime) => {\n const roomId = \"test-room-123\";\n clearDirectiveState(roomId);\n\n const directives = parseDirectives(\"/think:high /verbose on\");\n applyDirectives(roomId, directives);\n\n const state = getDirectiveState(roomId);\n if (state.thinking !== \"high\") {\n throw new Error(\n `Expected thinking 'high', got '${state.thinking}'`,\n );\n }\n if (state.verbose !== \"on\") {\n throw new Error(`Expected verbose 'on', got '${state.verbose}'`);\n }\n\n clearDirectiveState(roomId);\n logger.success(\"Session state management works correctly\");\n },\n },\n ],\n },\n ],\n\n async init(_config, runtime) {\n logger.log(\"[plugin-directives] Initializing directive parser\");\n },\n};\n\nexport default directivesPlugin;\n",
6
- "/**\n * Directive parsers for extracting inline directives from message text\n */\n\nimport type {\n DirectiveExtractResult,\n ElevatedLevel,\n ExecAsk,\n ExecHost,\n ExecSecurity,\n ReasoningLevel,\n ThinkLevel,\n VerboseLevel,\n} from \"./types\";\n\nconst escapeRegExp = (value: string) =>\n value.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n\n/**\n * Match a level-based directive (e.g., /think:high)\n */\nfunction matchLevelDirective(\n body: string,\n names: string[],\n): { start: number; end: number; rawLevel?: string } | null {\n const namePattern = names.map(escapeRegExp).join(\"|\");\n const match = body.match(\n new RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)`, \"i\"),\n );\n if (!match || match.index === undefined) {\n return null;\n }\n const start = match.index;\n let end = match.index + match[0].length;\n let i = end;\n while (i < body.length && /\\s/.test(body[i])) {\n i += 1;\n }\n if (body[i] === \":\") {\n i += 1;\n while (i < body.length && /\\s/.test(body[i])) {\n i += 1;\n }\n }\n const argStart = i;\n while (i < body.length && /[A-Za-z0-9-]/.test(body[i])) {\n i += 1;\n }\n const rawLevel = i > argStart ? body.slice(argStart, i) : undefined;\n end = i;\n return { start, end, rawLevel };\n}\n\n/**\n * Extract a level-based directive from text\n */\nfunction extractLevelDirective<T>(\n body: string,\n names: string[],\n normalize: (raw?: string) => T | undefined,\n): DirectiveExtractResult<T> {\n const match = matchLevelDirective(body, names);\n if (!match) {\n return { cleaned: body.trim(), hasDirective: false };\n }\n const rawLevel = match.rawLevel;\n const level = normalize(rawLevel);\n const cleaned = body\n .slice(0, match.start)\n .concat(\" \")\n .concat(body.slice(match.end))\n .replace(/\\s+/g, \" \")\n .trim();\n return {\n cleaned,\n level,\n rawLevel,\n hasDirective: true,\n };\n}\n\n/**\n * Extract a simple directive (no value)\n */\nfunction extractSimpleDirective(\n body: string,\n names: string[],\n): { cleaned: string; hasDirective: boolean } {\n const namePattern = names.map(escapeRegExp).join(\"|\");\n const match = body.match(\n new RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)(?:\\\\s*:\\\\s*)?`, \"i\"),\n );\n const cleaned = match\n ? body.replace(match[0], \" \").replace(/\\s+/g, \" \").trim()\n : body.trim();\n return {\n cleaned,\n hasDirective: Boolean(match),\n };\n}\n\n// ============================================================================\n// Normalizers\n// ============================================================================\n\nexport function normalizeThinkLevel(\n raw?: string | null,\n): ThinkLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\"].includes(key)) return \"off\";\n if ([\"on\", \"enable\", \"enabled\"].includes(key)) return \"low\";\n if ([\"min\", \"minimal\"].includes(key)) return \"minimal\";\n if ([\"low\", \"thinkhard\", \"think-hard\", \"think_hard\"].includes(key))\n return \"low\";\n if (\n [\"mid\", \"med\", \"medium\", \"thinkharder\", \"think-harder\", \"harder\"].includes(\n key,\n )\n )\n return \"medium\";\n if (\n [\n \"high\",\n \"ultra\",\n \"ultrathink\",\n \"think-hard\",\n \"thinkhardest\",\n \"highest\",\n \"max\",\n ].includes(key)\n )\n return \"high\";\n if ([\"xhigh\", \"x-high\", \"x_high\"].includes(key)) return \"xhigh\";\n if ([\"think\"].includes(key)) return \"minimal\";\n return undefined;\n}\n\nexport function normalizeVerboseLevel(\n raw?: string | null,\n): VerboseLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n if ([\"full\", \"all\", \"everything\"].includes(key)) return \"full\";\n if ([\"on\", \"minimal\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n return undefined;\n}\n\nexport function normalizeReasoningLevel(\n raw?: string | null,\n): ReasoningLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if (\n [\n \"off\",\n \"false\",\n \"no\",\n \"0\",\n \"hide\",\n \"hidden\",\n \"disable\",\n \"disabled\",\n ].includes(key)\n )\n return \"off\";\n if (\n [\"on\", \"true\", \"yes\", \"1\", \"show\", \"visible\", \"enable\", \"enabled\"].includes(\n key,\n )\n )\n return \"on\";\n if ([\"stream\", \"streaming\", \"draft\", \"live\"].includes(key)) return \"stream\";\n return undefined;\n}\n\nexport function normalizeElevatedLevel(\n raw?: string | null,\n): ElevatedLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n if ([\"full\", \"auto\", \"auto-approve\", \"autoapprove\"].includes(key))\n return \"full\";\n if ([\"ask\", \"prompt\", \"approval\", \"approve\"].includes(key)) return \"ask\";\n if ([\"on\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n return undefined;\n}\n\nexport function normalizeExecHost(raw?: string | null): ExecHost | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"sandbox\", \"sb\"].includes(key)) return \"sandbox\";\n if ([\"gateway\", \"gw\", \"local\"].includes(key)) return \"gateway\";\n if ([\"node\", \"remote\"].includes(key)) return \"node\";\n return undefined;\n}\n\nexport function normalizeExecSecurity(\n raw?: string | null,\n): ExecSecurity | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"deny\", \"none\", \"off\"].includes(key)) return \"deny\";\n if ([\"allowlist\", \"allow\", \"list\"].includes(key)) return \"allowlist\";\n if ([\"full\", \"all\", \"any\"].includes(key)) return \"full\";\n return undefined;\n}\n\nexport function normalizeExecAsk(raw?: string | null): ExecAsk | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"never\", \"no\"].includes(key)) return \"off\";\n if ([\"on-miss\", \"miss\", \"fallback\"].includes(key)) return \"on-miss\";\n if ([\"always\", \"on\", \"yes\"].includes(key)) return \"always\";\n return undefined;\n}\n\n// ============================================================================\n// Directive Extractors\n// ============================================================================\n\nexport function extractThinkDirective(body?: string): {\n cleaned: string;\n thinkLevel?: ThinkLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"thinking\", \"think\", \"t\"],\n normalizeThinkLevel,\n );\n return {\n cleaned: extracted.cleaned,\n thinkLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractVerboseDirective(body?: string): {\n cleaned: string;\n verboseLevel?: VerboseLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"verbose\", \"v\"],\n normalizeVerboseLevel,\n );\n return {\n cleaned: extracted.cleaned,\n verboseLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractReasoningDirective(body?: string): {\n cleaned: string;\n reasoningLevel?: ReasoningLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"reasoning\", \"reason\"],\n normalizeReasoningLevel,\n );\n return {\n cleaned: extracted.cleaned,\n reasoningLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractElevatedDirective(body?: string): {\n cleaned: string;\n elevatedLevel?: ElevatedLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"elevated\", \"elev\"],\n normalizeElevatedLevel,\n );\n return {\n cleaned: extracted.cleaned,\n elevatedLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractStatusDirective(body?: string): {\n cleaned: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n return extractSimpleDirective(body, [\"status\"]);\n}\n\nexport function extractModelDirective(\n body: string,\n options?: { aliases?: string[] },\n): {\n cleaned: string;\n rawModel?: string;\n rawProfile?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n\n // Match /model:provider/model@profile or /model provider/model@profile\n const modelMatch = body.match(\n /(?:^|\\s)\\/model(?:\\s*:\\s*|\\s+)([a-zA-Z0-9_-]+(?:\\/[a-zA-Z0-9._-]+)?(?:@[a-zA-Z0-9_-]+)?)/i,\n );\n\n if (modelMatch) {\n const fullMatch = modelMatch[1];\n const atIndex = fullMatch.indexOf(\"@\");\n const rawModel = atIndex >= 0 ? fullMatch.slice(0, atIndex) : fullMatch;\n const rawProfile = atIndex >= 0 ? fullMatch.slice(atIndex + 1) : undefined;\n const cleaned = body\n .replace(modelMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, rawModel, rawProfile, hasDirective: true };\n }\n\n // Check for simple /model directive without value\n const simpleMatch = body.match(/(?:^|\\s)\\/model(?=$|\\s|:)/i);\n if (simpleMatch) {\n const cleaned = body\n .replace(simpleMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, hasDirective: true };\n }\n\n // Check for model aliases\n if (options?.aliases?.length) {\n for (const alias of options.aliases) {\n const aliasPattern = new RegExp(\n `(?:^|\\\\s)/${escapeRegExp(alias)}(?=$|\\\\s)`,\n \"i\",\n );\n const aliasMatch = body.match(aliasPattern);\n if (aliasMatch) {\n const cleaned = body\n .replace(aliasMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, rawModel: alias, hasDirective: true };\n }\n }\n }\n\n return { cleaned: body.trim(), hasDirective: false };\n}\n\nexport function extractExecDirective(body?: string): {\n cleaned: string;\n execHost?: ExecHost;\n execSecurity?: ExecSecurity;\n execAsk?: ExecAsk;\n execNode?: string;\n rawExecHost?: string;\n rawExecSecurity?: string;\n rawExecAsk?: string;\n rawExecNode?: string;\n hasExecOptions: boolean;\n invalidHost: boolean;\n invalidSecurity: boolean;\n invalidAsk: boolean;\n invalidNode: boolean;\n hasDirective: boolean;\n} {\n if (!body) {\n return {\n cleaned: \"\",\n hasExecOptions: false,\n invalidHost: false,\n invalidSecurity: false,\n invalidAsk: false,\n invalidNode: false,\n hasDirective: false,\n };\n }\n\n // Match /exec with optional key=value pairs\n const execMatch = body.match(/(?:^|\\s)\\/exec(?:\\s+([^\\/\\n]+))?(?=$|\\s|\\/)/i);\n if (!execMatch) {\n return {\n cleaned: body.trim(),\n hasExecOptions: false,\n invalidHost: false,\n invalidSecurity: false,\n invalidAsk: false,\n invalidNode: false,\n hasDirective: false,\n };\n }\n\n const args = execMatch[1]?.trim() ?? \"\";\n const cleaned = body.replace(execMatch[0], \" \").replace(/\\s+/g, \" \").trim();\n\n let rawExecHost: string | undefined;\n let rawExecSecurity: string | undefined;\n let rawExecAsk: string | undefined;\n let rawExecNode: string | undefined;\n\n // Parse key=value pairs\n const kvPattern = /(\\w+)\\s*=\\s*([^\\s]+)/g;\n let match;\n while ((match = kvPattern.exec(args)) !== null) {\n const key = match[1].toLowerCase();\n const value = match[2];\n if (key === \"host\") rawExecHost = value;\n else if (key === \"security\") rawExecSecurity = value;\n else if (key === \"ask\") rawExecAsk = value;\n else if (key === \"node\") rawExecNode = value;\n }\n\n const execHost = normalizeExecHost(rawExecHost);\n const execSecurity = normalizeExecSecurity(rawExecSecurity);\n const execAsk = normalizeExecAsk(rawExecAsk);\n\n return {\n cleaned,\n execHost,\n execSecurity,\n execAsk,\n execNode: rawExecNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions: Boolean(\n rawExecHost || rawExecSecurity || rawExecAsk || rawExecNode,\n ),\n invalidHost: Boolean(rawExecHost && !execHost),\n invalidSecurity: Boolean(rawExecSecurity && !execSecurity),\n invalidAsk: Boolean(rawExecAsk && !execAsk),\n invalidNode: false, // Node validation is context-dependent\n hasDirective: true,\n };\n}\n"
5
+ "/**\n * Plugin Directives - Inline directive parsing for Eliza agents\n *\n * Parses and applies inline directives from message text:\n * - /think or /t - Thinking level control\n * - /verbose or /v - Verbose output control\n * - /reasoning - Reasoning visibility\n * - /elevated - Elevated permissions\n * - /exec - Execution environment settings\n * - /model - Model selection\n * - /status - Status request\n */\n\nimport {\n\ttype IAgentRuntime,\n\tlogger,\n\ttype Plugin,\n\ttype Provider,\n\ttype ProviderResult,\n} from \"@elizaos/core\";\n\nimport {\n\textractElevatedDirective,\n\textractExecDirective,\n\textractModelDirective,\n\textractReasoningDirective,\n\textractStatusDirective,\n\textractThinkDirective,\n\textractVerboseDirective,\n} from \"./parsers\";\n\nimport type { DirectiveState, ParsedDirectives, ParseOptions } from \"./types\";\n\nexport * from \"./parsers\";\n// Re-export types\nexport * from \"./types\";\n\n// ============================================================================\n// Session State Management\n// ============================================================================\n\nconst sessionStates = new Map<string, DirectiveState>();\n\nfunction getDefaultState(): DirectiveState {\n\treturn {\n\t\tthinking: \"low\",\n\t\tverbose: \"off\",\n\t\treasoning: \"off\",\n\t\televated: \"off\",\n\t\texec: {},\n\t\tmodel: {},\n\t};\n}\n\n/**\n * Get directive state for a room\n */\nexport function getDirectiveState(roomId: string): DirectiveState {\n\treturn sessionStates.get(roomId) ?? getDefaultState();\n}\n\n/**\n * Set directive state for a room\n */\nexport function setDirectiveState(roomId: string, state: DirectiveState): void {\n\tsessionStates.set(roomId, state);\n}\n\n/**\n * Clear directive state for a room\n */\nexport function clearDirectiveState(roomId: string): void {\n\tsessionStates.delete(roomId);\n}\n\n// ============================================================================\n// Main Parse Function\n// ============================================================================\n\n/**\n * Parse all inline directives from message text\n */\nexport function parseDirectives(\n\tbody: string,\n\toptions?: ParseOptions,\n): ParsedDirectives {\n\tconst {\n\t\tcleaned: thinkCleaned,\n\t\tthinkLevel,\n\t\trawLevel: rawThinkLevel,\n\t\thasDirective: hasThinkDirective,\n\t} = extractThinkDirective(body);\n\n\tconst {\n\t\tcleaned: verboseCleaned,\n\t\tverboseLevel,\n\t\trawLevel: rawVerboseLevel,\n\t\thasDirective: hasVerboseDirective,\n\t} = extractVerboseDirective(thinkCleaned);\n\n\tconst {\n\t\tcleaned: reasoningCleaned,\n\t\treasoningLevel,\n\t\trawLevel: rawReasoningLevel,\n\t\thasDirective: hasReasoningDirective,\n\t} = extractReasoningDirective(verboseCleaned);\n\n\tconst {\n\t\tcleaned: elevatedCleaned,\n\t\televatedLevel,\n\t\trawLevel: rawElevatedLevel,\n\t\thasDirective: hasElevatedDirective,\n\t} = options?.disableElevated\n\t\t? {\n\t\t\t\tcleaned: reasoningCleaned,\n\t\t\t\televatedLevel: undefined,\n\t\t\t\trawLevel: undefined,\n\t\t\t\thasDirective: false,\n\t\t\t}\n\t\t: extractElevatedDirective(reasoningCleaned);\n\n\tconst {\n\t\tcleaned: execCleaned,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions,\n\t\tinvalidHost: invalidExecHost,\n\t\tinvalidSecurity: invalidExecSecurity,\n\t\tinvalidAsk: invalidExecAsk,\n\t\tinvalidNode: invalidExecNode,\n\t\thasDirective: hasExecDirective,\n\t} = extractExecDirective(elevatedCleaned);\n\n\tconst allowStatusDirective = options?.allowStatusDirective !== false;\n\tconst { cleaned: statusCleaned, hasDirective: hasStatusDirective } =\n\t\tallowStatusDirective\n\t\t\t? extractStatusDirective(execCleaned)\n\t\t\t: { cleaned: execCleaned, hasDirective: false };\n\n\tconst {\n\t\tcleaned: modelCleaned,\n\t\trawModel,\n\t\trawProfile,\n\t\thasDirective: hasModelDirective,\n\t} = extractModelDirective(statusCleaned, {\n\t\taliases: options?.modelAliases,\n\t});\n\n\t// Determine if message contains only directives\n\tconst hasAnyDirective =\n\t\thasThinkDirective ||\n\t\thasVerboseDirective ||\n\t\thasReasoningDirective ||\n\t\thasElevatedDirective ||\n\t\thasExecDirective ||\n\t\thasModelDirective;\n\tconst directivesOnly = hasAnyDirective && modelCleaned.trim().length === 0;\n\n\treturn {\n\t\tcleanedText: modelCleaned,\n\t\tdirectivesOnly,\n\t\thasThinkDirective,\n\t\tthinkLevel,\n\t\trawThinkLevel,\n\t\thasVerboseDirective,\n\t\tverboseLevel,\n\t\trawVerboseLevel,\n\t\thasReasoningDirective,\n\t\treasoningLevel,\n\t\trawReasoningLevel,\n\t\thasElevatedDirective,\n\t\televatedLevel,\n\t\trawElevatedLevel,\n\t\thasExecDirective,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions,\n\t\tinvalidExecHost,\n\t\tinvalidExecSecurity,\n\t\tinvalidExecAsk,\n\t\tinvalidExecNode,\n\t\thasStatusDirective,\n\t\thasModelDirective,\n\t\trawModelDirective: rawModel,\n\t\trawModelProfile: rawProfile,\n\t};\n}\n\n/**\n * Apply parsed directives to session state\n */\nexport function applyDirectives(\n\troomId: string,\n\tdirectives: ParsedDirectives,\n\tpersist = true,\n): DirectiveState {\n\tconst current = getDirectiveState(roomId);\n\tconst updated = { ...current };\n\n\tif (directives.hasThinkDirective && directives.thinkLevel) {\n\t\tupdated.thinking = directives.thinkLevel;\n\t}\n\tif (directives.hasVerboseDirective && directives.verboseLevel) {\n\t\tupdated.verbose = directives.verboseLevel;\n\t}\n\tif (directives.hasReasoningDirective && directives.reasoningLevel) {\n\t\tupdated.reasoning = directives.reasoningLevel;\n\t}\n\tif (directives.hasElevatedDirective && directives.elevatedLevel) {\n\t\tupdated.elevated = directives.elevatedLevel;\n\t}\n\tif (directives.hasExecDirective) {\n\t\tupdated.exec = {\n\t\t\t...updated.exec,\n\t\t\t...(directives.execHost && { host: directives.execHost }),\n\t\t\t...(directives.execSecurity && { security: directives.execSecurity }),\n\t\t\t...(directives.execAsk && { ask: directives.execAsk }),\n\t\t\t...(directives.execNode && { node: directives.execNode }),\n\t\t};\n\t}\n\tif (directives.hasModelDirective && directives.rawModelDirective) {\n\t\tconst parts = directives.rawModelDirective.split(\"/\");\n\t\tif (parts.length === 2) {\n\t\t\tupdated.model = {\n\t\t\t\tprovider: parts[0],\n\t\t\t\tmodel: parts[1],\n\t\t\t\tauthProfile: directives.rawModelProfile,\n\t\t\t};\n\t\t} else {\n\t\t\tupdated.model = {\n\t\t\t\tmodel: directives.rawModelDirective,\n\t\t\t\tauthProfile: directives.rawModelProfile,\n\t\t\t};\n\t\t}\n\t}\n\n\tif (persist) {\n\t\tsetDirectiveState(roomId, updated);\n\t}\n\n\treturn updated;\n}\n\n/**\n * Format directive state for display\n */\nexport function formatDirectiveState(state: DirectiveState): string {\n\tconst lines: string[] = [];\n\tlines.push(`Thinking: ${state.thinking}`);\n\tlines.push(`Verbose: ${state.verbose}`);\n\tlines.push(`Reasoning: ${state.reasoning}`);\n\tlines.push(`Elevated: ${state.elevated}`);\n\tif (state.model.provider || state.model.model) {\n\t\tconst modelStr = state.model.provider\n\t\t\t? `${state.model.provider}/${state.model.model}`\n\t\t\t: state.model.model;\n\t\tlines.push(\n\t\t\t`Model: ${modelStr}${state.model.authProfile ? ` @${state.model.authProfile}` : \"\"}`,\n\t\t);\n\t}\n\treturn lines.join(\"\\n\");\n}\n\n/**\n * Format acknowledgment for directive-only messages\n */\nexport function formatDirectiveAcknowledgment(\n\tdirectives: ParsedDirectives,\n): string {\n\tconst changes: string[] = [];\n\n\tif (directives.hasThinkDirective) {\n\t\tchanges.push(`Thinking: ${directives.thinkLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasVerboseDirective) {\n\t\tchanges.push(`Verbose: ${directives.verboseLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasReasoningDirective) {\n\t\tchanges.push(`Reasoning: ${directives.reasoningLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasElevatedDirective) {\n\t\tchanges.push(`Elevated: ${directives.elevatedLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasModelDirective) {\n\t\tchanges.push(`Model: ${directives.rawModelDirective ?? \"status\"}`);\n\t}\n\n\treturn changes.length > 0 ? `✓ ${changes.join(\", \")}` : \"No changes applied\";\n}\n\n// ============================================================================\n// Provider\n// ============================================================================\n\n/**\n * Provider that exposes current directive state to the agent\n */\nexport const directiveStateProvider: Provider = {\n\tname: \"DIRECTIVE_STATE\",\n\tdescription: \"Current directive levels (thinking, verbose, model, etc.)\",\n\tdynamic: true,\n\tasync get(_runtime, message, _state): Promise<ProviderResult> {\n\t\tconst roomId = message.roomId;\n\t\tconst directives = getDirectiveState(roomId);\n\n\t\treturn {\n\t\t\ttext: formatDirectiveState(directives),\n\t\t\tvalues: {\n\t\t\t\tthinkingLevel: directives.thinking,\n\t\t\t\tverboseLevel: directives.verbose,\n\t\t\t\treasoningLevel: directives.reasoning,\n\t\t\t\televatedLevel: directives.elevated,\n\t\t\t\tmodelProvider: directives.model.provider ?? \"\",\n\t\t\t\tmodelName: directives.model.model ?? \"\",\n\t\t\t\tisElevated: directives.elevated !== \"off\",\n\t\t\t},\n\t\t\tdata: { directives },\n\t\t};\n\t},\n};\n\n// ============================================================================\n// Plugin Export\n// ============================================================================\n\n/**\n * Plugin Directives\n *\n * Provides inline directive parsing for Eliza agents, allowing users to\n * control thinking levels, verbosity, model selection, and more through\n * inline commands in their messages.\n */\nexport const directivesPlugin: Plugin = {\n\tname: \"directives\",\n\tdescription:\n\t\t\"Inline directive parsing (@think, @model, @verbose, etc.) for controlling agent behavior\",\n\n\tproviders: [directiveStateProvider],\n\n\tconfig: {\n\t\tDEFAULT_THINKING: \"low\",\n\t\tDEFAULT_VERBOSE: \"off\",\n\t\tALLOW_ELEVATED: \"true\",\n\t\tALLOW_EXEC: \"false\",\n\t},\n\n\ttests: [\n\t\t{\n\t\t\tname: \"directive-parsing\",\n\t\t\ttests: [\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse think directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/think:high hello world\");\n\t\t\t\t\t\tif (!result.hasThinkDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect think directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.thinkLevel !== \"high\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'high', got '${result.thinkLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.cleanedText !== \"hello world\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected 'hello world', got '${result.cleanedText}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Think directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse verbose directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/v on test message\");\n\t\t\t\t\t\tif (!result.hasVerboseDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect verbose directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.verboseLevel !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'on', got '${result.verboseLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Verbose directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse model directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\n\t\t\t\t\t\t\t\"/model anthropic/claude-3-opus what is 2+2\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\tif (!result.hasModelDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect model directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.rawModelDirective !== \"anthropic/claude-3-opus\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected 'anthropic/claude-3-opus', got '${result.rawModelDirective}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Model directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Detect directive-only message\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/think:high /verbose on\");\n\t\t\t\t\t\tif (!result.directivesOnly) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect directive-only message\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Directive-only detection works correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse multiple directives\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\n\t\t\t\t\t\t\t\"/think:medium /v full /elevated on hello\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!result.hasThinkDirective ||\n\t\t\t\t\t\t\t!result.hasVerboseDirective ||\n\t\t\t\t\t\t\t!result.hasElevatedDirective\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect all directives\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.thinkLevel !== \"medium\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'medium', got '${result.thinkLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.verboseLevel !== \"full\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'full', got '${result.verboseLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.elevatedLevel !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'on', got '${result.elevatedLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.cleanedText !== \"hello\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'hello', got '${result.cleanedText}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Multiple directives parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Session state management\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst roomId = \"test-room-123\";\n\t\t\t\t\t\tclearDirectiveState(roomId);\n\n\t\t\t\t\t\tconst directives = parseDirectives(\"/think:high /verbose on\");\n\t\t\t\t\t\tapplyDirectives(roomId, directives);\n\n\t\t\t\t\t\tconst state = getDirectiveState(roomId);\n\t\t\t\t\t\tif (state.thinking !== \"high\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected thinking 'high', got '${state.thinking}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (state.verbose !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected verbose 'on', got '${state.verbose}'`);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tclearDirectiveState(roomId);\n\t\t\t\t\t\tlogger.success(\"Session state management works correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n\n\tasync init(_config, _runtime) {\n\t\tlogger.log(\"[plugin-directives] Initializing directive parser\");\n\t},\n};\n\nexport default directivesPlugin;\n",
6
+ "/**\n * Directive parsers for extracting inline directives from message text\n */\n\nimport type {\n\tDirectiveExtractResult,\n\tElevatedLevel,\n\tExecAsk,\n\tExecHost,\n\tExecSecurity,\n\tReasoningLevel,\n\tThinkLevel,\n\tVerboseLevel,\n} from \"./types\";\n\nconst escapeRegExp = (value: string) =>\n\tvalue.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n\n/**\n * Match a level-based directive (e.g., /think:high)\n */\nfunction matchLevelDirective(\n\tbody: string,\n\tnames: string[],\n): { start: number; end: number; rawLevel?: string } | null {\n\tconst namePattern = names.map(escapeRegExp).join(\"|\");\n\tconst match = body.match(\n\t\tnew RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)`, \"i\"),\n\t);\n\tif (!match || match.index === undefined) {\n\t\treturn null;\n\t}\n\tconst start = match.index;\n\tlet end = match.index + match[0].length;\n\tlet i = end;\n\twhile (i < body.length && /\\s/.test(body[i])) {\n\t\ti += 1;\n\t}\n\tif (body[i] === \":\") {\n\t\ti += 1;\n\t\twhile (i < body.length && /\\s/.test(body[i])) {\n\t\t\ti += 1;\n\t\t}\n\t}\n\tconst argStart = i;\n\twhile (i < body.length && /[A-Za-z0-9-]/.test(body[i])) {\n\t\ti += 1;\n\t}\n\tconst rawLevel = i > argStart ? body.slice(argStart, i) : undefined;\n\tend = i;\n\treturn { start, end, rawLevel };\n}\n\n/**\n * Extract a level-based directive from text\n */\nfunction extractLevelDirective<T>(\n\tbody: string,\n\tnames: string[],\n\tnormalize: (raw?: string) => T | undefined,\n): DirectiveExtractResult<T> {\n\tconst match = matchLevelDirective(body, names);\n\tif (!match) {\n\t\treturn { cleaned: body.trim(), hasDirective: false };\n\t}\n\tconst rawLevel = match.rawLevel;\n\tconst level = normalize(rawLevel);\n\tconst cleaned = body\n\t\t.slice(0, match.start)\n\t\t.concat(\" \")\n\t\t.concat(body.slice(match.end))\n\t\t.replace(/\\s+/g, \" \")\n\t\t.trim();\n\treturn {\n\t\tcleaned,\n\t\tlevel,\n\t\trawLevel,\n\t\thasDirective: true,\n\t};\n}\n\n/**\n * Extract a simple directive (no value)\n */\nfunction extractSimpleDirective(\n\tbody: string,\n\tnames: string[],\n): { cleaned: string; hasDirective: boolean } {\n\tconst namePattern = names.map(escapeRegExp).join(\"|\");\n\tconst match = body.match(\n\t\tnew RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)(?:\\\\s*:\\\\s*)?`, \"i\"),\n\t);\n\tconst cleaned = match\n\t\t? body.replace(match[0], \" \").replace(/\\s+/g, \" \").trim()\n\t\t: body.trim();\n\treturn {\n\t\tcleaned,\n\t\thasDirective: Boolean(match),\n\t};\n}\n\n// ============================================================================\n// Normalizers\n// ============================================================================\n\nexport function normalizeThinkLevel(\n\traw?: string | null,\n): ThinkLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\"].includes(key)) return \"off\";\n\tif ([\"on\", \"enable\", \"enabled\"].includes(key)) return \"low\";\n\tif ([\"min\", \"minimal\"].includes(key)) return \"minimal\";\n\tif ([\"low\", \"thinkhard\", \"think-hard\", \"think_hard\"].includes(key))\n\t\treturn \"low\";\n\tif (\n\t\t[\"mid\", \"med\", \"medium\", \"thinkharder\", \"think-harder\", \"harder\"].includes(\n\t\t\tkey,\n\t\t)\n\t)\n\t\treturn \"medium\";\n\tif (\n\t\t[\n\t\t\t\"high\",\n\t\t\t\"ultra\",\n\t\t\t\"ultrathink\",\n\t\t\t\"think-hard\",\n\t\t\t\"thinkhardest\",\n\t\t\t\"highest\",\n\t\t\t\"max\",\n\t\t].includes(key)\n\t)\n\t\treturn \"high\";\n\tif ([\"xhigh\", \"x-high\", \"x_high\"].includes(key)) return \"xhigh\";\n\tif ([\"think\"].includes(key)) return \"minimal\";\n\treturn undefined;\n}\n\nexport function normalizeVerboseLevel(\n\traw?: string | null,\n): VerboseLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n\tif ([\"full\", \"all\", \"everything\"].includes(key)) return \"full\";\n\tif ([\"on\", \"minimal\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n\treturn undefined;\n}\n\nexport function normalizeReasoningLevel(\n\traw?: string | null,\n): ReasoningLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif (\n\t\t[\n\t\t\t\"off\",\n\t\t\t\"false\",\n\t\t\t\"no\",\n\t\t\t\"0\",\n\t\t\t\"hide\",\n\t\t\t\"hidden\",\n\t\t\t\"disable\",\n\t\t\t\"disabled\",\n\t\t].includes(key)\n\t)\n\t\treturn \"off\";\n\tif (\n\t\t[\"on\", \"true\", \"yes\", \"1\", \"show\", \"visible\", \"enable\", \"enabled\"].includes(\n\t\t\tkey,\n\t\t)\n\t)\n\t\treturn \"on\";\n\tif ([\"stream\", \"streaming\", \"draft\", \"live\"].includes(key)) return \"stream\";\n\treturn undefined;\n}\n\nexport function normalizeElevatedLevel(\n\traw?: string | null,\n): ElevatedLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n\tif ([\"full\", \"auto\", \"auto-approve\", \"autoapprove\"].includes(key))\n\t\treturn \"full\";\n\tif ([\"ask\", \"prompt\", \"approval\", \"approve\"].includes(key)) return \"ask\";\n\tif ([\"on\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n\treturn undefined;\n}\n\nexport function normalizeExecHost(raw?: string | null): ExecHost | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"sandbox\", \"sb\"].includes(key)) return \"sandbox\";\n\tif ([\"gateway\", \"gw\", \"local\"].includes(key)) return \"gateway\";\n\tif ([\"node\", \"remote\"].includes(key)) return \"node\";\n\treturn undefined;\n}\n\nexport function normalizeExecSecurity(\n\traw?: string | null,\n): ExecSecurity | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"deny\", \"none\", \"off\"].includes(key)) return \"deny\";\n\tif ([\"allowlist\", \"allow\", \"list\"].includes(key)) return \"allowlist\";\n\tif ([\"full\", \"all\", \"any\"].includes(key)) return \"full\";\n\treturn undefined;\n}\n\nexport function normalizeExecAsk(raw?: string | null): ExecAsk | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"never\", \"no\"].includes(key)) return \"off\";\n\tif ([\"on-miss\", \"miss\", \"fallback\"].includes(key)) return \"on-miss\";\n\tif ([\"always\", \"on\", \"yes\"].includes(key)) return \"always\";\n\treturn undefined;\n}\n\n// ============================================================================\n// Directive Extractors\n// ============================================================================\n\nexport function extractThinkDirective(body?: string): {\n\tcleaned: string;\n\tthinkLevel?: ThinkLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"thinking\", \"think\", \"t\"],\n\t\tnormalizeThinkLevel,\n\t);\n\tconst cleaned =\n\t\textracted.hasDirective && !extracted.level && extracted.rawLevel\n\t\t\t? `${extracted.rawLevel} ${extracted.cleaned}`.trim()\n\t\t\t: extracted.cleaned;\n\treturn {\n\t\tcleaned,\n\t\tthinkLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractVerboseDirective(body?: string): {\n\tcleaned: string;\n\tverboseLevel?: VerboseLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"verbose\", \"v\"],\n\t\tnormalizeVerboseLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\tverboseLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractReasoningDirective(body?: string): {\n\tcleaned: string;\n\treasoningLevel?: ReasoningLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"reasoning\", \"reason\"],\n\t\tnormalizeReasoningLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\treasoningLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractElevatedDirective(body?: string): {\n\tcleaned: string;\n\televatedLevel?: ElevatedLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"elevated\", \"elev\"],\n\t\tnormalizeElevatedLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\televatedLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractStatusDirective(body?: string): {\n\tcleaned: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\treturn extractSimpleDirective(body, [\"status\"]);\n}\n\nexport function extractModelDirective(\n\tbody: string,\n\toptions?: { aliases?: string[] },\n): {\n\tcleaned: string;\n\trawModel?: string;\n\trawProfile?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\n\t// Match /model:provider/model@profile or /model provider/model@profile\n\tconst modelMatch = body.match(\n\t\t/(?:^|\\s)\\/model(?:\\s*:\\s*|\\s+)([a-zA-Z0-9_-]+(?:\\/[a-zA-Z0-9._-]+)?(?:@[a-zA-Z0-9_-]+)?)/i,\n\t);\n\n\tif (modelMatch) {\n\t\tconst fullMatch = modelMatch[1];\n\t\tconst atIndex = fullMatch.indexOf(\"@\");\n\t\tconst rawModel = atIndex >= 0 ? fullMatch.slice(0, atIndex) : fullMatch;\n\t\tconst rawProfile = atIndex >= 0 ? fullMatch.slice(atIndex + 1) : undefined;\n\t\tconst cleaned = body\n\t\t\t.replace(modelMatch[0], \" \")\n\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t.trim();\n\t\treturn { cleaned, rawModel, rawProfile, hasDirective: true };\n\t}\n\n\t// Check for simple /model directive without value\n\tconst simpleMatch = body.match(/(?:^|\\s)\\/model(?=$|\\s|:)/i);\n\tif (simpleMatch) {\n\t\tconst cleaned = body\n\t\t\t.replace(simpleMatch[0], \" \")\n\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t.trim();\n\t\treturn { cleaned, hasDirective: true };\n\t}\n\n\t// Check for model aliases\n\tif (options?.aliases?.length) {\n\t\tfor (const alias of options.aliases) {\n\t\t\tconst aliasPattern = new RegExp(\n\t\t\t\t`(?:^|\\\\s)/${escapeRegExp(alias)}(?=$|\\\\s)`,\n\t\t\t\t\"i\",\n\t\t\t);\n\t\t\tconst aliasMatch = body.match(aliasPattern);\n\t\t\tif (aliasMatch) {\n\t\t\t\tconst cleaned = body\n\t\t\t\t\t.replace(aliasMatch[0], \" \")\n\t\t\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t\t\t.trim();\n\t\t\t\treturn { cleaned, rawModel: alias, hasDirective: true };\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { cleaned: body.trim(), hasDirective: false };\n}\n\nexport function extractExecDirective(body?: string): {\n\tcleaned: string;\n\texecHost?: ExecHost;\n\texecSecurity?: ExecSecurity;\n\texecAsk?: ExecAsk;\n\texecNode?: string;\n\trawExecHost?: string;\n\trawExecSecurity?: string;\n\trawExecAsk?: string;\n\trawExecNode?: string;\n\thasExecOptions: boolean;\n\tinvalidHost: boolean;\n\tinvalidSecurity: boolean;\n\tinvalidAsk: boolean;\n\tinvalidNode: boolean;\n\thasDirective: boolean;\n} {\n\tif (!body) {\n\t\treturn {\n\t\t\tcleaned: \"\",\n\t\t\thasExecOptions: false,\n\t\t\tinvalidHost: false,\n\t\t\tinvalidSecurity: false,\n\t\t\tinvalidAsk: false,\n\t\t\tinvalidNode: false,\n\t\t\thasDirective: false,\n\t\t};\n\t}\n\n\t// Match /exec with optional key=value pairs\n\tconst execMatch = body.match(/(?:^|\\s)\\/exec(?:\\s+([^/\\n]+))?(?=$|\\s|\\/)/i);\n\tif (!execMatch) {\n\t\treturn {\n\t\t\tcleaned: body.trim(),\n\t\t\thasExecOptions: false,\n\t\t\tinvalidHost: false,\n\t\t\tinvalidSecurity: false,\n\t\t\tinvalidAsk: false,\n\t\t\tinvalidNode: false,\n\t\t\thasDirective: false,\n\t\t};\n\t}\n\n\tconst args = execMatch[1]?.trim() ?? \"\";\n\tconst cleaned = body.replace(execMatch[0], \" \").replace(/\\s+/g, \" \").trim();\n\n\tlet rawExecHost: string | undefined;\n\tlet rawExecSecurity: string | undefined;\n\tlet rawExecAsk: string | undefined;\n\tlet rawExecNode: string | undefined;\n\n\t// Parse key=value pairs\n\tconst kvPattern = /(\\w+)\\s*=\\s*([^\\s]+)/g;\n\tfor (const match of args.matchAll(kvPattern)) {\n\t\tconst key = match[1].toLowerCase();\n\t\tconst value = match[2];\n\t\tif (key === \"host\") rawExecHost = value;\n\t\telse if (key === \"security\") rawExecSecurity = value;\n\t\telse if (key === \"ask\") rawExecAsk = value;\n\t\telse if (key === \"node\") rawExecNode = value;\n\t}\n\n\tconst execHost = normalizeExecHost(rawExecHost);\n\tconst execSecurity = normalizeExecSecurity(rawExecSecurity);\n\tconst execAsk = normalizeExecAsk(rawExecAsk);\n\n\treturn {\n\t\tcleaned,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode: rawExecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions: Boolean(\n\t\t\trawExecHost || rawExecSecurity || rawExecAsk || rawExecNode,\n\t\t),\n\t\tinvalidHost: Boolean(rawExecHost && !execHost),\n\t\tinvalidSecurity: Boolean(rawExecSecurity && !execSecurity),\n\t\tinvalidAsk: Boolean(rawExecAsk && !execAsk),\n\t\tinvalidNode: false, // Node validation is context-dependent\n\t\thasDirective: true,\n\t};\n}\n"
7
7
  ],
8
- "mappings": "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",
9
- "debugId": "DB05CA1BBD0B951464756E2164756E21",
8
+ "mappings": "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",
9
+ "debugId": "21873DD0528C6F7A64756E2164756E21",
10
10
  "names": []
11
11
  }
package/dist/index.js CHANGED
@@ -172,8 +172,9 @@ function extractThinkDirective(body) {
172
172
  if (!body)
173
173
  return { cleaned: "", hasDirective: false };
174
174
  const extracted = extractLevelDirective(body, ["thinking", "think", "t"], normalizeThinkLevel);
175
+ const cleaned = extracted.hasDirective && !extracted.level && extracted.rawLevel ? `${extracted.rawLevel} ${extracted.cleaned}`.trim() : extracted.cleaned;
175
176
  return {
176
- cleaned: extracted.cleaned,
177
+ cleaned,
177
178
  thinkLevel: extracted.level,
178
179
  rawLevel: extracted.rawLevel,
179
180
  hasDirective: extracted.hasDirective
@@ -258,7 +259,7 @@ function extractExecDirective(body) {
258
259
  hasDirective: false
259
260
  };
260
261
  }
261
- const execMatch = body.match(/(?:^|\s)\/exec(?:\s+([^\/\n]+))?(?=$|\s|\/)/i);
262
+ const execMatch = body.match(/(?:^|\s)\/exec(?:\s+([^/\n]+))?(?=$|\s|\/)/i);
262
263
  if (!execMatch) {
263
264
  return {
264
265
  cleaned: body.trim(),
@@ -277,8 +278,7 @@ function extractExecDirective(body) {
277
278
  let rawExecAsk;
278
279
  let rawExecNode;
279
280
  const kvPattern = /(\w+)\s*=\s*([^\s]+)/g;
280
- let match;
281
- while ((match = kvPattern.exec(args)) !== null) {
281
+ for (const match of args.matchAll(kvPattern)) {
282
282
  const key = match[1].toLowerCase();
283
283
  const value = match[2];
284
284
  if (key === "host")
@@ -506,7 +506,8 @@ function formatDirectiveAcknowledgment(directives) {
506
506
  var directiveStateProvider = {
507
507
  name: "DIRECTIVE_STATE",
508
508
  description: "Current directive levels (thinking, verbose, model, etc.)",
509
- async get(runtime, message, _state) {
509
+ dynamic: true,
510
+ async get(_runtime, message, _state) {
510
511
  const roomId = message.roomId;
511
512
  const directives = getDirectiveState(roomId);
512
513
  return {
@@ -633,7 +634,7 @@ var directivesPlugin = {
633
634
  ]
634
635
  }
635
636
  ],
636
- async init(_config, runtime) {
637
+ async init(_config, _runtime) {
637
638
  logger.log("[plugin-directives] Initializing directive parser");
638
639
  }
639
640
  };
@@ -665,4 +666,4 @@ export {
665
666
  applyDirectives
666
667
  };
667
668
 
668
- //# debugId=4600B3776B5B382264756E2164756E21
669
+ //# debugId=1664D5D4B9BED94F64756E2164756E21
package/dist/index.js.map CHANGED
@@ -2,10 +2,10 @@
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts", "../src/parsers.ts"],
4
4
  "sourcesContent": [
5
- "/**\n * Plugin Directives - Inline directive parsing for Eliza agents\n *\n * Parses and applies inline directives from message text:\n * - /think or /t - Thinking level control\n * - /verbose or /v - Verbose output control\n * - /reasoning - Reasoning visibility\n * - /elevated - Elevated permissions\n * - /exec - Execution environment settings\n * - /model - Model selection\n * - /status - Status request\n */\n\nimport {\n type IAgentRuntime,\n type Plugin,\n type Provider,\n type ProviderResult,\n logger,\n} from \"@elizaos/core\";\n\nimport {\n extractElevatedDirective,\n extractExecDirective,\n extractModelDirective,\n extractReasoningDirective,\n extractStatusDirective,\n extractThinkDirective,\n extractVerboseDirective,\n normalizeElevatedLevel,\n normalizeReasoningLevel,\n normalizeThinkLevel,\n normalizeVerboseLevel,\n} from \"./parsers\";\n\nimport type {\n DirectiveState,\n ElevatedLevel,\n ParsedDirectives,\n ParseOptions,\n ReasoningLevel,\n ThinkLevel,\n VerboseLevel,\n} from \"./types\";\n\n// Re-export types\nexport * from \"./types\";\nexport * from \"./parsers\";\n\n// ============================================================================\n// Session State Management\n// ============================================================================\n\nconst sessionStates = new Map<string, DirectiveState>();\n\nfunction getDefaultState(): DirectiveState {\n return {\n thinking: \"low\",\n verbose: \"off\",\n reasoning: \"off\",\n elevated: \"off\",\n exec: {},\n model: {},\n };\n}\n\n/**\n * Get directive state for a room\n */\nexport function getDirectiveState(roomId: string): DirectiveState {\n return sessionStates.get(roomId) ?? getDefaultState();\n}\n\n/**\n * Set directive state for a room\n */\nexport function setDirectiveState(roomId: string, state: DirectiveState): void {\n sessionStates.set(roomId, state);\n}\n\n/**\n * Clear directive state for a room\n */\nexport function clearDirectiveState(roomId: string): void {\n sessionStates.delete(roomId);\n}\n\n// ============================================================================\n// Main Parse Function\n// ============================================================================\n\n/**\n * Parse all inline directives from message text\n */\nexport function parseDirectives(\n body: string,\n options?: ParseOptions,\n): ParsedDirectives {\n const {\n cleaned: thinkCleaned,\n thinkLevel,\n rawLevel: rawThinkLevel,\n hasDirective: hasThinkDirective,\n } = extractThinkDirective(body);\n\n const {\n cleaned: verboseCleaned,\n verboseLevel,\n rawLevel: rawVerboseLevel,\n hasDirective: hasVerboseDirective,\n } = extractVerboseDirective(thinkCleaned);\n\n const {\n cleaned: reasoningCleaned,\n reasoningLevel,\n rawLevel: rawReasoningLevel,\n hasDirective: hasReasoningDirective,\n } = extractReasoningDirective(verboseCleaned);\n\n const {\n cleaned: elevatedCleaned,\n elevatedLevel,\n rawLevel: rawElevatedLevel,\n hasDirective: hasElevatedDirective,\n } = options?.disableElevated\n ? {\n cleaned: reasoningCleaned,\n elevatedLevel: undefined,\n rawLevel: undefined,\n hasDirective: false,\n }\n : extractElevatedDirective(reasoningCleaned);\n\n const {\n cleaned: execCleaned,\n execHost,\n execSecurity,\n execAsk,\n execNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions,\n invalidHost: invalidExecHost,\n invalidSecurity: invalidExecSecurity,\n invalidAsk: invalidExecAsk,\n invalidNode: invalidExecNode,\n hasDirective: hasExecDirective,\n } = extractExecDirective(elevatedCleaned);\n\n const allowStatusDirective = options?.allowStatusDirective !== false;\n const { cleaned: statusCleaned, hasDirective: hasStatusDirective } =\n allowStatusDirective\n ? extractStatusDirective(execCleaned)\n : { cleaned: execCleaned, hasDirective: false };\n\n const {\n cleaned: modelCleaned,\n rawModel,\n rawProfile,\n hasDirective: hasModelDirective,\n } = extractModelDirective(statusCleaned, {\n aliases: options?.modelAliases,\n });\n\n // Determine if message contains only directives\n const hasAnyDirective =\n hasThinkDirective ||\n hasVerboseDirective ||\n hasReasoningDirective ||\n hasElevatedDirective ||\n hasExecDirective ||\n hasModelDirective;\n const directivesOnly = hasAnyDirective && modelCleaned.trim().length === 0;\n\n return {\n cleanedText: modelCleaned,\n directivesOnly,\n hasThinkDirective,\n thinkLevel,\n rawThinkLevel,\n hasVerboseDirective,\n verboseLevel,\n rawVerboseLevel,\n hasReasoningDirective,\n reasoningLevel,\n rawReasoningLevel,\n hasElevatedDirective,\n elevatedLevel,\n rawElevatedLevel,\n hasExecDirective,\n execHost,\n execSecurity,\n execAsk,\n execNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions,\n invalidExecHost,\n invalidExecSecurity,\n invalidExecAsk,\n invalidExecNode,\n hasStatusDirective,\n hasModelDirective,\n rawModelDirective: rawModel,\n rawModelProfile: rawProfile,\n };\n}\n\n/**\n * Apply parsed directives to session state\n */\nexport function applyDirectives(\n roomId: string,\n directives: ParsedDirectives,\n persist = true,\n): DirectiveState {\n const current = getDirectiveState(roomId);\n const updated = { ...current };\n\n if (directives.hasThinkDirective && directives.thinkLevel) {\n updated.thinking = directives.thinkLevel;\n }\n if (directives.hasVerboseDirective && directives.verboseLevel) {\n updated.verbose = directives.verboseLevel;\n }\n if (directives.hasReasoningDirective && directives.reasoningLevel) {\n updated.reasoning = directives.reasoningLevel;\n }\n if (directives.hasElevatedDirective && directives.elevatedLevel) {\n updated.elevated = directives.elevatedLevel;\n }\n if (directives.hasExecDirective) {\n updated.exec = {\n ...updated.exec,\n ...(directives.execHost && { host: directives.execHost }),\n ...(directives.execSecurity && { security: directives.execSecurity }),\n ...(directives.execAsk && { ask: directives.execAsk }),\n ...(directives.execNode && { node: directives.execNode }),\n };\n }\n if (directives.hasModelDirective && directives.rawModelDirective) {\n const parts = directives.rawModelDirective.split(\"/\");\n if (parts.length === 2) {\n updated.model = {\n provider: parts[0],\n model: parts[1],\n authProfile: directives.rawModelProfile,\n };\n } else {\n updated.model = {\n model: directives.rawModelDirective,\n authProfile: directives.rawModelProfile,\n };\n }\n }\n\n if (persist) {\n setDirectiveState(roomId, updated);\n }\n\n return updated;\n}\n\n/**\n * Format directive state for display\n */\nexport function formatDirectiveState(state: DirectiveState): string {\n const lines: string[] = [];\n lines.push(`Thinking: ${state.thinking}`);\n lines.push(`Verbose: ${state.verbose}`);\n lines.push(`Reasoning: ${state.reasoning}`);\n lines.push(`Elevated: ${state.elevated}`);\n if (state.model.provider || state.model.model) {\n const modelStr = state.model.provider\n ? `${state.model.provider}/${state.model.model}`\n : state.model.model;\n lines.push(\n `Model: ${modelStr}${state.model.authProfile ? ` @${state.model.authProfile}` : \"\"}`,\n );\n }\n return lines.join(\"\\n\");\n}\n\n/**\n * Format acknowledgment for directive-only messages\n */\nexport function formatDirectiveAcknowledgment(\n directives: ParsedDirectives,\n): string {\n const changes: string[] = [];\n\n if (directives.hasThinkDirective) {\n changes.push(`Thinking: ${directives.thinkLevel ?? \"status\"}`);\n }\n if (directives.hasVerboseDirective) {\n changes.push(`Verbose: ${directives.verboseLevel ?? \"status\"}`);\n }\n if (directives.hasReasoningDirective) {\n changes.push(`Reasoning: ${directives.reasoningLevel ?? \"status\"}`);\n }\n if (directives.hasElevatedDirective) {\n changes.push(`Elevated: ${directives.elevatedLevel ?? \"status\"}`);\n }\n if (directives.hasModelDirective) {\n changes.push(`Model: ${directives.rawModelDirective ?? \"status\"}`);\n }\n\n return changes.length > 0 ? `✓ ${changes.join(\", \")}` : \"No changes applied\";\n}\n\n// ============================================================================\n// Provider\n// ============================================================================\n\n/**\n * Provider that exposes current directive state to the agent\n */\nexport const directiveStateProvider: Provider = {\n name: \"DIRECTIVE_STATE\",\n description: \"Current directive levels (thinking, verbose, model, etc.)\",\n\n async get(runtime, message, _state): Promise<ProviderResult> {\n const roomId = message.roomId;\n const directives = getDirectiveState(roomId);\n\n return {\n text: formatDirectiveState(directives),\n values: {\n thinkingLevel: directives.thinking,\n verboseLevel: directives.verbose,\n reasoningLevel: directives.reasoning,\n elevatedLevel: directives.elevated,\n modelProvider: directives.model.provider ?? \"\",\n modelName: directives.model.model ?? \"\",\n isElevated: directives.elevated !== \"off\",\n },\n data: { directives },\n };\n },\n};\n\n// ============================================================================\n// Plugin Export\n// ============================================================================\n\n/**\n * Plugin Directives\n *\n * Provides inline directive parsing for Eliza agents, allowing users to\n * control thinking levels, verbosity, model selection, and more through\n * inline commands in their messages.\n */\nexport const directivesPlugin: Plugin = {\n name: \"directives\",\n description:\n \"Inline directive parsing (@think, @model, @verbose, etc.) for controlling agent behavior\",\n\n providers: [directiveStateProvider],\n\n config: {\n DEFAULT_THINKING: \"low\",\n DEFAULT_VERBOSE: \"off\",\n ALLOW_ELEVATED: \"true\",\n ALLOW_EXEC: \"false\",\n },\n\n tests: [\n {\n name: \"directive-parsing\",\n tests: [\n {\n name: \"Parse think directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/think:high hello world\");\n if (!result.hasThinkDirective) {\n throw new Error(\"Should detect think directive\");\n }\n if (result.thinkLevel !== \"high\") {\n throw new Error(`Expected 'high', got '${result.thinkLevel}'`);\n }\n if (result.cleanedText !== \"hello world\") {\n throw new Error(\n `Expected 'hello world', got '${result.cleanedText}'`,\n );\n }\n logger.success(\"Think directive parsed correctly\");\n },\n },\n {\n name: \"Parse verbose directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/v on test message\");\n if (!result.hasVerboseDirective) {\n throw new Error(\"Should detect verbose directive\");\n }\n if (result.verboseLevel !== \"on\") {\n throw new Error(`Expected 'on', got '${result.verboseLevel}'`);\n }\n logger.success(\"Verbose directive parsed correctly\");\n },\n },\n {\n name: \"Parse model directive\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\n \"/model anthropic/claude-3-opus what is 2+2\",\n );\n if (!result.hasModelDirective) {\n throw new Error(\"Should detect model directive\");\n }\n if (result.rawModelDirective !== \"anthropic/claude-3-opus\") {\n throw new Error(\n `Expected 'anthropic/claude-3-opus', got '${result.rawModelDirective}'`,\n );\n }\n logger.success(\"Model directive parsed correctly\");\n },\n },\n {\n name: \"Detect directive-only message\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\"/think:high /verbose on\");\n if (!result.directivesOnly) {\n throw new Error(\"Should detect directive-only message\");\n }\n logger.success(\"Directive-only detection works correctly\");\n },\n },\n {\n name: \"Parse multiple directives\",\n fn: async (_runtime: IAgentRuntime) => {\n const result = parseDirectives(\n \"/think:medium /v full /elevated on hello\",\n );\n if (\n !result.hasThinkDirective ||\n !result.hasVerboseDirective ||\n !result.hasElevatedDirective\n ) {\n throw new Error(\"Should detect all directives\");\n }\n if (result.thinkLevel !== \"medium\") {\n throw new Error(`Expected 'medium', got '${result.thinkLevel}'`);\n }\n if (result.verboseLevel !== \"full\") {\n throw new Error(`Expected 'full', got '${result.verboseLevel}'`);\n }\n if (result.elevatedLevel !== \"on\") {\n throw new Error(`Expected 'on', got '${result.elevatedLevel}'`);\n }\n if (result.cleanedText !== \"hello\") {\n throw new Error(`Expected 'hello', got '${result.cleanedText}'`);\n }\n logger.success(\"Multiple directives parsed correctly\");\n },\n },\n {\n name: \"Session state management\",\n fn: async (_runtime: IAgentRuntime) => {\n const roomId = \"test-room-123\";\n clearDirectiveState(roomId);\n\n const directives = parseDirectives(\"/think:high /verbose on\");\n applyDirectives(roomId, directives);\n\n const state = getDirectiveState(roomId);\n if (state.thinking !== \"high\") {\n throw new Error(\n `Expected thinking 'high', got '${state.thinking}'`,\n );\n }\n if (state.verbose !== \"on\") {\n throw new Error(`Expected verbose 'on', got '${state.verbose}'`);\n }\n\n clearDirectiveState(roomId);\n logger.success(\"Session state management works correctly\");\n },\n },\n ],\n },\n ],\n\n async init(_config, runtime) {\n logger.log(\"[plugin-directives] Initializing directive parser\");\n },\n};\n\nexport default directivesPlugin;\n",
6
- "/**\n * Directive parsers for extracting inline directives from message text\n */\n\nimport type {\n DirectiveExtractResult,\n ElevatedLevel,\n ExecAsk,\n ExecHost,\n ExecSecurity,\n ReasoningLevel,\n ThinkLevel,\n VerboseLevel,\n} from \"./types\";\n\nconst escapeRegExp = (value: string) =>\n value.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n\n/**\n * Match a level-based directive (e.g., /think:high)\n */\nfunction matchLevelDirective(\n body: string,\n names: string[],\n): { start: number; end: number; rawLevel?: string } | null {\n const namePattern = names.map(escapeRegExp).join(\"|\");\n const match = body.match(\n new RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)`, \"i\"),\n );\n if (!match || match.index === undefined) {\n return null;\n }\n const start = match.index;\n let end = match.index + match[0].length;\n let i = end;\n while (i < body.length && /\\s/.test(body[i])) {\n i += 1;\n }\n if (body[i] === \":\") {\n i += 1;\n while (i < body.length && /\\s/.test(body[i])) {\n i += 1;\n }\n }\n const argStart = i;\n while (i < body.length && /[A-Za-z0-9-]/.test(body[i])) {\n i += 1;\n }\n const rawLevel = i > argStart ? body.slice(argStart, i) : undefined;\n end = i;\n return { start, end, rawLevel };\n}\n\n/**\n * Extract a level-based directive from text\n */\nfunction extractLevelDirective<T>(\n body: string,\n names: string[],\n normalize: (raw?: string) => T | undefined,\n): DirectiveExtractResult<T> {\n const match = matchLevelDirective(body, names);\n if (!match) {\n return { cleaned: body.trim(), hasDirective: false };\n }\n const rawLevel = match.rawLevel;\n const level = normalize(rawLevel);\n const cleaned = body\n .slice(0, match.start)\n .concat(\" \")\n .concat(body.slice(match.end))\n .replace(/\\s+/g, \" \")\n .trim();\n return {\n cleaned,\n level,\n rawLevel,\n hasDirective: true,\n };\n}\n\n/**\n * Extract a simple directive (no value)\n */\nfunction extractSimpleDirective(\n body: string,\n names: string[],\n): { cleaned: string; hasDirective: boolean } {\n const namePattern = names.map(escapeRegExp).join(\"|\");\n const match = body.match(\n new RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)(?:\\\\s*:\\\\s*)?`, \"i\"),\n );\n const cleaned = match\n ? body.replace(match[0], \" \").replace(/\\s+/g, \" \").trim()\n : body.trim();\n return {\n cleaned,\n hasDirective: Boolean(match),\n };\n}\n\n// ============================================================================\n// Normalizers\n// ============================================================================\n\nexport function normalizeThinkLevel(\n raw?: string | null,\n): ThinkLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\"].includes(key)) return \"off\";\n if ([\"on\", \"enable\", \"enabled\"].includes(key)) return \"low\";\n if ([\"min\", \"minimal\"].includes(key)) return \"minimal\";\n if ([\"low\", \"thinkhard\", \"think-hard\", \"think_hard\"].includes(key))\n return \"low\";\n if (\n [\"mid\", \"med\", \"medium\", \"thinkharder\", \"think-harder\", \"harder\"].includes(\n key,\n )\n )\n return \"medium\";\n if (\n [\n \"high\",\n \"ultra\",\n \"ultrathink\",\n \"think-hard\",\n \"thinkhardest\",\n \"highest\",\n \"max\",\n ].includes(key)\n )\n return \"high\";\n if ([\"xhigh\", \"x-high\", \"x_high\"].includes(key)) return \"xhigh\";\n if ([\"think\"].includes(key)) return \"minimal\";\n return undefined;\n}\n\nexport function normalizeVerboseLevel(\n raw?: string | null,\n): VerboseLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n if ([\"full\", \"all\", \"everything\"].includes(key)) return \"full\";\n if ([\"on\", \"minimal\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n return undefined;\n}\n\nexport function normalizeReasoningLevel(\n raw?: string | null,\n): ReasoningLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if (\n [\n \"off\",\n \"false\",\n \"no\",\n \"0\",\n \"hide\",\n \"hidden\",\n \"disable\",\n \"disabled\",\n ].includes(key)\n )\n return \"off\";\n if (\n [\"on\", \"true\", \"yes\", \"1\", \"show\", \"visible\", \"enable\", \"enabled\"].includes(\n key,\n )\n )\n return \"on\";\n if ([\"stream\", \"streaming\", \"draft\", \"live\"].includes(key)) return \"stream\";\n return undefined;\n}\n\nexport function normalizeElevatedLevel(\n raw?: string | null,\n): ElevatedLevel | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n if ([\"full\", \"auto\", \"auto-approve\", \"autoapprove\"].includes(key))\n return \"full\";\n if ([\"ask\", \"prompt\", \"approval\", \"approve\"].includes(key)) return \"ask\";\n if ([\"on\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n return undefined;\n}\n\nexport function normalizeExecHost(raw?: string | null): ExecHost | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"sandbox\", \"sb\"].includes(key)) return \"sandbox\";\n if ([\"gateway\", \"gw\", \"local\"].includes(key)) return \"gateway\";\n if ([\"node\", \"remote\"].includes(key)) return \"node\";\n return undefined;\n}\n\nexport function normalizeExecSecurity(\n raw?: string | null,\n): ExecSecurity | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"deny\", \"none\", \"off\"].includes(key)) return \"deny\";\n if ([\"allowlist\", \"allow\", \"list\"].includes(key)) return \"allowlist\";\n if ([\"full\", \"all\", \"any\"].includes(key)) return \"full\";\n return undefined;\n}\n\nexport function normalizeExecAsk(raw?: string | null): ExecAsk | undefined {\n if (!raw) return undefined;\n const key = raw.toLowerCase();\n if ([\"off\", \"never\", \"no\"].includes(key)) return \"off\";\n if ([\"on-miss\", \"miss\", \"fallback\"].includes(key)) return \"on-miss\";\n if ([\"always\", \"on\", \"yes\"].includes(key)) return \"always\";\n return undefined;\n}\n\n// ============================================================================\n// Directive Extractors\n// ============================================================================\n\nexport function extractThinkDirective(body?: string): {\n cleaned: string;\n thinkLevel?: ThinkLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"thinking\", \"think\", \"t\"],\n normalizeThinkLevel,\n );\n return {\n cleaned: extracted.cleaned,\n thinkLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractVerboseDirective(body?: string): {\n cleaned: string;\n verboseLevel?: VerboseLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"verbose\", \"v\"],\n normalizeVerboseLevel,\n );\n return {\n cleaned: extracted.cleaned,\n verboseLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractReasoningDirective(body?: string): {\n cleaned: string;\n reasoningLevel?: ReasoningLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"reasoning\", \"reason\"],\n normalizeReasoningLevel,\n );\n return {\n cleaned: extracted.cleaned,\n reasoningLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractElevatedDirective(body?: string): {\n cleaned: string;\n elevatedLevel?: ElevatedLevel;\n rawLevel?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n const extracted = extractLevelDirective(\n body,\n [\"elevated\", \"elev\"],\n normalizeElevatedLevel,\n );\n return {\n cleaned: extracted.cleaned,\n elevatedLevel: extracted.level,\n rawLevel: extracted.rawLevel,\n hasDirective: extracted.hasDirective,\n };\n}\n\nexport function extractStatusDirective(body?: string): {\n cleaned: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n return extractSimpleDirective(body, [\"status\"]);\n}\n\nexport function extractModelDirective(\n body: string,\n options?: { aliases?: string[] },\n): {\n cleaned: string;\n rawModel?: string;\n rawProfile?: string;\n hasDirective: boolean;\n} {\n if (!body) return { cleaned: \"\", hasDirective: false };\n\n // Match /model:provider/model@profile or /model provider/model@profile\n const modelMatch = body.match(\n /(?:^|\\s)\\/model(?:\\s*:\\s*|\\s+)([a-zA-Z0-9_-]+(?:\\/[a-zA-Z0-9._-]+)?(?:@[a-zA-Z0-9_-]+)?)/i,\n );\n\n if (modelMatch) {\n const fullMatch = modelMatch[1];\n const atIndex = fullMatch.indexOf(\"@\");\n const rawModel = atIndex >= 0 ? fullMatch.slice(0, atIndex) : fullMatch;\n const rawProfile = atIndex >= 0 ? fullMatch.slice(atIndex + 1) : undefined;\n const cleaned = body\n .replace(modelMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, rawModel, rawProfile, hasDirective: true };\n }\n\n // Check for simple /model directive without value\n const simpleMatch = body.match(/(?:^|\\s)\\/model(?=$|\\s|:)/i);\n if (simpleMatch) {\n const cleaned = body\n .replace(simpleMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, hasDirective: true };\n }\n\n // Check for model aliases\n if (options?.aliases?.length) {\n for (const alias of options.aliases) {\n const aliasPattern = new RegExp(\n `(?:^|\\\\s)/${escapeRegExp(alias)}(?=$|\\\\s)`,\n \"i\",\n );\n const aliasMatch = body.match(aliasPattern);\n if (aliasMatch) {\n const cleaned = body\n .replace(aliasMatch[0], \" \")\n .replace(/\\s+/g, \" \")\n .trim();\n return { cleaned, rawModel: alias, hasDirective: true };\n }\n }\n }\n\n return { cleaned: body.trim(), hasDirective: false };\n}\n\nexport function extractExecDirective(body?: string): {\n cleaned: string;\n execHost?: ExecHost;\n execSecurity?: ExecSecurity;\n execAsk?: ExecAsk;\n execNode?: string;\n rawExecHost?: string;\n rawExecSecurity?: string;\n rawExecAsk?: string;\n rawExecNode?: string;\n hasExecOptions: boolean;\n invalidHost: boolean;\n invalidSecurity: boolean;\n invalidAsk: boolean;\n invalidNode: boolean;\n hasDirective: boolean;\n} {\n if (!body) {\n return {\n cleaned: \"\",\n hasExecOptions: false,\n invalidHost: false,\n invalidSecurity: false,\n invalidAsk: false,\n invalidNode: false,\n hasDirective: false,\n };\n }\n\n // Match /exec with optional key=value pairs\n const execMatch = body.match(/(?:^|\\s)\\/exec(?:\\s+([^\\/\\n]+))?(?=$|\\s|\\/)/i);\n if (!execMatch) {\n return {\n cleaned: body.trim(),\n hasExecOptions: false,\n invalidHost: false,\n invalidSecurity: false,\n invalidAsk: false,\n invalidNode: false,\n hasDirective: false,\n };\n }\n\n const args = execMatch[1]?.trim() ?? \"\";\n const cleaned = body.replace(execMatch[0], \" \").replace(/\\s+/g, \" \").trim();\n\n let rawExecHost: string | undefined;\n let rawExecSecurity: string | undefined;\n let rawExecAsk: string | undefined;\n let rawExecNode: string | undefined;\n\n // Parse key=value pairs\n const kvPattern = /(\\w+)\\s*=\\s*([^\\s]+)/g;\n let match;\n while ((match = kvPattern.exec(args)) !== null) {\n const key = match[1].toLowerCase();\n const value = match[2];\n if (key === \"host\") rawExecHost = value;\n else if (key === \"security\") rawExecSecurity = value;\n else if (key === \"ask\") rawExecAsk = value;\n else if (key === \"node\") rawExecNode = value;\n }\n\n const execHost = normalizeExecHost(rawExecHost);\n const execSecurity = normalizeExecSecurity(rawExecSecurity);\n const execAsk = normalizeExecAsk(rawExecAsk);\n\n return {\n cleaned,\n execHost,\n execSecurity,\n execAsk,\n execNode: rawExecNode,\n rawExecHost,\n rawExecSecurity,\n rawExecAsk,\n rawExecNode,\n hasExecOptions: Boolean(\n rawExecHost || rawExecSecurity || rawExecAsk || rawExecNode,\n ),\n invalidHost: Boolean(rawExecHost && !execHost),\n invalidSecurity: Boolean(rawExecSecurity && !execSecurity),\n invalidAsk: Boolean(rawExecAsk && !execAsk),\n invalidNode: false, // Node validation is context-dependent\n hasDirective: true,\n };\n}\n"
5
+ "/**\n * Plugin Directives - Inline directive parsing for Eliza agents\n *\n * Parses and applies inline directives from message text:\n * - /think or /t - Thinking level control\n * - /verbose or /v - Verbose output control\n * - /reasoning - Reasoning visibility\n * - /elevated - Elevated permissions\n * - /exec - Execution environment settings\n * - /model - Model selection\n * - /status - Status request\n */\n\nimport {\n\ttype IAgentRuntime,\n\tlogger,\n\ttype Plugin,\n\ttype Provider,\n\ttype ProviderResult,\n} from \"@elizaos/core\";\n\nimport {\n\textractElevatedDirective,\n\textractExecDirective,\n\textractModelDirective,\n\textractReasoningDirective,\n\textractStatusDirective,\n\textractThinkDirective,\n\textractVerboseDirective,\n} from \"./parsers\";\n\nimport type { DirectiveState, ParsedDirectives, ParseOptions } from \"./types\";\n\nexport * from \"./parsers\";\n// Re-export types\nexport * from \"./types\";\n\n// ============================================================================\n// Session State Management\n// ============================================================================\n\nconst sessionStates = new Map<string, DirectiveState>();\n\nfunction getDefaultState(): DirectiveState {\n\treturn {\n\t\tthinking: \"low\",\n\t\tverbose: \"off\",\n\t\treasoning: \"off\",\n\t\televated: \"off\",\n\t\texec: {},\n\t\tmodel: {},\n\t};\n}\n\n/**\n * Get directive state for a room\n */\nexport function getDirectiveState(roomId: string): DirectiveState {\n\treturn sessionStates.get(roomId) ?? getDefaultState();\n}\n\n/**\n * Set directive state for a room\n */\nexport function setDirectiveState(roomId: string, state: DirectiveState): void {\n\tsessionStates.set(roomId, state);\n}\n\n/**\n * Clear directive state for a room\n */\nexport function clearDirectiveState(roomId: string): void {\n\tsessionStates.delete(roomId);\n}\n\n// ============================================================================\n// Main Parse Function\n// ============================================================================\n\n/**\n * Parse all inline directives from message text\n */\nexport function parseDirectives(\n\tbody: string,\n\toptions?: ParseOptions,\n): ParsedDirectives {\n\tconst {\n\t\tcleaned: thinkCleaned,\n\t\tthinkLevel,\n\t\trawLevel: rawThinkLevel,\n\t\thasDirective: hasThinkDirective,\n\t} = extractThinkDirective(body);\n\n\tconst {\n\t\tcleaned: verboseCleaned,\n\t\tverboseLevel,\n\t\trawLevel: rawVerboseLevel,\n\t\thasDirective: hasVerboseDirective,\n\t} = extractVerboseDirective(thinkCleaned);\n\n\tconst {\n\t\tcleaned: reasoningCleaned,\n\t\treasoningLevel,\n\t\trawLevel: rawReasoningLevel,\n\t\thasDirective: hasReasoningDirective,\n\t} = extractReasoningDirective(verboseCleaned);\n\n\tconst {\n\t\tcleaned: elevatedCleaned,\n\t\televatedLevel,\n\t\trawLevel: rawElevatedLevel,\n\t\thasDirective: hasElevatedDirective,\n\t} = options?.disableElevated\n\t\t? {\n\t\t\t\tcleaned: reasoningCleaned,\n\t\t\t\televatedLevel: undefined,\n\t\t\t\trawLevel: undefined,\n\t\t\t\thasDirective: false,\n\t\t\t}\n\t\t: extractElevatedDirective(reasoningCleaned);\n\n\tconst {\n\t\tcleaned: execCleaned,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions,\n\t\tinvalidHost: invalidExecHost,\n\t\tinvalidSecurity: invalidExecSecurity,\n\t\tinvalidAsk: invalidExecAsk,\n\t\tinvalidNode: invalidExecNode,\n\t\thasDirective: hasExecDirective,\n\t} = extractExecDirective(elevatedCleaned);\n\n\tconst allowStatusDirective = options?.allowStatusDirective !== false;\n\tconst { cleaned: statusCleaned, hasDirective: hasStatusDirective } =\n\t\tallowStatusDirective\n\t\t\t? extractStatusDirective(execCleaned)\n\t\t\t: { cleaned: execCleaned, hasDirective: false };\n\n\tconst {\n\t\tcleaned: modelCleaned,\n\t\trawModel,\n\t\trawProfile,\n\t\thasDirective: hasModelDirective,\n\t} = extractModelDirective(statusCleaned, {\n\t\taliases: options?.modelAliases,\n\t});\n\n\t// Determine if message contains only directives\n\tconst hasAnyDirective =\n\t\thasThinkDirective ||\n\t\thasVerboseDirective ||\n\t\thasReasoningDirective ||\n\t\thasElevatedDirective ||\n\t\thasExecDirective ||\n\t\thasModelDirective;\n\tconst directivesOnly = hasAnyDirective && modelCleaned.trim().length === 0;\n\n\treturn {\n\t\tcleanedText: modelCleaned,\n\t\tdirectivesOnly,\n\t\thasThinkDirective,\n\t\tthinkLevel,\n\t\trawThinkLevel,\n\t\thasVerboseDirective,\n\t\tverboseLevel,\n\t\trawVerboseLevel,\n\t\thasReasoningDirective,\n\t\treasoningLevel,\n\t\trawReasoningLevel,\n\t\thasElevatedDirective,\n\t\televatedLevel,\n\t\trawElevatedLevel,\n\t\thasExecDirective,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions,\n\t\tinvalidExecHost,\n\t\tinvalidExecSecurity,\n\t\tinvalidExecAsk,\n\t\tinvalidExecNode,\n\t\thasStatusDirective,\n\t\thasModelDirective,\n\t\trawModelDirective: rawModel,\n\t\trawModelProfile: rawProfile,\n\t};\n}\n\n/**\n * Apply parsed directives to session state\n */\nexport function applyDirectives(\n\troomId: string,\n\tdirectives: ParsedDirectives,\n\tpersist = true,\n): DirectiveState {\n\tconst current = getDirectiveState(roomId);\n\tconst updated = { ...current };\n\n\tif (directives.hasThinkDirective && directives.thinkLevel) {\n\t\tupdated.thinking = directives.thinkLevel;\n\t}\n\tif (directives.hasVerboseDirective && directives.verboseLevel) {\n\t\tupdated.verbose = directives.verboseLevel;\n\t}\n\tif (directives.hasReasoningDirective && directives.reasoningLevel) {\n\t\tupdated.reasoning = directives.reasoningLevel;\n\t}\n\tif (directives.hasElevatedDirective && directives.elevatedLevel) {\n\t\tupdated.elevated = directives.elevatedLevel;\n\t}\n\tif (directives.hasExecDirective) {\n\t\tupdated.exec = {\n\t\t\t...updated.exec,\n\t\t\t...(directives.execHost && { host: directives.execHost }),\n\t\t\t...(directives.execSecurity && { security: directives.execSecurity }),\n\t\t\t...(directives.execAsk && { ask: directives.execAsk }),\n\t\t\t...(directives.execNode && { node: directives.execNode }),\n\t\t};\n\t}\n\tif (directives.hasModelDirective && directives.rawModelDirective) {\n\t\tconst parts = directives.rawModelDirective.split(\"/\");\n\t\tif (parts.length === 2) {\n\t\t\tupdated.model = {\n\t\t\t\tprovider: parts[0],\n\t\t\t\tmodel: parts[1],\n\t\t\t\tauthProfile: directives.rawModelProfile,\n\t\t\t};\n\t\t} else {\n\t\t\tupdated.model = {\n\t\t\t\tmodel: directives.rawModelDirective,\n\t\t\t\tauthProfile: directives.rawModelProfile,\n\t\t\t};\n\t\t}\n\t}\n\n\tif (persist) {\n\t\tsetDirectiveState(roomId, updated);\n\t}\n\n\treturn updated;\n}\n\n/**\n * Format directive state for display\n */\nexport function formatDirectiveState(state: DirectiveState): string {\n\tconst lines: string[] = [];\n\tlines.push(`Thinking: ${state.thinking}`);\n\tlines.push(`Verbose: ${state.verbose}`);\n\tlines.push(`Reasoning: ${state.reasoning}`);\n\tlines.push(`Elevated: ${state.elevated}`);\n\tif (state.model.provider || state.model.model) {\n\t\tconst modelStr = state.model.provider\n\t\t\t? `${state.model.provider}/${state.model.model}`\n\t\t\t: state.model.model;\n\t\tlines.push(\n\t\t\t`Model: ${modelStr}${state.model.authProfile ? ` @${state.model.authProfile}` : \"\"}`,\n\t\t);\n\t}\n\treturn lines.join(\"\\n\");\n}\n\n/**\n * Format acknowledgment for directive-only messages\n */\nexport function formatDirectiveAcknowledgment(\n\tdirectives: ParsedDirectives,\n): string {\n\tconst changes: string[] = [];\n\n\tif (directives.hasThinkDirective) {\n\t\tchanges.push(`Thinking: ${directives.thinkLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasVerboseDirective) {\n\t\tchanges.push(`Verbose: ${directives.verboseLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasReasoningDirective) {\n\t\tchanges.push(`Reasoning: ${directives.reasoningLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasElevatedDirective) {\n\t\tchanges.push(`Elevated: ${directives.elevatedLevel ?? \"status\"}`);\n\t}\n\tif (directives.hasModelDirective) {\n\t\tchanges.push(`Model: ${directives.rawModelDirective ?? \"status\"}`);\n\t}\n\n\treturn changes.length > 0 ? `✓ ${changes.join(\", \")}` : \"No changes applied\";\n}\n\n// ============================================================================\n// Provider\n// ============================================================================\n\n/**\n * Provider that exposes current directive state to the agent\n */\nexport const directiveStateProvider: Provider = {\n\tname: \"DIRECTIVE_STATE\",\n\tdescription: \"Current directive levels (thinking, verbose, model, etc.)\",\n\tdynamic: true,\n\tasync get(_runtime, message, _state): Promise<ProviderResult> {\n\t\tconst roomId = message.roomId;\n\t\tconst directives = getDirectiveState(roomId);\n\n\t\treturn {\n\t\t\ttext: formatDirectiveState(directives),\n\t\t\tvalues: {\n\t\t\t\tthinkingLevel: directives.thinking,\n\t\t\t\tverboseLevel: directives.verbose,\n\t\t\t\treasoningLevel: directives.reasoning,\n\t\t\t\televatedLevel: directives.elevated,\n\t\t\t\tmodelProvider: directives.model.provider ?? \"\",\n\t\t\t\tmodelName: directives.model.model ?? \"\",\n\t\t\t\tisElevated: directives.elevated !== \"off\",\n\t\t\t},\n\t\t\tdata: { directives },\n\t\t};\n\t},\n};\n\n// ============================================================================\n// Plugin Export\n// ============================================================================\n\n/**\n * Plugin Directives\n *\n * Provides inline directive parsing for Eliza agents, allowing users to\n * control thinking levels, verbosity, model selection, and more through\n * inline commands in their messages.\n */\nexport const directivesPlugin: Plugin = {\n\tname: \"directives\",\n\tdescription:\n\t\t\"Inline directive parsing (@think, @model, @verbose, etc.) for controlling agent behavior\",\n\n\tproviders: [directiveStateProvider],\n\n\tconfig: {\n\t\tDEFAULT_THINKING: \"low\",\n\t\tDEFAULT_VERBOSE: \"off\",\n\t\tALLOW_ELEVATED: \"true\",\n\t\tALLOW_EXEC: \"false\",\n\t},\n\n\ttests: [\n\t\t{\n\t\t\tname: \"directive-parsing\",\n\t\t\ttests: [\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse think directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/think:high hello world\");\n\t\t\t\t\t\tif (!result.hasThinkDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect think directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.thinkLevel !== \"high\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'high', got '${result.thinkLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.cleanedText !== \"hello world\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected 'hello world', got '${result.cleanedText}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Think directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse verbose directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/v on test message\");\n\t\t\t\t\t\tif (!result.hasVerboseDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect verbose directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.verboseLevel !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'on', got '${result.verboseLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Verbose directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse model directive\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\n\t\t\t\t\t\t\t\"/model anthropic/claude-3-opus what is 2+2\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\tif (!result.hasModelDirective) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect model directive\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.rawModelDirective !== \"anthropic/claude-3-opus\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected 'anthropic/claude-3-opus', got '${result.rawModelDirective}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Model directive parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Detect directive-only message\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\"/think:high /verbose on\");\n\t\t\t\t\t\tif (!result.directivesOnly) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect directive-only message\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Directive-only detection works correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Parse multiple directives\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst result = parseDirectives(\n\t\t\t\t\t\t\t\"/think:medium /v full /elevated on hello\",\n\t\t\t\t\t\t);\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!result.hasThinkDirective ||\n\t\t\t\t\t\t\t!result.hasVerboseDirective ||\n\t\t\t\t\t\t\t!result.hasElevatedDirective\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tthrow new Error(\"Should detect all directives\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.thinkLevel !== \"medium\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'medium', got '${result.thinkLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.verboseLevel !== \"full\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'full', got '${result.verboseLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.elevatedLevel !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'on', got '${result.elevatedLevel}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (result.cleanedText !== \"hello\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected 'hello', got '${result.cleanedText}'`);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlogger.success(\"Multiple directives parsed correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname: \"Session state management\",\n\t\t\t\t\tfn: async (_runtime: IAgentRuntime) => {\n\t\t\t\t\t\tconst roomId = \"test-room-123\";\n\t\t\t\t\t\tclearDirectiveState(roomId);\n\n\t\t\t\t\t\tconst directives = parseDirectives(\"/think:high /verbose on\");\n\t\t\t\t\t\tapplyDirectives(roomId, directives);\n\n\t\t\t\t\t\tconst state = getDirectiveState(roomId);\n\t\t\t\t\t\tif (state.thinking !== \"high\") {\n\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t`Expected thinking 'high', got '${state.thinking}'`,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (state.verbose !== \"on\") {\n\t\t\t\t\t\t\tthrow new Error(`Expected verbose 'on', got '${state.verbose}'`);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tclearDirectiveState(roomId);\n\t\t\t\t\t\tlogger.success(\"Session state management works correctly\");\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t},\n\t],\n\n\tasync init(_config, _runtime) {\n\t\tlogger.log(\"[plugin-directives] Initializing directive parser\");\n\t},\n};\n\nexport default directivesPlugin;\n",
6
+ "/**\n * Directive parsers for extracting inline directives from message text\n */\n\nimport type {\n\tDirectiveExtractResult,\n\tElevatedLevel,\n\tExecAsk,\n\tExecHost,\n\tExecSecurity,\n\tReasoningLevel,\n\tThinkLevel,\n\tVerboseLevel,\n} from \"./types\";\n\nconst escapeRegExp = (value: string) =>\n\tvalue.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n\n/**\n * Match a level-based directive (e.g., /think:high)\n */\nfunction matchLevelDirective(\n\tbody: string,\n\tnames: string[],\n): { start: number; end: number; rawLevel?: string } | null {\n\tconst namePattern = names.map(escapeRegExp).join(\"|\");\n\tconst match = body.match(\n\t\tnew RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)`, \"i\"),\n\t);\n\tif (!match || match.index === undefined) {\n\t\treturn null;\n\t}\n\tconst start = match.index;\n\tlet end = match.index + match[0].length;\n\tlet i = end;\n\twhile (i < body.length && /\\s/.test(body[i])) {\n\t\ti += 1;\n\t}\n\tif (body[i] === \":\") {\n\t\ti += 1;\n\t\twhile (i < body.length && /\\s/.test(body[i])) {\n\t\t\ti += 1;\n\t\t}\n\t}\n\tconst argStart = i;\n\twhile (i < body.length && /[A-Za-z0-9-]/.test(body[i])) {\n\t\ti += 1;\n\t}\n\tconst rawLevel = i > argStart ? body.slice(argStart, i) : undefined;\n\tend = i;\n\treturn { start, end, rawLevel };\n}\n\n/**\n * Extract a level-based directive from text\n */\nfunction extractLevelDirective<T>(\n\tbody: string,\n\tnames: string[],\n\tnormalize: (raw?: string) => T | undefined,\n): DirectiveExtractResult<T> {\n\tconst match = matchLevelDirective(body, names);\n\tif (!match) {\n\t\treturn { cleaned: body.trim(), hasDirective: false };\n\t}\n\tconst rawLevel = match.rawLevel;\n\tconst level = normalize(rawLevel);\n\tconst cleaned = body\n\t\t.slice(0, match.start)\n\t\t.concat(\" \")\n\t\t.concat(body.slice(match.end))\n\t\t.replace(/\\s+/g, \" \")\n\t\t.trim();\n\treturn {\n\t\tcleaned,\n\t\tlevel,\n\t\trawLevel,\n\t\thasDirective: true,\n\t};\n}\n\n/**\n * Extract a simple directive (no value)\n */\nfunction extractSimpleDirective(\n\tbody: string,\n\tnames: string[],\n): { cleaned: string; hasDirective: boolean } {\n\tconst namePattern = names.map(escapeRegExp).join(\"|\");\n\tconst match = body.match(\n\t\tnew RegExp(`(?:^|\\\\s)\\\\/(?:${namePattern})(?=$|\\\\s|:)(?:\\\\s*:\\\\s*)?`, \"i\"),\n\t);\n\tconst cleaned = match\n\t\t? body.replace(match[0], \" \").replace(/\\s+/g, \" \").trim()\n\t\t: body.trim();\n\treturn {\n\t\tcleaned,\n\t\thasDirective: Boolean(match),\n\t};\n}\n\n// ============================================================================\n// Normalizers\n// ============================================================================\n\nexport function normalizeThinkLevel(\n\traw?: string | null,\n): ThinkLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\"].includes(key)) return \"off\";\n\tif ([\"on\", \"enable\", \"enabled\"].includes(key)) return \"low\";\n\tif ([\"min\", \"minimal\"].includes(key)) return \"minimal\";\n\tif ([\"low\", \"thinkhard\", \"think-hard\", \"think_hard\"].includes(key))\n\t\treturn \"low\";\n\tif (\n\t\t[\"mid\", \"med\", \"medium\", \"thinkharder\", \"think-harder\", \"harder\"].includes(\n\t\t\tkey,\n\t\t)\n\t)\n\t\treturn \"medium\";\n\tif (\n\t\t[\n\t\t\t\"high\",\n\t\t\t\"ultra\",\n\t\t\t\"ultrathink\",\n\t\t\t\"think-hard\",\n\t\t\t\"thinkhardest\",\n\t\t\t\"highest\",\n\t\t\t\"max\",\n\t\t].includes(key)\n\t)\n\t\treturn \"high\";\n\tif ([\"xhigh\", \"x-high\", \"x_high\"].includes(key)) return \"xhigh\";\n\tif ([\"think\"].includes(key)) return \"minimal\";\n\treturn undefined;\n}\n\nexport function normalizeVerboseLevel(\n\traw?: string | null,\n): VerboseLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n\tif ([\"full\", \"all\", \"everything\"].includes(key)) return \"full\";\n\tif ([\"on\", \"minimal\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n\treturn undefined;\n}\n\nexport function normalizeReasoningLevel(\n\traw?: string | null,\n): ReasoningLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif (\n\t\t[\n\t\t\t\"off\",\n\t\t\t\"false\",\n\t\t\t\"no\",\n\t\t\t\"0\",\n\t\t\t\"hide\",\n\t\t\t\"hidden\",\n\t\t\t\"disable\",\n\t\t\t\"disabled\",\n\t\t].includes(key)\n\t)\n\t\treturn \"off\";\n\tif (\n\t\t[\"on\", \"true\", \"yes\", \"1\", \"show\", \"visible\", \"enable\", \"enabled\"].includes(\n\t\t\tkey,\n\t\t)\n\t)\n\t\treturn \"on\";\n\tif ([\"stream\", \"streaming\", \"draft\", \"live\"].includes(key)) return \"stream\";\n\treturn undefined;\n}\n\nexport function normalizeElevatedLevel(\n\traw?: string | null,\n): ElevatedLevel | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"false\", \"no\", \"0\"].includes(key)) return \"off\";\n\tif ([\"full\", \"auto\", \"auto-approve\", \"autoapprove\"].includes(key))\n\t\treturn \"full\";\n\tif ([\"ask\", \"prompt\", \"approval\", \"approve\"].includes(key)) return \"ask\";\n\tif ([\"on\", \"true\", \"yes\", \"1\"].includes(key)) return \"on\";\n\treturn undefined;\n}\n\nexport function normalizeExecHost(raw?: string | null): ExecHost | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"sandbox\", \"sb\"].includes(key)) return \"sandbox\";\n\tif ([\"gateway\", \"gw\", \"local\"].includes(key)) return \"gateway\";\n\tif ([\"node\", \"remote\"].includes(key)) return \"node\";\n\treturn undefined;\n}\n\nexport function normalizeExecSecurity(\n\traw?: string | null,\n): ExecSecurity | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"deny\", \"none\", \"off\"].includes(key)) return \"deny\";\n\tif ([\"allowlist\", \"allow\", \"list\"].includes(key)) return \"allowlist\";\n\tif ([\"full\", \"all\", \"any\"].includes(key)) return \"full\";\n\treturn undefined;\n}\n\nexport function normalizeExecAsk(raw?: string | null): ExecAsk | undefined {\n\tif (!raw) return undefined;\n\tconst key = raw.toLowerCase();\n\tif ([\"off\", \"never\", \"no\"].includes(key)) return \"off\";\n\tif ([\"on-miss\", \"miss\", \"fallback\"].includes(key)) return \"on-miss\";\n\tif ([\"always\", \"on\", \"yes\"].includes(key)) return \"always\";\n\treturn undefined;\n}\n\n// ============================================================================\n// Directive Extractors\n// ============================================================================\n\nexport function extractThinkDirective(body?: string): {\n\tcleaned: string;\n\tthinkLevel?: ThinkLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"thinking\", \"think\", \"t\"],\n\t\tnormalizeThinkLevel,\n\t);\n\tconst cleaned =\n\t\textracted.hasDirective && !extracted.level && extracted.rawLevel\n\t\t\t? `${extracted.rawLevel} ${extracted.cleaned}`.trim()\n\t\t\t: extracted.cleaned;\n\treturn {\n\t\tcleaned,\n\t\tthinkLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractVerboseDirective(body?: string): {\n\tcleaned: string;\n\tverboseLevel?: VerboseLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"verbose\", \"v\"],\n\t\tnormalizeVerboseLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\tverboseLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractReasoningDirective(body?: string): {\n\tcleaned: string;\n\treasoningLevel?: ReasoningLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"reasoning\", \"reason\"],\n\t\tnormalizeReasoningLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\treasoningLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractElevatedDirective(body?: string): {\n\tcleaned: string;\n\televatedLevel?: ElevatedLevel;\n\trawLevel?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\tconst extracted = extractLevelDirective(\n\t\tbody,\n\t\t[\"elevated\", \"elev\"],\n\t\tnormalizeElevatedLevel,\n\t);\n\treturn {\n\t\tcleaned: extracted.cleaned,\n\t\televatedLevel: extracted.level,\n\t\trawLevel: extracted.rawLevel,\n\t\thasDirective: extracted.hasDirective,\n\t};\n}\n\nexport function extractStatusDirective(body?: string): {\n\tcleaned: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\treturn extractSimpleDirective(body, [\"status\"]);\n}\n\nexport function extractModelDirective(\n\tbody: string,\n\toptions?: { aliases?: string[] },\n): {\n\tcleaned: string;\n\trawModel?: string;\n\trawProfile?: string;\n\thasDirective: boolean;\n} {\n\tif (!body) return { cleaned: \"\", hasDirective: false };\n\n\t// Match /model:provider/model@profile or /model provider/model@profile\n\tconst modelMatch = body.match(\n\t\t/(?:^|\\s)\\/model(?:\\s*:\\s*|\\s+)([a-zA-Z0-9_-]+(?:\\/[a-zA-Z0-9._-]+)?(?:@[a-zA-Z0-9_-]+)?)/i,\n\t);\n\n\tif (modelMatch) {\n\t\tconst fullMatch = modelMatch[1];\n\t\tconst atIndex = fullMatch.indexOf(\"@\");\n\t\tconst rawModel = atIndex >= 0 ? fullMatch.slice(0, atIndex) : fullMatch;\n\t\tconst rawProfile = atIndex >= 0 ? fullMatch.slice(atIndex + 1) : undefined;\n\t\tconst cleaned = body\n\t\t\t.replace(modelMatch[0], \" \")\n\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t.trim();\n\t\treturn { cleaned, rawModel, rawProfile, hasDirective: true };\n\t}\n\n\t// Check for simple /model directive without value\n\tconst simpleMatch = body.match(/(?:^|\\s)\\/model(?=$|\\s|:)/i);\n\tif (simpleMatch) {\n\t\tconst cleaned = body\n\t\t\t.replace(simpleMatch[0], \" \")\n\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t.trim();\n\t\treturn { cleaned, hasDirective: true };\n\t}\n\n\t// Check for model aliases\n\tif (options?.aliases?.length) {\n\t\tfor (const alias of options.aliases) {\n\t\t\tconst aliasPattern = new RegExp(\n\t\t\t\t`(?:^|\\\\s)/${escapeRegExp(alias)}(?=$|\\\\s)`,\n\t\t\t\t\"i\",\n\t\t\t);\n\t\t\tconst aliasMatch = body.match(aliasPattern);\n\t\t\tif (aliasMatch) {\n\t\t\t\tconst cleaned = body\n\t\t\t\t\t.replace(aliasMatch[0], \" \")\n\t\t\t\t\t.replace(/\\s+/g, \" \")\n\t\t\t\t\t.trim();\n\t\t\t\treturn { cleaned, rawModel: alias, hasDirective: true };\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { cleaned: body.trim(), hasDirective: false };\n}\n\nexport function extractExecDirective(body?: string): {\n\tcleaned: string;\n\texecHost?: ExecHost;\n\texecSecurity?: ExecSecurity;\n\texecAsk?: ExecAsk;\n\texecNode?: string;\n\trawExecHost?: string;\n\trawExecSecurity?: string;\n\trawExecAsk?: string;\n\trawExecNode?: string;\n\thasExecOptions: boolean;\n\tinvalidHost: boolean;\n\tinvalidSecurity: boolean;\n\tinvalidAsk: boolean;\n\tinvalidNode: boolean;\n\thasDirective: boolean;\n} {\n\tif (!body) {\n\t\treturn {\n\t\t\tcleaned: \"\",\n\t\t\thasExecOptions: false,\n\t\t\tinvalidHost: false,\n\t\t\tinvalidSecurity: false,\n\t\t\tinvalidAsk: false,\n\t\t\tinvalidNode: false,\n\t\t\thasDirective: false,\n\t\t};\n\t}\n\n\t// Match /exec with optional key=value pairs\n\tconst execMatch = body.match(/(?:^|\\s)\\/exec(?:\\s+([^/\\n]+))?(?=$|\\s|\\/)/i);\n\tif (!execMatch) {\n\t\treturn {\n\t\t\tcleaned: body.trim(),\n\t\t\thasExecOptions: false,\n\t\t\tinvalidHost: false,\n\t\t\tinvalidSecurity: false,\n\t\t\tinvalidAsk: false,\n\t\t\tinvalidNode: false,\n\t\t\thasDirective: false,\n\t\t};\n\t}\n\n\tconst args = execMatch[1]?.trim() ?? \"\";\n\tconst cleaned = body.replace(execMatch[0], \" \").replace(/\\s+/g, \" \").trim();\n\n\tlet rawExecHost: string | undefined;\n\tlet rawExecSecurity: string | undefined;\n\tlet rawExecAsk: string | undefined;\n\tlet rawExecNode: string | undefined;\n\n\t// Parse key=value pairs\n\tconst kvPattern = /(\\w+)\\s*=\\s*([^\\s]+)/g;\n\tfor (const match of args.matchAll(kvPattern)) {\n\t\tconst key = match[1].toLowerCase();\n\t\tconst value = match[2];\n\t\tif (key === \"host\") rawExecHost = value;\n\t\telse if (key === \"security\") rawExecSecurity = value;\n\t\telse if (key === \"ask\") rawExecAsk = value;\n\t\telse if (key === \"node\") rawExecNode = value;\n\t}\n\n\tconst execHost = normalizeExecHost(rawExecHost);\n\tconst execSecurity = normalizeExecSecurity(rawExecSecurity);\n\tconst execAsk = normalizeExecAsk(rawExecAsk);\n\n\treturn {\n\t\tcleaned,\n\t\texecHost,\n\t\texecSecurity,\n\t\texecAsk,\n\t\texecNode: rawExecNode,\n\t\trawExecHost,\n\t\trawExecSecurity,\n\t\trawExecAsk,\n\t\trawExecNode,\n\t\thasExecOptions: Boolean(\n\t\t\trawExecHost || rawExecSecurity || rawExecAsk || rawExecNode,\n\t\t),\n\t\tinvalidHost: Boolean(rawExecHost && !execHost),\n\t\tinvalidSecurity: Boolean(rawExecSecurity && !execSecurity),\n\t\tinvalidAsk: Boolean(rawExecAsk && !execAsk),\n\t\tinvalidNode: false, // Node validation is context-dependent\n\t\thasDirective: true,\n\t};\n}\n"
7
7
  ],
8
- "mappings": "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",
9
- "debugId": "4600B3776B5B382264756E2164756E21",
8
+ "mappings": "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",
9
+ "debugId": "1664D5D4B9BED94F64756E2164756E21",
10
10
  "names": []
11
11
  }
package/package.json CHANGED
@@ -1,91 +1,91 @@
1
1
  {
2
- "name": "@elizaos/plugin-directives",
3
- "version": "2.0.0-alpha.5",
4
- "type": "module",
5
- "main": "dist/cjs/index.cjs",
6
- "module": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "sideEffects": false,
9
- "description": "Inline directive parsing for Eliza agents (@think, @model, @verbose, etc.)",
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/elizaos/eliza.git"
13
- },
14
- "exports": {
15
- "./package.json": "./package.json",
16
- ".": {
17
- "types": "./dist/index.d.ts",
18
- "import": "./dist/index.js",
19
- "require": "./dist/cjs/index.cjs",
20
- "default": "./dist/index.js"
21
- }
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "dependencies": {
27
- "@elizaos/core": "2.0.0-alpha.3"
28
- },
29
- "devDependencies": {
30
- "@types/bun": "^1.2.22",
31
- "@types/node": "^24.5.2",
32
- "typescript": "^5.9.2",
33
- "@biomejs/biome": "^2.3.11"
34
- },
35
- "scripts": {
36
- "build": "bun run build.ts",
37
- "dev": "bun --hot build.ts",
38
- "test": "elizaos test",
39
- "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
40
- "format": "bunx @biomejs/biome format --write .",
41
- "format:check": "bunx @biomejs/biome format .",
42
- "lint": "bunx @biomejs/biome check --write --unsafe .",
43
- "lint:check": "bunx @biomejs/biome check .",
44
- "typecheck": "tsc --noEmit"
45
- },
46
- "publishConfig": {
47
- "access": "public"
48
- },
49
- "agentConfig": {
50
- "pluginType": "elizaos:plugin:1.0.0",
51
- "pluginParameters": {
52
- "DEFAULT_THINKING": {
53
- "type": "string",
54
- "description": "Default thinking level (off, minimal, low, medium, high)",
55
- "required": false,
56
- "default": "low",
57
- "sensitive": false
58
- },
59
- "DEFAULT_VERBOSE": {
60
- "type": "string",
61
- "description": "Default verbose level (off, on, full)",
62
- "required": false,
63
- "default": "off",
64
- "sensitive": false
65
- },
66
- "ALLOW_ELEVATED": {
67
- "type": "boolean",
68
- "description": "Allow elevated permission directives",
69
- "required": false,
70
- "default": "true",
71
- "sensitive": false
72
- },
73
- "ALLOW_EXEC": {
74
- "type": "boolean",
75
- "description": "Allow exec directive for shell configuration",
76
- "required": false,
77
- "default": "false",
78
- "sensitive": false
79
- }
80
- }
81
- },
82
- "milaidy": {
83
- "platforms": [
84
- "node"
85
- ],
86
- "runtime": "node",
87
- "platformDetails": {
88
- "node": "Default export (Node.js)"
89
- }
90
- }
2
+ "name": "@elizaos/plugin-directives",
3
+ "version": "2.0.0-alpha.6",
4
+ "type": "module",
5
+ "main": "dist/cjs/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "description": "Inline directive parsing for Eliza agents (@think, @model, @verbose, etc.)",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/elizaos/eliza.git"
13
+ },
14
+ "exports": {
15
+ "./package.json": "./package.json",
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js",
19
+ "require": "./dist/cjs/index.cjs",
20
+ "default": "./dist/index.js"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "dependencies": {
27
+ "@elizaos/core": "2.0.0-alpha.3"
28
+ },
29
+ "devDependencies": {
30
+ "@types/bun": "^1.2.22",
31
+ "@types/node": "^24.5.2",
32
+ "typescript": "^5.9.2",
33
+ "@biomejs/biome": "^2.3.11"
34
+ },
35
+ "scripts": {
36
+ "build": "bun run build.ts",
37
+ "dev": "bun --hot build.ts",
38
+ "test": "npx -y vitest@4.0.18 run --passWithNoTests",
39
+ "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
40
+ "format": "bunx @biomejs/biome@2.4.2 format --write .",
41
+ "format:check": "bunx @biomejs/biome@2.4.2 format .",
42
+ "lint": "bunx @biomejs/biome@2.4.2 check --write --unsafe .",
43
+ "lint:check": "bunx @biomejs/biome@2.4.2 check .",
44
+ "typecheck": "tsc --noEmit"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "agentConfig": {
50
+ "pluginType": "elizaos:plugin:1.0.0",
51
+ "pluginParameters": {
52
+ "DEFAULT_THINKING": {
53
+ "type": "string",
54
+ "description": "Default thinking level (off, minimal, low, medium, high)",
55
+ "required": false,
56
+ "default": "low",
57
+ "sensitive": false
58
+ },
59
+ "DEFAULT_VERBOSE": {
60
+ "type": "string",
61
+ "description": "Default verbose level (off, on, full)",
62
+ "required": false,
63
+ "default": "off",
64
+ "sensitive": false
65
+ },
66
+ "ALLOW_ELEVATED": {
67
+ "type": "boolean",
68
+ "description": "Allow elevated permission directives",
69
+ "required": false,
70
+ "default": "true",
71
+ "sensitive": false
72
+ },
73
+ "ALLOW_EXEC": {
74
+ "type": "boolean",
75
+ "description": "Allow exec directive for shell configuration",
76
+ "required": false,
77
+ "default": "false",
78
+ "sensitive": false
79
+ }
80
+ }
81
+ },
82
+ "milady": {
83
+ "platforms": [
84
+ "node"
85
+ ],
86
+ "runtime": "node",
87
+ "platformDetails": {
88
+ "node": "Default export (Node.js)"
89
+ }
90
+ }
91
91
  }