Development workflow coordination pattern — hierarchical swarm for structured implementation tasks using real MCP tools and npx monomind workflow run -t development
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill source-command-workflows-development --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Source Command Workflows Development?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-source-command-workflows-development)More formats (shields.io, HTML) on the badges page.
---
name: "source-command-workflows-development"
description: "Development workflow coordination pattern — hierarchical swarm for structured implementation tasks using real MCP tools and npx monomind workflow run -t development"
---
# source-command-workflows-development
Use this skill when the user asks to run the migrated source command `workflows-development`.
## Command Template
# Development Workflow Coordination
Structure multi-agent development tasks using the built-in development template for maximum efficiency.
## How to Invoke
```
Skill("workflows:development")
```
---
## Quick Start
```bash
# Run the built-in development workflow
npx monomind workflow run -t development --task "Build REST API with auth"
# Preview stages without executing
npx monomind workflow run -t development --dry-run
# Show template details (stages, agents, duration)
npx monomind workflow template show development
```
## Stages
The `development` template runs these stages:
1. **Planning** — Requirements, architecture decisions
2. **Implementation** — Code writing
3. **Testing** — Unit and integration tests
4. **Review** — Code quality and security check
5. **Integration** — Connect all pieces
Agents: `coder`, `tester`, `reviewer` (in parallel where possible)
## MCP Coordination
For custom development coordination via MCP:
```javascript
// Initialize hierarchical swarm for development
mcp__monomind__swarm_init({
topology: "hierarchical",
maxAgents: 8,
strategy: "specialized"
})
// Run the development workflow
mcp__monomind__workflow_run({
template: "development",
task: "Build REST API with authentication",
options: { parallel: true, maxAgents: 6 }
})
// Check progress
mcp__monomind__workflow_status({ workflowId: "wf-123" })
// Store findings for future sessions
mcp__monomind__memory_pattern-store({
key: "dev-pattern-rest-api",
value: "JWT auth + Express + Zod validation worked well",
namespace: "patterns"
})
```
## What Codex Actually Does
Codex handles all execution via native tools:
1. **Read/Write/Edit** tools — create and modify files
2. **Bash** tool — run tests, builds, type checks
3. **TodoWrite** tool — track implementation steps
4. **Task** tool — spawn parallel agent workers
The workflow template defines the coordination strategy; Codex does the actual work.
## Related Skills
- `workflows:workflow-execute` — Full workflow run reference
- `swarm:development` — Direct swarm-based development coordination
- `swarm:swarm-strategies` — Strategy selection guide
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!