Run multi-agent workflows using built-in templates (development, research, testing, security-audit, etc.) via real npx monomind workflow run CLI
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill workflows-workflow-execute --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Workflows Workflow Execute?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-workflows-workflow-execute)More formats (shields.io, HTML) on the badges page.
---
name: workflows-workflow-execute
description: Run multi-agent workflows using built-in templates (development, research, testing, security-audit, etc.) via real npx monomind workflow run CLI
type: flow
---
# Workflow Execute
Run multi-agent workflows using built-in templates or custom workflow files.
## How to Invoke
```
Skill("workflows:workflow-execute")
```
---
## CLI Reference
```bash
# Run a built-in template
npx monomind workflow run -t development --task "Build REST API with auth"
npx monomind workflow run -t research --task "Analyze performance bottlenecks"
npx monomind workflow run -t testing
npx monomind workflow run -t security-audit
# Run from a workflow file
npx monomind workflow run -f ./workflow.yaml
npx monomind workflow run -f ./workflow.json
# Validate without executing
npx monomind workflow run -t development --dry-run
```
## All Flags
| Flag | Short | Default | Description |
|------|-------|---------|-------------|
| `--template` | `-t` | — | Built-in template name |
| `--file` | `-f` | — | Workflow definition file (YAML/JSON) |
| `--task` | — | — | Task description passed to the workflow |
| `--parallel` | `-p` | `true` | Enable parallel agent execution |
| `--max-agents` | `-m` | `5` | Maximum agents to spawn |
| `--timeout` | — | `30` | Timeout in minutes |
| `--dry-run` | `-d` | `false` | Validate without executing |
## Built-in Templates
| Template | Stages | Agent Types |
|----------|--------|-------------|
| `development` | Planning → Implementation → Testing → Review → Integration | coder, tester, reviewer |
| `research` | Discovery → Analysis → Synthesis → Documentation | researcher, analyst |
| `testing` | Unit → Integration → E2E → Performance | tester, coder |
| `security-audit` | Threat Model → Static → Dynamic → Report | security-architect, auditor |
| `code-review` | Initial → Security → Quality → Feedback | reviewer, auditor, analyst |
| `refactoring` | Analysis → Planning → Refactor → Validation | architect, coder, reviewer |
| `custom` | Define your own | configurable |
## MCP Tools
```javascript
// Run a workflow
mcp__monomind__workflow_run({
template: "development",
task: "Build REST API with auth",
options: {
parallel: true,
maxAgents: 6,
timeout: 30,
dryRun: false
}
})
// Check workflow status after launch
mcp__monomind__workflow_status({ workflowId: "wf-123" })
// List all workflows
mcp__monomind__workflow_list({ status: "running", limit: 10 })
// Stop a running workflow
mcp__monomind__workflow_cancel({ workflowId: "wf-123" })
```
## After Launch
Track progress:
```bash
# Check status by ID (shown after run)
npx monomind workflow status <workflowId>
# List all running workflows
npx monomind workflow list --status running
```
## Related Skills
- `workflows:workflow-create` — Save a custom workflow template
- `workflows:development` — Development workflow coordination pattern
- `workflows:research` — Research workflow coordination pattern
- `swarm:swarm` — Direct swarm init for custom coordination
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!