mcpbridge-workflow

Track and coordinate development tasks from SPECS/Workplan.md with YAML frontmatter.

20|2|Updated Feb 8, 2026
One-click install
npx skills add https://github.com/SoundBlaster/XcodeMCPWrapper --skill mcpbridge-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mcpbridge-workflow
Source: https://github.com/SoundBlaster/XcodeMCPWrapper/tree/main/.agents/skills/mcpbridge-workflow
Command: npx skills add https://github.com/SoundBlaster/XcodeMCPWrapper --skill mcpbridge-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Task tracking and workflow management for the mcpbridge-wrapper project development.

Core Features & Use Cases

  • Get the next task to work on
  • Mark tasks as completed
  • View project progress
  • List available tasks The workplan is stored in SPECS/Workplan.md with 65 tasks across 7 phases. For task format details, see references/task-format.md.

Quick Start

Run python3 scripts/pick_next_task.py to retrieve the next task from SPECS/Workplan.md.

Frequently Asked Questions about mcpbridge-workflow

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

FAQPage Schema
How do I track development tasks for a project using a markdown workplan?

To track development tasks using a markdown workplan, parse your SPECS/Workplan.md file to identify tasks across project phases, and store completion state locally in a .task_state.json file to monitor progress.

How do I get the next task to work on from a project workplan?

To get the next task from your project workplan, run the pick_next_task.py script, which reads SPECS/Workplan.md and identifies the next actionable task based on your current completion state stored in .task_state.json.

What is the best way to automate task progress tracking for Python projects?

Automate task progress tracking for Python projects by executing scripts that parse a YAML frontmatter workplan, update task completion status in a JSON state file, and report current progress across all development phases.

Can I list all available tasks across different project phases?

Yes, you can list all available tasks across different project phases by parsing the SPECS/Workplan.md file, which structures 65 tasks across 7 phases, allowing you to view the entire project scope at once.

Does task tracking work without external dependencies or databases?

Yes, task tracking works without external dependencies or databases by relying entirely on local files, using the SPECS/Workplan.md file for task definitions and a .task_state.json file to store completion state.