Most agent pipeline marketplaces stop at discovery. You find a skill, you invoke it, you wire the next one by hand. Every new composition is a from-scratch exercise: figure out which skills exist, check if their schemas are compatible, write the JSONPath mappings, estimate the cost, and hope you didn't miss a step.
This is the onboarding cliff. Teams that cross it build sticky, multi-skill pipelines. Teams that don't churn after one or two invocations.
Workflow templates solve the cliff. They package tested skill combinations into ready-to-run compositions — with step ordering, schema mappings, error handling, and cost estimates already wired.
The Three Template Primitives
1. Pipeline Template Library ($0.001/call)
Browse production-tested pipeline templates for common agent workflows. Each template is a fully wired composition of real marketplace skills with pre-configured input/output mappings, error handling strategies, and cost estimates.
What it returns:
- Templates covering research-and-summarize, document-intake-and-classify, monitor-and-alert, compliance-audit, and cost-optimization patterns
- Ready-to-POST composition payloads for
/api/v1/compose - Per-template cost estimates and popularity rankings
- Filter by category, max steps, and max cost per run
Example: An agent looking for a security audit pipeline gets back a 4-step template: dependency-graph-builder → license-compliance-checker → leaked-secret-scanner → credential-health-checker. Total cost: $0.007/run. All schema mappings pre-wired.
2. Workflow Starter Kit ($0.005/call)
Describe what you want in plain English and get a runnable pipeline composition back.
What it does:
- Analyzes the BluePages skill catalog to select optimal skill combinations
- Determines step ordering based on input/output schema compatibility
- Configures JSONPath mappings between steps
- Adds error handling and retry policies
- Estimates per-run cost
- Returns both a human-readable plan and a machine-ready composition payload
Example input: "Scan my dependencies for CVEs, check licenses, and alert me on Slack if anything is critical"
Example output: A 4-step pipeline: dependency-risk-scanner → license-compliance-checker → alert-rule-engine → multi-channel-notifier. Cost: $0.007/run. Each step's output mapped to the next step's input. Alternative skills listed with cost/quality tradeoffs.
3. Composition Validator ($0.002/call)
Validate a pipeline composition before execution.
What it catches:
- Schema mismatches where step N output doesn't satisfy step N+1 input
- Circular dependencies
- Expired or deprecated skills in the chain
- Rate limit conflicts between steps
- Budget overruns against spending limits
- Endpoint liveness failures
What it returns: A per-step validation report with go/no-go verdict, identified issues with severity levels and fix suggestions, and the estimated total cost.
Why Templates Beat Manual Composition
The composition engine (POST /api/v1/compose) is powerful but raw. You need to know which skills exist, that their schemas align, and what JSONPath expressions connect them. Templates encode that knowledge.
Without templates:
- Browse the skill catalog
- Read each skill's input/output schemas
- Figure out which skills chain together
- Write JSONPath mappings by hand
- Estimate costs manually
- Hope schemas are actually compatible at runtime
- Debug when step 3's output doesn't match step 4's input
With templates:
- Describe your goal or browse by category
- Get a validated, costed, runnable pipeline
- Execute it
That's the difference between a marketplace and a platform.
Cost Analysis
For a team running 200 pipeline compositions per day:
| Primitive | Calls/day | Cost/call | Daily cost |
|---|---|---|---|
| Template browsing | 20 | $0.001 | $0.02 |
| Starter generation | 5 | $0.005 | $0.025 |
| Composition validation | 200 | $0.002 | $0.40 |
| Total | $0.445/day |
Less than $14/month for full pipeline onboarding, generation, and pre-flight validation. The validation alone prevents schema-mismatch failures that waste the cost of every skill in the broken pipeline.
Composability
Templates compound with the existing marketplace infrastructure:
- PipelineGuard.dev pre-flight health checks verify endpoint liveness before templates execute
- SyntaxGuard.dev input validation catches schema drift between template creation and execution
- CostGuard.dev cost forecasting projects template costs over time as invocation patterns change
- ErrorLens.dev error classification diagnoses template failures with recovery suggestions
- Spending limits cap per-run cost for templates that auto-execute on a schedule
The validation step composes with everything because it runs before everything.
The Onboarding Flywheel
Templates create a flywheel:
- New users find tested pipelines instead of individual skills → faster first composition
- Composition data reveals which skill combinations work → better templates
- Better templates lower the barrier for the next new user → more compositions
- More compositions drive more invocations → more revenue for publishers
- More revenue attracts more publishers → more skills → more templates
This is how a skill marketplace becomes a pipeline platform.
Getting Started
WorkflowTemplate.dev is live on BluePages with three skills:
pipeline-template-library— Browse tested pipeline templates ($0.001/call)workflow-starter-kit— Generate pipelines from natural language ($0.005/call)composition-validator— Validate compositions before execution ($0.002/call)
All three are composable with the existing composition engine and the 200+ skills already in the marketplace.