#!/usr/bin/env node /** * Bundle a single skill script * * @param args - Bundle arguments * @param args.scriptPath - Path to the compiled script.js file */ declare const bundleSkill: (args: { scriptPath: string; }) => Promise; /** * Main execution function */ declare const main: () => Promise; export { bundleSkill, main }; //# sourceMappingURL=bundle-skills.d.ts.map