Agent Plugins Marketplace
All plugins

taskwarrior-plugin

v1.14.0

Coordination layer for multi-agent work using taskwarrior - parallel-safe queries, urgency scoring, GitHub issue/PR reconciliation, and native scheduling (wait/scheduled/due/recur)

Claude Code9 Skills

58 GitHub starsUpdated last week

Directory evidence

Runtimes
Claude Code
Parsed components
9 skill or MCP entries
Source updated
Sep 15, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install taskwarrior-plugin for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install taskwarrior-plugin@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/laurigates/claude-plugins

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is taskwarrior-plugin/.

Plugin files

taskwarrior-plugin/
├── .claude-plugin/plugin.json
├── skills/install-native-hooks/SKILL.md
├── skills/task-add/SKILL.md
├── skills/task-bulk-ops/SKILL.md
├── skills/task-claim/SKILL.md
├── skills/task-coordinate/SKILL.md
├── skills/task-done/SKILL.md
├── skills/task-reconcile/SKILL.md
├── skills/task-release/SKILL.md
└── skills/task-status/SKILL.md

Included Skills9

install-native-hooksskills/install-native-hooks/SKILL.md

Install opt-in taskwarrior native on-add/on-modify/on-exit hooks: auto-stamp project, enforce claims, batch GitHub sync, maintain coworker markers. Use when hardening a local taskwarrior store.

task-addskills/task-add/SKILL.md

File a taskwarrior task with a verified project slug and blueprint/GitHub linkage. Use when logging cross-session follow-ups, confirming a project slug, or mirroring a GitHub issue.

task-bulk-opsskills/task-bulk-ops/SKILL.md

Batch taskwarrior operations without the ID-renumbering and stdin foot-guns. Use when closing/triaging/modifying many tasks in one pass, bulk `task done` loops, or scripting task queries.

task-claimskills/task-claim/SKILL.md

Claim a taskwarrior task as in-flight (+ACTIVE) and write a coworker marker. Use when picking up a task from task-coordinate output before starting implementation.

task-coordinateskills/task-coordinate/SKILL.md

Surface next N unblocked taskwarrior tasks by urgency, skipping lock-contending tasks. Use when planning a parallel-agent wave or choosing tasks for a dispatch slot.

task-doneskills/task-done/SKILL.md

Close a taskwarrior task with landing commit annotation and optional GitHub issue/PR close. Use when finishing a coordination task or marking a work order complete.

task-reconcileskills/task-reconcile/SKILL.md

Close taskwarrior tasks whose linked GitHub issue/PR closed or merged. Use when stale trackers pile up, after a PR-merge sweep, or auditing queue drift.

task-releaseskills/task-release/SKILL.md

Release a taskwarrior task without closing it — stops +ACTIVE clock and annotates state for handoff. Use when pausing mid-task, handing off to another agent, or aborting cleanly.

task-statusskills/task-status/SKILL.md

Read-only taskwarrior queue report — pending, blocked, ready tasks and drift vs linked PRs. Use when auditing queue health, orienting before a wave, or for standup summaries.

Plugin manifests1

taskwarrior-plugin/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "taskwarrior-plugin",
  "version": "1.14.0",
  "description": "Coordination layer for multi-agent work using taskwarrior - parallel-safe queries, urgency scoring, GitHub issue/PR reconciliation, and native scheduling (wait/scheduled/due/recur)",
  "hooks": {
    "SessionStart": [
      {
        "matcher": "",
        "hooks": [
          {
            "type": "command",
            "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/taskwarrior-drift-probe.sh",
            "timeout": 10000
          }
        ]
      }
    ]
  },
  "keywords": [
    "taskwarrior",
    "coordination",
    "multi-agent",
    "queue",
    "local-first",
    "urgency",
    "github-integration",
    "reconcile",
    "scheduling"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[taskwarrior-plugin on Agent Plugins Marketplace](https://pluginsmp.com/plugins/taskwarrior-plugin)