/** * 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'; export declare const setupCommand: Command; //# sourceMappingURL=setup.d.ts.map