The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Quarterback listing page.
Read the field. Call the play.
Strategic task prioritization and agent orchestration for multi-project operators.
Every other AI task manager breaks down one project into subtasks. Quarterback helps you decide which of your ten projects to prioritize right now — using a 5-factor weighted scoring engine, organizational context, and time-aware planning. It runs locally, costs nothing, and works as both a standalone CLI and an MCP server for Claude.
| Feature | Quarterback | TaskMaster AI | Shrimp Task Manager |
|---|---|---|---|
| Multi-project prioritization | 5-factor weighted engine | Single-project breakdown | Single-project |
| Advisory document system | Analyze articles against your goals | No | No |
| Agent orchestration | Autonomy levels + webhooks | No | No |
| Time-aware planning | Working hours, lunch, buffer time | No | No |
| Organizational context | Goals, constraints, workflows | No | No |
| Knowledge wiki (Playbook) | LLM-maintained wiki for cross-session consistency | No | No |
| Conflict detection | Cross-project scheduling conflicts | No | No |
| Standalone CLI | Full CLI without AI runtime | Requires AI | Requires AI |
| Cost | Free (MIT) | Free | Free |
When using Quarterback as an MCP server, ask your LLM: "Set up Quarterback for me" — it will call the setup_quarterback tool, interview you conversationally about your business, goals, workflows, projects, constraints, and knowledge base (Playbook), then write all config files and database records in one shot. No manual YAML editing required.
Quarterback works with any MCP-compatible client — Claude Desktop, Claude Code, Cursor, Windsurf, Cline, OpenAI agents, and others. All 23 tools use standard MCP protocol (JSON-RPC over stdio) with no LLM-specific dependencies.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
Or for Claude Code (~/.claude/settings.json):
The same quarterback-server command works with any MCP client — just add it to your client's server configuration.
Then ask your LLM: "What should I work on today?" — it will use all 23 Quarterback tools to analyze your priorities.
Every task is scored across five dimensions:
| Factor | Weight | What it measures |
|---|---|---|
| Impact | 30% | Task impact + project revenue/strategic value |
| Urgency | 25% | Due date proximity + blocking status |
| Strategic | 25% | Project priority + milestone status |
| Effort | 15% | Inverted effort score (quick tasks score higher) |
| Quick Win | 5% | High impact + low effort bonus |
Analyze external articles, books, and advice against your organizational context:
The analyzer checks every recommendation against your goals and constraints, flagging conflicts and synergies.
Mark tasks for autonomous agent execution with configurable autonomy:
Webhooks notify your automation layer (n8n, Zapier, custom) when tasks are ready.
Playbook is Quarterback's compiled knowledge layer. It's an LLM-maintained markdown wiki that gives every session — local CLI, MCP, or autonomous agent — the same canonical context about your projects, decisions, and strategies.
The problem it solves: Without Playbook, each AI session starts fresh and re-derives your organizational context from sparse signals. Two sessions running the same query can produce different results because they reconstruct understanding independently. Playbook provides accumulated knowledge that all sessions read from.
How it works:
Setup: Playbook is created automatically during quarterback setup (or the MCP setup wizard). The interview asks about your key entities, concepts, and decisions, then seeds initial wiki pages.
Without Playbook: Quarterback works exactly as before — reading goals and constraints from ~/.quarterback/org-context/ files. Playbook is opt-in.
With Playbook: Quarterback reads compiled/goals.md and compiled/constraints.md from Playbook first, falling back to org-context/ files if Playbook isn't initialized. Your LLM reads wiki/index.md for full organizational context.
Obsidian integration (optional): During setup, you can opt to configure Playbook as an Obsidian vault. Open the Playbook folder in Obsidian for graph visualization and visual editing. Install an Obsidian MCP server for programmatic access. No Obsidian dependency required — Playbook works as plain markdown files.
Quarterback's CLI and webhook system make it a natural fit for automated pipelines — update task status, log deliverables, and trigger downstream work without a human in the loop.
Add Quarterback commands to any CI/CD step. The CLI is stateless and scriptable:
Register a webhook and let your automation layer react to task events in real time:
Use cases:
| Pipeline event | Quarterback action | What happens |
|---|---|---|
| PR merged | update_task status=completed | Task marked done, webhook fires to Slack |
| Deploy succeeds | update_task with SHA + environment notes | Deliverable tracked with audit trail |
| Nightly cron | get_priorities + alert-check | Team gets daily summary of what's overdue |
| Test suite fails | add_task with failure details | Bug auto-filed, linked to project |
| Sprint starts | get_priorities + detect_conflicts | Surface scheduling conflicts before work begins |
| Agent completes work | update_agent_status status=completed | Webhook notifies orchestrator, next task dispatched |
| Release tagged | advisory-add with release notes | Changelog analyzed against project goals |
Point multiple environments at the same Quarterback instance:
This lets your local CLI, CI pipelines, and MCP-connected agents all read and write to the same task graph — giving you a single source of truth across manual and automated workflows.
Considers your working hours, lunch break, buffer time for meetings, and current time to suggest tasks that actually fit in your remaining day.
After quarterback init, run quarterback setup for an interactive wizard, or ask Claude to run the setup wizard via MCP. You can also manually configure your context in ~/.quarterback/org-context/:
Example templates are included — copy from .example files and customize.
If you enable Playbook during setup, goals.md and constraints.md are auto-maintained from the wiki's compiled/ directory. You can still manually edit the org-context files — Playbook is additive, not required.
Configure notifications in ~/.quarterback/config/alerts.yaml:
| Command | Description |
|---|---|
quarterback init | Initialize Quarterback |
quarterback setup | Interactive setup wizard |
quarterback migrate <dir> | Migrate from task-manager |
quarterback priorities [today|week|all] | Prioritized task list |
quarterback add "task" [options] | Add a task |
quarterback update <id> [options] | Update a task |
quarterback list [-s status] | List tasks |
quarterback quick-wins | Find quick wins |
quarterback conflicts | Detect priority conflicts |
quarterback projects | List projects |
quarterback summary | Organizational summary |
quarterback plan-day | Time-aware daily plan |
quarterback advisory-add | Add advisory document |
quarterback advisory-list | List advisory documents |
quarterback advisory-view --id N | View document details |
quarterback advisory-analyze --id N | Analyze document |
quarterback advisory-approve --id N | Approve/reject recommendations |
quarterback alert-check | Check for alerts |
quarterback alert-summary | Send daily summary |
quarterback playbook status | Playbook initialization status |
quarterback playbook index | Show Playbook master catalog |
quarterback playbook list | List wiki pages (with --category filter) |
quarterback playbook read <path> | Read a wiki page |
quarterback playbook search <query> | Full-text search across pages |
When used as an MCP server, Quarterback exposes these tools to Claude:
Task Management: get_priorities, add_task, update_task, get_quick_wins, detect_conflicts, assess_task_value, get_blocking_tasks
Project Management: add_project, list_projects, update_project, get_organizational_summary
Advisory System: add_advisory_document, list_advisory_documents, get_advisory_document, analyze_advisory_document, discuss_advisory_recommendations, adopt_advisory_recommendations
Playbook: playbook_read, playbook_write, playbook_search, playbook_ingest
Webhooks: register_webhook, list_webhooks, update_webhook, delete_webhook
Agent Orchestration: mark_task_agent_ready, get_agent_ready_tasks, update_agent_status
Setup: setup_quarterback
| Variable | Default | Description |
|---|---|---|
QUARTERBACK_HOME | ~/.quarterback | Data directory |
PLAYBOOK_PATH | ~/.quarterback/playbook | Playbook wiki location (or set in config/playbook.yaml) |
QUARTERBACK_API_URL | None | Reserved for Pro features |
See CONTRIBUTING.md for development setup, code style, and PR process.
MIT - see LICENSE
Built by NodeBridge Automation Solutions | GitHub Sponsors