mp-execute

Implement GitHub issues with TDD and CI-parity verification.

1|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/MartinoPolo/mpx-claude-code --skill mp-execute
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mp-execute
Source: https://github.com/MartinoPolo/mpx-claude-code/tree/main/skills/mp-execute
Command: npx skills add https://github.com/MartinoPolo/mpx-claude-code --skill mp-execute

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes the friction of turning GitHub issues or milestones into correct, test-covered code changes that are verified locally and completed only when CI is green.

Core Features & Use Cases

  • GitHub-issue execution: Takes a single issue (or exactly one open unblocked milestone issue) and drives the full implementation loop.
  • TDD red-green-refactor: Plans required behaviors from acceptance criteria and executes them with test-first discipline.
  • CI-parity verification: Detects the repo’s static checks and test commands, runs them locally, then waits for CI to finish before declaring completion.
  • Review + triage automation: Runs static checks and (optionally) multiple reviewer sub-agents; files unresolved items to tracking issues when needed.
  • PR lifecycle management: Commits, pushes, creates/updates PRs, checks mergeability, resolves conflicts, and merges/syncs when CI passes.

Quick Start

Run mp-execute on a specific GitHub issue number to implement and verify the change end-to-end with TDD, local checks, and CI gating.

Frequently Asked Questions about mp-execute

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

FAQPage Schema
How do I implement GitHub issues using TDD and CI verification?

Executing issue-driven development with TDD involves taking a single GitHub issue, planning tests from acceptance criteria, running a red-green-refactor loop, and enforcing local static checks before creating a PR.

Can I automate PR creation and mergeability checks from GitHub milestones?

Yes, you can automate PR creation and mergeability checks from GitHub milestones by selecting exactly one unblocked issue, pushing commits, and verifying CI checks pass before merging.

What is the best way to enforce CI parity and static checks locally before pushing code?

The best way to enforce CI parity and static checks locally is to detect the project's test scripts, run them during the TDD loop, and ensure all unit and e2e gates pass before declaring completion.

Why does my issue-driven TDD workflow fail when GitHub checks are not green?

Your issue-driven TDD workflow fails when GitHub checks are not green because the process enforces mandatory CI gates, requiring local test parity and remote check resolution before considering a PR complete.

Do I need to manually resolve merge conflicts during automated PR lifecycle management?

No, you do not need to manually resolve merge conflicts during automated PR lifecycle management, as the workflow detects conflicts, syncs branches, and ensures mergeability automatically when CI passes.

How do code review sub-agents handle unresolved static check items?

Code review sub-agents handle unresolved static check items by running multiple reviewer passes, identifying remaining issues, and optionally filing unresolved items to tracking issues for later resolution.