Test TypeScript code snippets before persisting as skills
assistant skills install typescript-evalWhen you need to test a TypeScript snippet before persisting it as a managed skill, use bash directly.
bash command="mkdir -p /tmp/vellum-eval && cat > /tmp/vellum-eval/snippet.ts << 'SNIPPET_EOF'
<your code here>
SNIPPET_EOF"
bash command="bun run /tmp/vellum-eval/snippet.ts" timeout_seconds=10
If the snippet exports a default or run function, write a runner script:
bash command="cat > /tmp/vellum-eval/runner.ts << 'RUNNER_EOF'
import * as mod from './snippet.ts';
const fn = (mod as any).default ?? (mod as any).run;
const input = {}; // mock input
const result = await fn(input);
console.log(JSON.stringify(result, null, 2));
RUNNER_EOF"
Then run the runner:
bash command="bun run /tmp/vellum-eval/runner.ts" timeout_seconds=10
bash command="rm -rf /tmp/vellum-eval/"
scaffold_managed_skill only after explicit user consent.timeout_seconds=10 (or up to 20 for complex snippets).