export declare const ERROR_PREFIX = "[ruler]"; export declare const DEFAULT_RULES_FILENAME = "AGENTS.md"; export declare function actionPrefix(dry: boolean): string; export declare function createRulerError(message: string, context?: string): Error; export declare function logVerbose(message: string, isVerbose: boolean): void; /** * Centralized logging functions with consistent output streams and prefixing. * - info/verbose go to stdout (user-visible progress) * - warn/error go to stderr (problems) */ export declare function logInfo(message: string, dryRun?: boolean): void; export declare function logWarn(message: string, dryRun?: boolean): void; export declare function logError(message: string, dryRun?: boolean): void; export declare function logVerboseInfo(message: string, isVerbose: boolean, dryRun?: boolean): void; export declare const SKILLS_DIR = "skills"; export declare const RULER_SKILLS_PATH = ".ruler/skills"; export declare const CLAUDE_SKILLS_PATH = ".claude/skills"; export declare const CODEX_SKILLS_PATH = ".agents/skills"; export declare const OPENCODE_SKILLS_PATH = ".opencode/skills"; export declare const PI_SKILLS_PATH = ".pi/skills"; export declare const GOOSE_SKILLS_PATH = ".agents/skills"; export declare const VIBE_SKILLS_PATH = ".vibe/skills"; export declare const ROO_SKILLS_PATH = ".roo/skills"; export declare const GEMINI_SKILLS_PATH = ".gemini/skills"; export declare const JUNIE_SKILLS_PATH = ".junie/skills"; export declare const CURSOR_SKILLS_PATH = ".cursor/skills"; export declare const WINDSURF_SKILLS_PATH = ".windsurf/skills"; export declare const FACTORY_SKILLS_PATH = ".factory/skills"; export declare const ANTIGRAVITY_SKILLS_PATH = ".agent/skills"; export declare const SKILL_MD_FILENAME = "SKILL.md"; export declare const RULER_SUBAGENTS_PATH = ".ruler/agents"; export declare const CLAUDE_SUBAGENTS_PATH = ".claude/agents"; export declare const CURSOR_SUBAGENTS_PATH = ".cursor/agents"; export declare const CODEX_SUBAGENTS_PATH = ".codex/agents"; export declare const COPILOT_SUBAGENTS_PATH = ".github/agents";