myna-dev-execute-tasks

Execute pending dev tasks sequentially on a single fix branch.

8|1|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/agentflock/myna --skill myna-dev-execute-tasks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: myna-dev-execute-tasks
Source: https://github.com/agentflock/myna/tree/main/.claude/skills/myna-dev-execute-tasks
Command: npx skills add https://github.com/agentflock/myna --skill myna-dev-execute-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers waste time juggling tasks across branches and PRs; this skill orchestrates a deterministic, single-branch dev task queue that executes all pending tasks in order and reports results, reducing handoffs and context switching.

Core Features & Use Cases

  • Sequential task execution: reads tmp/tasks.md and processes tasks in FIFO order on a single fix branch.
  • Per-task review and commit protocol: records the base commit for each task, delegates work to per-task subagents, and creates a single PR.
  • Run logs and changelog updates: maintains a per-run log (tmp/[date]/run.md) and updates CHANGELOG when requested.
  • Mid-run task discovery: re-scans the queue before each task to include tasks added during the run.

Quick Start

Run the dev task queue to execute all pending tasks on a single fix branch.

Frequently Asked Questions about myna-dev-execute-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate a dev task queue to run all pending tasks on a single branch?

To automate a dev task queue, you define pending work in a tmp/tasks.md file, and the skill orchestrates execution in FIFO order on a single fix branch, delegating each task to a subagent and creating a single pull request.

How does a single-branch pull request workflow handle multiple sequential tasks?

A single-branch pull request workflow handles multiple sequential tasks by recording the base commit for each task, delegating work to per-task subagents, and bundling all commits into one PR to reduce context switching and handoffs.

Can I add new tasks to the queue while a task orchestration run is already in progress?

Yes, you can add new tasks during an active task orchestration run. The queue re-scans for mid-run task discovery before processing each item, ensuring newly added tasks are included in the current execution cycle.

What is the best way to maintain run logs and update a changelog during task automation?

The best way to maintain run logs and update a changelog during task automation is to use an orchestration skill that automatically writes per-run logs to a tmp/[date]/run.md file and applies configured changelog updates as tasks complete.

Does per-task review and commit protocol work for both feature work and bug fixes?

Yes, per-task review and commit protocols work for both feature work and bug fixes. The deterministic task queue delegates each item to a subagent, reviews the specific commit, and reports results before proceeding.

What input format is required to orchestrate a deterministic dev task queue?

Orchestrating a deterministic dev task queue requires a tmp/tasks.md input file containing the pending tasks. The skill then reads this file to process all tasks sequentially on a fix/[date] branch.