Five phases, one reliable workflow
Every skill built in SkillsWorkbench passes through the same rigorous pipeline before it touches production.
Brainstorm
Phase 1Describe your workflow in plain language. Starter Chips guide you for each industry. The platform asks clarifying questions for healthcare and finance workflows before drafting begins.
Covers
Free-form prompting · Starter chips · Industry selection · Requirements gathering
"Build a prior-auth assistant for oncology workflows that checks CPT codes against payer policies"
Draft
Phase 2The industry architect generates a structured SKILL.md file with trigger phrases, tool declarations, step-by-step instructions, and token strategy annotations — all tuned for your vertical.
Covers
SKILL.md generation · Trigger optimisation · YAML frontmatter · Allowed-tools injection
Output: a production-ready SKILL.md with subagent planning, compliance constraints, and audit hooks
Evaluate
Phase 3Run the skill against adversarially generated mock data. The Stress Test Sandbox embeds hidden traps and measures accuracy, token usage, and latency. The Eval Lab generates A/B test cases.
Covers
Adversarial mock data · Hidden traps · Accuracy scoring · Token benchmarking
Result: 94% accuracy on 8 adversarial scenarios, ~650 tokens per run, 1.2s estimated latency
Optimise
Phase 4Review the token economy dashboard. Identify which tasks are overusing expensive models and refine the skill instructions to route bulk work to Haiku and critical reasoning to Opus.
Covers
Haiku-first delegation · Sonnet escalation · Opus for ambiguity · Monthly savings projection
Before: 2,100 tokens at Opus rates. After: 450 tokens with tiered delegation — 78% cost reduction
Deploy
Phase 5Export to Claude Code, push to Managed Agents, or integrate with enterprise systems via MCP. The SKILL.md file is portable — deploy once, reuse everywhere.
Covers
Claude Code · Managed Agents · Enterprise MCP · Internal APIs
# Drop into your project: .claude/skills/healthcare-prior-auth-assistant.md
The WhatsApp token-saving strategy
Route each task to the cheapest capable model. Reserve expensive models for the work only they can do.
Bulk scanning & classification
Synthesis & structured output
Critical reasoning & ambiguity
Token comparison — same task
Healthcare prior-auth check · typical run
78% reduction
in token cost with tiered delegation
Guard rails
max_spawn_depth= 2Prevents recursive subagent cost explosion
context_mode= forkIsolates each session — no memory bleed
haiku_threshold= bulk tasksAutomatic Haiku routing for scanning
How the platform is structured
SkillsWorkbench is a layered system — each layer is independently testable and the interfaces between them are well-defined.
Browser-based SPA
Next.js App Router · Streaming API routes
SaaS · Healthcare (HIPAA) · Finance (GAAP)
SKILL.md drafting · Trigger optimiser · Token economy
Stress test · Eval lab · A/B comparison
Claude Code · Managed Agents · Enterprise MCP
Anthropic API
· Claude Haiku
· Claude Sonnet
· Claude Opus
Tool Surface
· bash · file_edit
· github_api · search
· MCP servers
Security
· API key server-only
· No browser exposure
· Rate limiting
· Streaming proxied
Skills built for real workflows
Each skill is tuned to a specific industry and workflow — not a generic assistant.
SaaS Security Architect
Scans codebases for RLS leaks, middleware vulnerabilities, API key exposure, and authentication gaps. Reports findings with line-level provenance and severity ratings.
Tools
· file_edit
· bash
· github_api
Model routing
Haiku scan → Sonnet synthesis
Example output
Detected 3 RLS bypass vectors in middleware.ts lines 44, 78, 112
Three ways to deploy a skill
Skills are portable markdown files. Deploy them to any environment that can run Claude.
Claude Code
The fastest path for individual developers and engineering teams. Download the SKILL.md from the workbench and place it in your project — no CLI commands or registry needed.
# Place in your project root: .claude/skills/your-skill-name.md
Best for: Engineers, local iteration, rapid prototyping
Managed Agents
The Deploy panel assembles an Anthropic Managed Agents-compatible payload. Copy it from the browser console and submit it to the Anthropic API to create a hosted, long-running agent session.
{ "anthropic-beta": "managed-agents-2026-04-01",
"skill": { "markdown": "..." } }Best for: Long-running workflows, enterprise automation, multi-step pipelines
Enterprise / MCP
Integrate skills into existing enterprise systems using Model Context Protocol (MCP) servers, internal REST APIs, or purpose-built adapters for healthcare, finance, and legal platforms.
# Connect via MCP or your internal API gateway
Best for: Enterprise teams, compliance workflows, regulated industry integrations
Ready to build your first skill?
Open the workbench, pick your industry, and describe the workflow you want to automate. The platform will guide the rest.