with one click
typescript-eval
Test TypeScript code snippets before persisting as skills
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Test TypeScript code snippets before persisting as skills
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | typescript-eval |
| description | Test TypeScript code snippets before persisting as skills |
| compatibility | Designed for Vellum personal assistants |
| metadata | {"emoji":"🧪","vellum":{"category":"development","display-name":"TypeScript Evaluation"}} |
When 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).Browse the web using `assistant browser` CLI commands
Use when the user wants to build, scaffold, ship, or edit a Vellum plugin that bundles hooks, tools, and skills into one installable package.
Manage Gmail email — drafting, sending, organizing, filters, vacation replies, and inbox analysis
View, create, and manage Google Calendar events and check availability
View, create, and manage Outlook Calendar events and check availability
Cut a new release: create the release branch (staging bake), then dispatch the production Release run on that branch.