2026-03-14 02:35:01 +00:00
|
|
|
#!/usr/bin/env bun
|
2026-03-16 12:06:12 +00:00
|
|
|
import { run } from "../src/index.ts";
|
2026-03-14 02:35:01 +00:00
|
|
|
|
2026-03-16 12:06:12 +00:00
|
|
|
const args = process.argv.slice(2);
|
|
|
|
|
const command = args[0] as "skill-install";
|
|
|
|
|
const commandArgs = args.slice(1);
|
2026-03-14 02:35:01 +00:00
|
|
|
|
2026-03-16 12:06:12 +00:00
|
|
|
/*
|
|
|
|
|
Usage:
|
|
|
|
|
bun run scripts/run.ts skill-install '{"skills":[{"repo_url":"http://...","skill_slug":"my-skill"}]}'
|
|
|
|
|
*/
|
2026-03-14 02:35:01 +00:00
|
|
|
|
2026-03-16 12:06:12 +00:00
|
|
|
await run(command, commandArgs, false);
|