/** * openlore setup command * * Installs workflow skills and agent integration files into the current project. * Unlike `analyze --ai-configs` (which generates project-specific context files), * `setup` copies static workflow assets that are the same for every project: * * - Mistral Vibe skills -> .vibe/skills/openlore-{name}/SKILL.md (8 skills) * - Cline workflows -> .clinerules/workflows/openlore-{name}.md * - Claude Code skills -> .claude/skills/openlore-{name}/SKILL.md (8 skills) * - OpenCode skills -> .opencode/skills/openlore-{name}/SKILL.md (8 skills) * - GSD commands -> .claude/commands/gsd/openlore-{name}.md * * Files are never overwritten — existing files are skipped silently. * Assets are read from the `examples/` directory shipped with the openlore package. */ import { Command } from 'commander'; /** Install `openlore panic-check` as a PreToolUse hook (idempotent). */ export declare function installPanicCheckHook(rootPath: string, format?: string): Promise; /** Install `openlore gryph-watch` as a UserPromptSubmit hook (idempotent). */ export declare function installGryphWatchHook(rootPath: string): Promise; /** Remove the opt-in panic-check + gryph-watch hooks (idempotent — the inverse of * `setup --hooks `). Only strips openlore-marked entries; leaves user hooks. */ export declare function uninstallPanicHooks(rootPath: string): Promise; export declare const setupCommand: Command; //# sourceMappingURL=setup.d.ts.map