vibe-tools
Version:
CLI tools for AI agents
11 lines (10 loc) • 439 B
TypeScript
/**
* Entry point for the Xcode command functionality in vibe-tools.
* This file exports the main XcodeCommand instance that handles all Xcode-related operations.
*
* The command is designed to be simple and focused, delegating actual functionality
* to subcommands like 'build' for better organization and maintainability.
*/
import { XcodeCommand } from './xcode.js';
declare const _default: XcodeCommand;
export default _default;