/** * Context Injector Module * Generates system prompt XML for skill discovery */ import type { SkillRef, Skill, SkillPromptXML } from '../types/index.js'; /** * Generate XML for system prompt injection (Level 1 - metadata only) * This is what gets injected at startup for skill discovery */ export declare function generateSkillsPromptXML(skills: SkillRef[]): SkillPromptXML; /** * Generate the skill activation prompt (Level 2 - full instructions) * This is what gets sent when a skill is triggered */ export declare function generateSkillActivationPrompt(skill: Skill): string; /** * Generate instructions for the agent on how to use skills */ export declare function generateSkillSystemInstructions(): string; /** * Generate a combined system prompt section with skills */ export declare function generateFullSkillsContext(skills: SkillRef[]): string; //# sourceMappingURL=injector.d.ts.map