erosolar-cli
Version:
Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning
11 lines • 601 B
TypeScript
import type { AgentRulesetManifest } from '../contracts/v1/agentRules.js';
import type { ProfileName } from './agentProfiles.js';
export interface LoadRulebookOptions {
root?: string;
file?: string;
inline?: AgentRulesetManifest;
}
export declare function loadAgentRulebook(profile: ProfileName, options?: LoadRulebookOptions): AgentRulesetManifest;
export declare function buildAgentRulebookPrompt(profile: ProfileName, options?: LoadRulebookOptions): string;
export declare function formatAgentRulebook(manifest: AgentRulesetManifest): string;
//# sourceMappingURL=agentRulebook.d.ts.map