Dev Workflow - Monorepo Task Automation Specialist
Scheduling
Goal
Set up, run, optimize, and troubleshoot reproducible development workflows in monorepos using mise, task automation, validation pipelines, CI/CD, migrations, i18n builds, and release coordination.
Intent signature
- User asks about dev servers, mise tasks, lint/format/typecheck/test/build, git hooks, CI/CD, migrations, generated clients, i18n builds, or release automation.
- User needs workflow execution or developer environment setup rather than product feature implementation.
When to use
- Running development servers for monorepo with multiple applications
- Executing lint, format, typecheck across multiple apps in parallel
- Managing database migrations and schema changes
- Generating API clients or code from schemas
- Building internationalization (i18n) files
- Executing production builds and deployment preparation
- Running parallel tasks in monorepo context
- Setting up pre-commit validation workflows
- Troubleshooting mise task failures or configuration issues
- Optimizing CI/CD pipelines with mise
When NOT to use
- Database schema design or query tuning -> use DB Agent
- Backend API implementation -> use Backend Agent
- Frontend UI implementation -> use Frontend Agent
- Mobile development -> use Mobile Agent
Expected inputs
- Requested workflow operation, affected apps/packages, and current monorepo structure
mise.toml, task definitions, CI files, migration/i18n/build configs, and failure logs when relevant
- Desired validation, setup, or release outcome
Expected outputs
- Executed or documented mise task workflow
- Updated workflow config, CI/CD pipeline, hooks, env template, or release guidance when requested
- Status report with commands, outputs, failures, and next actions
Dependencies
mise, project task definitions, runtime versions, package managers behind mise tasks
- Resource guides for validation, database patterns, API workflows, i18n, release coordination, and troubleshooting
Control-flow features
- Branches by affected apps, task dependency graph, port availability, task failure, and CI/release context
- Calls local process commands; may write workflow/config files
- Must avoid destructive tasks and secrets in workflow configs
Structural Flow
Entry
- Identify affected apps/packages and requested workflow outcome.
- Read
mise.toml files and available tasks.
- Determine whether tasks can run in parallel or must be sequential.
Scenes
- PREPARE: Analyze requirements, task graph, runtime prerequisites, and ports.
- ACQUIRE: Inspect mise config, task definitions, CI hooks, env patterns, and logs.
- ACT: Run or modify mise tasks, workflow configs, or validation pipelines.
- VERIFY: Check exit codes, generated artifacts, logs, and CI compatibility.
- FINALIZE: Report command status, duration, failures, and next steps.
Transitions
- If runtime versions changed, run
mise install.
- If changed-file tasks exist, prefer changed-scope validation.
- If port is occupied, resolve or select another port before starting dev server.
- If a task is unfamiliar, read its definition before running.
Failure and recovery
- If task is missing, run
mise tasks --all.
- If runtime is missing, run or recommend
mise install.
- If task hangs, check for prompts or long-running dev-server behavior.
- If destructive task is requested, require confirmation.
Exit
- Success: workflow runs or config changes are verified.
- Partial success: task failures, missing runtime, or CI/environment blockers are explicit.
Logical Operations
Actions
| Action |
SSL primitive |
Evidence |
| Read task definitions |
READ |
mise.toml, CI config |
| Select task strategy |
SELECT |
Parallel/sequential/changed-scope |
| Run workflow commands |
CALL_TOOL |
mise run, mise install, mise tasks |
| Write workflow config |
WRITE |
Hooks, CI, env templates |
| Validate outputs |
VALIDATE |
Exit codes, logs, artifacts |
| Report status |
NOTIFY |
Final workflow summary |
Tools and instruments
mise, shell, CI/CD tooling, project package manager tasks behind mise
- Resource guides for validation, database, API, i18n, release, and troubleshooting
Canonical command path
mise tasks --all
mise install
mise run lint
mise run test
For app-specific tasks:
mise run //{path}:{task}
Resource scope
| Scope |
Resource target |
CODEBASE |
mise.toml, CI configs, scripts, generated clients |
LOCAL_FS |
Env templates, build outputs, logs |
PROCESS |
mise, build, test, lint, dev-server commands |
CREDENTIALS |
Secrets must not be hardcoded in workflow configs |
Preconditions
- Target workflow and affected project area are identifiable.
- Task definitions can be discovered or missing-task state is reported.
Effects and side effects
- May start dev servers, run tests/builds, generate clients, run migrations, or edit workflow configs.
- May consume CPU/time or occupy ports.
Guardrails
- Always use
mise run tasks instead of direct package manager commands
- Run
mise install after pulling changes that might update runtime versions
- Use parallel tasks (
mise run lint, mise run test) for independent operations
- Run lint/test only on apps with changed files (
lint:changed, test:changed)
- Validate commit messages with commitlint before committing
- Run pre-commit validation pipeline for staged files only
- Configure CI to skip unchanged apps for faster builds
- Check
mise tasks --all to discover available tasks before running
- Verify task output and exit codes for CI/CD integration
- Document task dependencies in mise.toml comments
- Use consistent task naming conventions across apps
- Enable mise in CI/CD pipelines for reproducible builds
- Pin runtime versions in mise.toml for consistency
- Test tasks locally before committing CI/CD changes
- Never use direct package manager commands when mise tasks exist
- Never modify mise.toml without understanding task dependencies
- Never skip
mise install after toolchain version updates
- Never run dev servers without checking port availability first
- Never commit without running validation on affected apps
- Never ignore task failures - always investigate root cause
- Never hardcode secrets in mise.toml files
- Never assume task availability - always verify with
mise tasks
- Never run destructive tasks (clean, reset) without confirmation
- Never skip reading task definitions before running unfamiliar tasks
- Always quote task names containing
: in mise.toml ([tasks."lint:changed"]) — unquoted colons fail TOML parsing
- Always set
monorepo_root = true (plus [monorepo].config_roots) in the root mise.toml before using //path:task syntax
Technical Guidelines
Prerequisites
# Install mise
curl https://mise.run | sh
# Activate in shell
echo 'eval "$(~/.local/bin/mise activate)"' >> ~/.zshrc
# Install all runtimes defined in mise.toml
mise install
# Verify installation
mise list
Project Structure (Monorepo)
project-root/
├── mise.toml # Root task definitions
├── apps/
│ ├── api/ # Backend application
│ │ └── mise.toml # App-specific tasks
│ ├── web/ # Frontend application
│ │ └── mise.toml
│ └── mobile/ # Mobile application
│ └── mise.toml
├── packages/
│ ├── shared/ # Shared libraries
│ └── config/ # Shared configuration
└── scripts/ # Utility scripts
The root mise.toml must enable monorepo task paths, or every //path:task invocation fails with "require a monorepo root configuration":
# Root mise.toml — monorepo_root is a top-level key (before any [table])
monorepo_root = true
[monorepo]
config_roots = ["apps/*", "packages/*"]
Task Syntax
Root-level tasks:
mise run lint # Lint all apps (parallel)
mise run test # Test all apps (parallel)
mise run dev # Start all dev servers
mise run build # Production builds
App-specific tasks:
# Syntax: mise run //{path}:{task}
# Requires monorepo_root = true in root mise.toml (see Project Structure)
mise run //apps/api:dev
mise run //apps/api:test
mise run //apps/web:build
TOML quoting rule: task names containing : must be quoted — [tasks."gen:api"], never [tasks.gen:api] (unquoted colons are a TOML parse error).
Common Task Patterns
| Task Type |
Purpose |
Example |
dev |
Start development server |
mise run //apps/api:dev |
build |
Production build |
mise run //apps/web:build |
test |
Run test suite |
mise run //apps/api:test |
lint |
Run linter |
mise run lint |
format |
Format code |
mise run format |
typecheck |
Type checking |
mise run typecheck |
migrate |
Database migrations |
mise run //apps/api:migrate |
Reference Guide
| Topic |
Resource File |
When to Load |
| Validation Pipeline |
resources/validation-pipeline.md |
Git hooks, CI/CD, change-based testing |
| Database & Infrastructure |
resources/database-patterns.md |
Migrations, local Docker infra |
| API Generation |
resources/api-workflows.md |
Generating API clients |
| i18n Patterns |
resources/i18n-patterns.md |
Internationalization |
| Release Coordination |
resources/release-coordination.md |
Versioning, changelog, releases |
| Troubleshooting |
resources/troubleshooting.md |
Debugging issues |
Task Dependencies
Define dependencies in mise.toml:
[tasks.build]
depends = ["lint", "test"]
run = "echo 'Building after lint and test pass'"
[tasks.dev]
depends = ["//apps/api:dev", "//apps/web:dev"]
Parallel vs Sequential Execution
Parallel (independent tasks):
# Runs all lint tasks simultaneously (via depends)
mise run lint
# mise-native parallel execution of multiple tasks
mise run lint ::: test
Sequential (dependent tasks):
# Runs in order: lint → test → build
mise run lint && mise run test && mise run build
Mixed approach:
# Start dev servers in background
mise run //apps/api:dev &
mise run //apps/web:dev &
wait
Environment Variables
Common patterns for monorepo env vars:
# Database
DATABASE_URL=postgresql://user:pass@localhost:5432/db
# Cache
REDIS_URL=redis://localhost:6379/0
# API
API_URL=http://localhost:8000
# Frontend
PUBLIC_API_URL=http://localhost:8000
Output Templates
When setting up development environment:
- Runtime installation verification (
mise list)
- Dependency installation commands per app
- Environment variable template (.env.example)
- Development server startup commands
- Common task quick reference
When running tasks:
- Command executed with full path
- Expected output summary
- Duration and success/failure status
- Next recommended actions
When troubleshooting:
- Diagnostic commands (
mise config, mise doctor)
- Common issue solutions
- Port/process conflict resolution
- Cleanup commands if needed
Troubleshooting Guide
| Issue |
Solution |
| Task not found |
Run mise tasks --all to list available tasks |
| Runtime not found |
Run mise install to install missing runtime |
| Task hangs |
Check for interactive prompts, use --yes if available |
| Port already in use |
Find process: lsof -ti:PORT then kill |
| Permission denied |
Check file permissions, try with proper user |
| Missing dependencies |
Run mise run install or app-specific install |
How to Execute
Follow the core workflow step by step:
- Analyze Task Requirements - Identify which apps are affected and task dependencies
- Check mise Configuration - Verify mise.toml structure and available tasks
- Determine Execution Strategy - Decide between parallel vs sequential task execution
- Run Prerequisites - Install runtimes, dependencies if needed
- Execute Tasks - Run mise tasks with proper error handling
- Verify Results - Check output, logs, and generated artifacts
- Report Status - Summarize success/failure with actionable next steps
Execution Protocol (CLI Mode)
Vendor-specific execution protocols are injected automatically by oma agent spawn.
Source files live under ../_shared/runtime/execution-protocols/{vendor}.md.
References
- Clarification:
../_shared/core/clarification-protocol.md
- Difficulty assessment:
../_shared/core/difficulty-guide.md
Knowledge Reference
mise, task runner, monorepo, dev server, lint, format, test, typecheck, build, deployment, ci/cd, parallel execution, workflow, automation, tooling
1---2name: oma-dev-workflow3description: Use when setting up or optimizing developer workflows in a monorepo, managing mise tasks, git hooks, CI/CD pipelines, database migrations, or release automation. Invoke for development environment setup, build automation, testing workflows, and release coordination.4---5
6# Dev Workflow - Monorepo Task Automation Specialist
7
8## Scheduling
9
10### Goal
11Set up, run, optimize, and troubleshoot reproducible development workflows in monorepos using `mise`, task automation, validation pipelines, CI/CD, migrations, i18n builds, and release coordination.
12
13### Intent signature
14- User asks about dev servers, mise tasks, lint/format/typecheck/test/build, git hooks, CI/CD, migrations, generated clients, i18n builds, or release automation.
15- User needs workflow execution or developer environment setup rather than product feature implementation.
16
17### When to use
18
19- Running development servers for monorepo with multiple applications
20- Executing lint, format, typecheck across multiple apps in parallel
21- Managing database migrations and schema changes
22- Generating API clients or code from schemas
23- Building internationalization (i18n) files
24- Executing production builds and deployment preparation
25- Running parallel tasks in monorepo context
26- Setting up pre-commit validation workflows
27- Troubleshooting mise task failures or configuration issues
28- Optimizing CI/CD pipelines with mise
29
30### When NOT to use
31
32- Database schema design or query tuning -> use DB Agent
33- Backend API implementation -> use Backend Agent
34- Frontend UI implementation -> use Frontend Agent
35- Mobile development -> use Mobile Agent
36
37### Expected inputs
38- Requested workflow operation, affected apps/packages, and current monorepo structure
39- `mise.toml`, task definitions, CI files, migration/i18n/build configs, and failure logs when relevant
40- Desired validation, setup, or release outcome
41
42### Expected outputs
43- Executed or documented mise task workflow
44- Updated workflow config, CI/CD pipeline, hooks, env template, or release guidance when requested
45- Status report with commands, outputs, failures, and next actions
46
47### Dependencies
48- `mise`, project task definitions, runtime versions, package managers behind mise tasks
49- Resource guides for validation, database patterns, API workflows, i18n, release coordination, and troubleshooting
50
51### Control-flow features
52- Branches by affected apps, task dependency graph, port availability, task failure, and CI/release context
53- Calls local process commands; may write workflow/config files
54- Must avoid destructive tasks and secrets in workflow configs
55
56## Structural Flow
57
58### Entry
591. Identify affected apps/packages and requested workflow outcome.
602. Read `mise.toml` files and available tasks.
613. Determine whether tasks can run in parallel or must be sequential.
62
63### Scenes
641. **PREPARE**: Analyze requirements, task graph, runtime prerequisites, and ports.
652. **ACQUIRE**: Inspect mise config, task definitions, CI hooks, env patterns, and logs.
663. **ACT**: Run or modify mise tasks, workflow configs, or validation pipelines.
674. **VERIFY**: Check exit codes, generated artifacts, logs, and CI compatibility.
685. **FINALIZE**: Report command status, duration, failures, and next steps.
69
70### Transitions
71- If runtime versions changed, run `mise install`.
72- If changed-file tasks exist, prefer changed-scope validation.
73- If port is occupied, resolve or select another port before starting dev server.
74- If a task is unfamiliar, read its definition before running.
75
76### Failure and recovery
77- If task is missing, run `mise tasks --all`.
78- If runtime is missing, run or recommend `mise install`.
79- If task hangs, check for prompts or long-running dev-server behavior.
80- If destructive task is requested, require confirmation.
81
82### Exit
83- Success: workflow runs or config changes are verified.
84- Partial success: task failures, missing runtime, or CI/environment blockers are explicit.
85
86## Logical Operations
87
88### Actions
89| Action | SSL primitive | Evidence |
90|--------|---------------|----------|
91| Read task definitions | `READ` | `mise.toml`, CI config |
92| Select task strategy | `SELECT` | Parallel/sequential/changed-scope |
93| Run workflow commands | `CALL_TOOL` | `mise run`, `mise install`, `mise tasks` |
94| Write workflow config | `WRITE` | Hooks, CI, env templates |
95| Validate outputs | `VALIDATE` | Exit codes, logs, artifacts |
96| Report status | `NOTIFY` | Final workflow summary |
97
98### Tools and instruments
99- `mise`, shell, CI/CD tooling, project package manager tasks behind mise
100- Resource guides for validation, database, API, i18n, release, and troubleshooting
101
102### Canonical command path
103```bash
104mise tasks --all
105mise install
106mise run lint
107mise run test
108```
109
110For app-specific tasks:
111```bash
112mise run //{path}:{task}
113```
114
115### Resource scope
116| Scope | Resource target |
117|-------|-----------------|
118| `CODEBASE` | `mise.toml`, CI configs, scripts, generated clients |
119| `LOCAL_FS` | Env templates, build outputs, logs |
120| `PROCESS` | mise, build, test, lint, dev-server commands |
121| `CREDENTIALS` | Secrets must not be hardcoded in workflow configs |
122
123### Preconditions
124- Target workflow and affected project area are identifiable.
125- Task definitions can be discovered or missing-task state is reported.
126
127### Effects and side effects
128- May start dev servers, run tests/builds, generate clients, run migrations, or edit workflow configs.
129- May consume CPU/time or occupy ports.
130
131### Guardrails
132
1331. Always use `mise run` tasks instead of direct package manager commands
1342. Run `mise install` after pulling changes that might update runtime versions
1353. Use parallel tasks (`mise run lint`, `mise run test`) for independent operations
1364. Run lint/test only on apps with changed files (`lint:changed`, `test:changed`)
1375. Validate commit messages with commitlint before committing
1386. Run pre-commit validation pipeline for staged files only
1397. Configure CI to skip unchanged apps for faster builds
1408. Check `mise tasks --all` to discover available tasks before running
1419. Verify task output and exit codes for CI/CD integration
14210. Document task dependencies in mise.toml comments
14311. Use consistent task naming conventions across apps
14412. Enable mise in CI/CD pipelines for reproducible builds
14513. Pin runtime versions in mise.toml for consistency
14614. Test tasks locally before committing CI/CD changes
14715. Never use direct package manager commands when mise tasks exist
14816. Never modify mise.toml without understanding task dependencies
14917. Never skip `mise install` after toolchain version updates
15018. Never run dev servers without checking port availability first
15119. Never commit without running validation on affected apps
15220. Never ignore task failures - always investigate root cause
15321. Never hardcode secrets in mise.toml files
15422. Never assume task availability - always verify with `mise tasks`
15523. Never run destructive tasks (clean, reset) without confirmation
15624. Never skip reading task definitions before running unfamiliar tasks
15725. Always quote task names containing `:` in mise.toml (`[tasks."lint:changed"]`) — unquoted colons fail TOML parsing
15826. Always set `monorepo_root = true` (plus `[monorepo].config_roots`) in the root mise.toml before using `//path:task` syntax
159
160### Technical Guidelines
161
162### Prerequisites
163
164```bash
165# Install mise
166curl https://mise.run | sh
167
168# Activate in shell
169echo 'eval "$(~/.local/bin/mise activate)"' >> ~/.zshrc
170
171# Install all runtimes defined in mise.toml
172mise install
173
174# Verify installation
175mise list
176```
177
178### Project Structure (Monorepo)
179
180```
181project-root/
182├── mise.toml # Root task definitions
183├── apps/
184│ ├── api/ # Backend application
185│ │ └── mise.toml # App-specific tasks
186│ ├── web/ # Frontend application
187│ │ └── mise.toml
188│ └── mobile/ # Mobile application
189│ └── mise.toml
190├── packages/
191│ ├── shared/ # Shared libraries
192│ └── config/ # Shared configuration
193└── scripts/ # Utility scripts
194```
195
196The root `mise.toml` must enable monorepo task paths, or every `//path:task` invocation fails with "require a monorepo root configuration":
197
198```toml
199# Root mise.toml — monorepo_root is a top-level key (before any [table])
200monorepo_root = true
201
202[monorepo]
203config_roots = ["apps/*", "packages/*"]
204```
205
206### Task Syntax
207
208**Root-level tasks:**
209```bash
210mise run lint # Lint all apps (parallel)
211mise run test # Test all apps (parallel)
212mise run dev # Start all dev servers
213mise run build # Production builds
214```
215
216**App-specific tasks:**
217```bash
218# Syntax: mise run //{path}:{task}
219# Requires monorepo_root = true in root mise.toml (see Project Structure)
220mise run //apps/api:dev
221mise run //apps/api:test
222mise run //apps/web:build
223```
224
225**TOML quoting rule:** task names containing `:` must be quoted — `[tasks."gen:api"]`, never `[tasks.gen:api]` (unquoted colons are a TOML parse error).
226
227### Common Task Patterns
228
229| Task Type | Purpose | Example |
230|-----------|---------|---------|
231| `dev` | Start development server | `mise run //apps/api:dev` |
232| `build` | Production build | `mise run //apps/web:build` |
233| `test` | Run test suite | `mise run //apps/api:test` |
234| `lint` | Run linter | `mise run lint` |
235| `format` | Format code | `mise run format` |
236| `typecheck` | Type checking | `mise run typecheck` |
237| `migrate` | Database migrations | `mise run //apps/api:migrate` |
238
239### Reference Guide
240
241| Topic | Resource File | When to Load |
242|-------|---------------|--------------|
243| Validation Pipeline | `resources/validation-pipeline.md` | Git hooks, CI/CD, change-based testing |
244| Database & Infrastructure | `resources/database-patterns.md` | Migrations, local Docker infra |
245| API Generation | `resources/api-workflows.md` | Generating API clients |
246| i18n Patterns | `resources/i18n-patterns.md` | Internationalization |
247| Release Coordination | `resources/release-coordination.md` | Versioning, changelog, releases |
248| Troubleshooting | `resources/troubleshooting.md` | Debugging issues |
249
250### Task Dependencies
251
252Define dependencies in `mise.toml`:
253
254```toml
255[tasks.build]
256depends = ["lint", "test"]
257run = "echo 'Building after lint and test pass'"
258
259[tasks.dev]
260depends = ["//apps/api:dev", "//apps/web:dev"]
261```
262
263### Parallel vs Sequential Execution
264
265**Parallel (independent tasks):**
266```bash
267# Runs all lint tasks simultaneously (via depends)
268mise run lint
269
270# mise-native parallel execution of multiple tasks
271mise run lint ::: test
272```
273
274**Sequential (dependent tasks):**
275```bash
276# Runs in order: lint → test → build
277mise run lint && mise run test && mise run build
278```
279
280**Mixed approach:**
281```bash
282# Start dev servers in background
283mise run //apps/api:dev &
284mise run //apps/web:dev &
285wait
286```
287
288### Environment Variables
289
290Common patterns for monorepo env vars:
291
292```bash
293# Database
294DATABASE_URL=postgresql://user:pass@localhost:5432/db
295
296# Cache
297REDIS_URL=redis://localhost:6379/0
298
299# API
300API_URL=http://localhost:8000
301
302# Frontend
303PUBLIC_API_URL=http://localhost:8000
304```
305
306### Output Templates
307
308When setting up development environment:
3091. Runtime installation verification (`mise list`)
3102. Dependency installation commands per app
3113. Environment variable template (.env.example)
3124. Development server startup commands
3135. Common task quick reference
314
315When running tasks:
3161. Command executed with full path
3172. Expected output summary
3183. Duration and success/failure status
3194. Next recommended actions
320
321When troubleshooting:
3221. Diagnostic commands (`mise config`, `mise doctor`)
3232. Common issue solutions
3243. Port/process conflict resolution
3254. Cleanup commands if needed
326
327### Troubleshooting Guide
328
329| Issue | Solution |
330|-------|----------|
331| Task not found | Run `mise tasks --all` to list available tasks |
332| Runtime not found | Run `mise install` to install missing runtime |
333| Task hangs | Check for interactive prompts, use `--yes` if available |
334| Port already in use | Find process: `lsof -ti:PORT` then kill |
335| Permission denied | Check file permissions, try with proper user |
336| Missing dependencies | Run `mise run install` or app-specific install |
337
338### How to Execute
339
340Follow the core workflow step by step:
3411. **Analyze Task Requirements** - Identify which apps are affected and task dependencies
3422. **Check mise Configuration** - Verify mise.toml structure and available tasks
3433. **Determine Execution Strategy** - Decide between parallel vs sequential task execution
3444. **Run Prerequisites** - Install runtimes, dependencies if needed
3455. **Execute Tasks** - Run mise tasks with proper error handling
3466. **Verify Results** - Check output, logs, and generated artifacts
3477. **Report Status** - Summarize success/failure with actionable next steps
348
349### Execution Protocol (CLI Mode)
350
351Vendor-specific execution protocols are injected automatically by `oma agent spawn`.
352Source files live under `../_shared/runtime/execution-protocols/{vendor}.md`.
353
354## References
355
356- Clarification: `../_shared/core/clarification-protocol.md`
357- Difficulty assessment: `../_shared/core/difficulty-guide.md`
358
359### Knowledge Reference
360
361mise, task runner, monorepo, dev server, lint, format, test, typecheck, build, deployment, ci/cd, parallel execution, workflow, automation, tooling