Browse, inspect, and manage workflow templates — list built-in templates, show template details and stages, validate workflow files
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill source-command-workflows-workflow-export --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Source Command Workflows Workflow Export?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-source-command-workflows-workflow-export)More formats (shields.io, HTML) on the badges page.
---
name: "source-command-workflows-workflow-export"
description: "Browse, inspect, and manage workflow templates — list built-in templates, show template details and stages, validate workflow files"
---
# source-command-workflows-workflow-export
Use this skill when the user asks to run the migrated source command `workflows-workflow-export`.
## Command Template
# Workflow Templates
Browse and manage workflow templates — inspect built-in templates and validate custom workflow files.
## How to Invoke
```
Skill("workflows:workflow-export")
```
---
## CLI Reference
```bash
# List all available templates
npx monomind workflow template list
# Show details for a specific template (stages, agents, estimated duration)
npx monomind workflow template show development
npx monomind workflow template show security-audit
# Validate a custom workflow file
npx monomind workflow validate -f ./workflow.yaml
npx monomind workflow validate -f ./workflow.json --strict
# List past workflow runs
npx monomind workflow list --status completed --limit 20
npx monomind workflow list --status all
```
## Built-in Templates Reference
| Template | Stages | Estimated Duration |
|----------|--------|--------------------|
| `development` | Planning → Implementation → Testing → Review → Integration | 15-30 min |
| `research` | Discovery → Analysis → Synthesis → Documentation | 10-20 min |
| `testing` | Unit → Integration → E2E → Performance | 5-15 min |
| `security-audit` | Threat Model → Static → Dynamic → Report | 20-40 min |
| `code-review` | Initial → Security → Quality → Feedback | 10-25 min |
| `refactoring` | Analysis → Planning → Refactor → Validation | 15-35 min |
| `custom` | Define your own stages | varies |
## MCP Tools
```javascript
// List templates
mcp__monomind__workflow_template({})
// List past workflow runs
mcp__monomind__workflow_list({ status: "completed", limit: 20 })
// Get status of a specific run
mcp__monomind__workflow_status({ workflowId: "wf-123" })
```
## Workflow File Format
To create a custom workflow file for use with `workflow run -f`:
```yaml
name: my-workflow
stages:
- name: Planning
agents: [architect]
- name: Implementation
agents: [coder]
- name: Testing
agents: [tester]
- name: Review
agents: [reviewer]
```
Validate before running:
```bash
npx monomind workflow validate -f ./my-workflow.yaml --strict
```
## Related Skills
- `workflows:workflow-execute` — Run workflows from templates
- `workflows:workflow-create` — Save a custom workflow as a template
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!