maqa

vmaqa-v0.1.5

Coordinator → feature → QA agent workflow with parallel worktree-based implementation. Language-agnostic. Auto-detects installed board plugins (Trello, Linear, GitHub Projects, Jira, Azure DevOps). Optional CI gate.

Community extension — Independently maintained. Use at your own discretion. Learn more

MAQA — Multi-Agent & Quality Assurance

A spec-kit extension that adds a coordinator → feature → QA multi-agent workflow to any spec-kit project. Works with any language or framework.

How it works

/speckit.maqa.coordinator   →   SPAWN[N] feature agents in parallel worktrees
                            →   SPAWN_QA[N] QA agent per completed feature
                            →   coordinator merged #N   →   re-assess, next batch

Each feature runs in an isolated git worktree. The QA agent runs static analysis after each feature completes. You review and merge. The coordinator re-assesses and picks the next unblocked batch automatically.

State is tracked locally in .maqa/state.json. With an optional board companion (see below), state lives on your project management tool instead.

Requirements

  • spec-kit >=0.3.0
  • git with worktree support
  • python3 (for JSON parsing in coordinator scripts)

Installation

specify ext add maqa

Not in the catalog yet? Install directly:

specify ext add https://github.com/GenieRobot/spec-kit-maqa-ext/archive/refs/tags/maqa-v0.1.4.zip

Quick start

# 1. Install
specify ext add maqa

# 2. (Claude Code only) Deploy native subagents — run once per project
/speckit.maqa.setup

# 3. Configure your test runner (optional but recommended)
#    Edit maqa-config.yml in your project root

# 4. Run the coordinator
/speckit.maqa.coordinator

The coordinator reads your specs/ directory (spec-kit's standard structure), finds features that are ready to implement, creates worktrees, and returns a SPAWN plan. On Claude Code, feature and QA agents run in parallel as true subagents. On all other tools, the workflow runs in-context.

Board integrations (optional)

The coordinator auto-detects any installed board companion and enables integration. Install whichever matches your project management tool:

ToolExtensionInstall
Trellomaqa-trellospecify ext add maqa-trello
Linearmaqa-linearspecify ext add maqa-linear
GitHub Projectsmaqa-github-projectsspecify ext add maqa-github-projects
Jiramaqa-jiraspecify ext add maqa-jira
Azure DevOpsmaqa-azure-devopsspecify ext add maqa-azure-devops

After installing, run the companion's setup command once (e.g. /speckit.maqa-trello.setup), then use /speckit.maqa.coordinator as normal — board sync happens automatically.

CI gate (optional)

specify ext add maqa-ci
/speckit.maqa-ci.setup

With maqa-ci installed, the coordinator checks pipeline status on the feature branch before moving a card to In Review. Supports GitHub Actions, CircleCI, GitLab CI, and Bitbucket Pipelines.

Configuration

maqa-config.yml is created in your project root by /speckit.maqa.setup (or copied manually from .specify/extensions/maqa/config-template.yml).

FieldDefaultDescription
test_command""Full test suite — e.g. npm test, pytest, bundle exec rspec
test_file_command""Single file — e.g. pytest {file}, npm test -- {file}
tddfalseWrite tests first, then implement. Red is assumed (no pre-run).
auto_pushfalsePush feature branch after commit. Recommended: true — without it, work only exists in the local worktree and is lost if the worktree is deleted before merging.
qa_cadence"per_feature"per_feature: QA runs after each feature agent (catches regressions early). batch_end: QA runs once when the full batch is done (saves credits).
max_parallel3Max concurrent feature agents
worktree_base".."Where worktrees are created (relative to repo root)
board"auto"Board tool to use. auto detects any installed companion. Set explicitly to override, or local to skip board sync.
qa.texttrueSpelling, grammar, placeholder copy
qa.linkstrueLink / route verification
qa.securitytrueUnfiltered output, exposed params, missing auth
qa.accessibilityfalseWCAG 2.1 AA — enable for web projects
qa.responsivefalseMobile / responsive layout — enable for web projects
qa.empty_statesfalseEmpty / error states — enable for UI projects

Commands

CommandDescription
/speckit.maqa.coordinatorAssess board, create worktrees, return SPAWN plan
/speckit.maqa.featureImplement one feature in one worktree
/speckit.maqa.qaStatic analysis quality gate
/speckit.maqa.setupClaude Code: deploy native subagents to .claude/agents/

AI tool support

ToolMode
Claude CodeNative subagents after /speckit.maqa.setup — true parallel execution
Gemini CLI, Cursor, Copilot, and all othersSlash commands — same workflow, in-context

Claude Code is the recommended tool and the most tested. Other tools are supported but not yet extensively tested — feedback welcome.

How features are tracked

The coordinator reads specs/*/tasks.md (spec-kit's standard output from /speckit.tasks) and tracks feature state:

todo → in_progress → in_review → done

Without a board companion, state lives in .maqa/state.json. With a board companion installed, each state transition is mirrored to your project management tool automatically.

Dependencies are respected: a feature only starts when all its deps are done.

License

MIT — free for all.

Stats

0 stars

Version

maqa-v0.1.5release
Updated 6 days ago

Install

Using the Specify CLI

specify extension add --from https://github.com/GenieRobot/spec-kit-maqa-ext/releases/download/maqa-v0.1.3/maqa.zip

License

MIT