UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

12 lines 571 B
import { copyClaudeFiles } from '../utils/copy-claude-files.js'; /** * Copies all Claude files (commands, agents, etc.) from the npm package to the user's project. * @param options Configuration options * @param options.force If true, overwrites existing files * @throws Error if source directory is not found or copy operation fails */ export async function executeCopyCommands(options = {}) { // Use the shared utility that copies all .claude files await copyClaudeFiles({ force: options.force, silent: false }); } //# sourceMappingURL=copy-commands.js.map