Agent Plugins Marketplace
All plugins

dev-process-toolkit

v2.70.0

Portable skills, agents, and templates that add Spec-Driven Development and TDD workflows to any Claude Code project.

Claude Code26 Skills

By nesquikmLicense: MIT7 GitHub starsUpdated 2 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
26 skill or MCP entries
Source updated
Aug 24, 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 plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install dev-process-toolkit@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/nesquikm/dev-process-toolkit

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

Plugin files

plugins/dev-process-toolkit/
├── .claude-plugin/plugin.json
├── skills/best-practices/SKILL.md
├── skills/brainstorm/SKILL.md
├── skills/deliver/SKILL.md
├── skills/deps/SKILL.md
├── skills/deps-research/SKILL.md
├── skills/docs/SKILL.md
├── skills/gate-check/SKILL.md
├── skills/implement/SKILL.md
├── skills/pr/SKILL.md
├── skills/report-issue/SKILL.md
├── skills/setup/SKILL.md
├── skills/setup-template/SKILL.md
├── skills/ship-milestone/SKILL.md
├── skills/simplify/SKILL.md
├── skills/spec-archive/SKILL.md
├── skills/spec-research/SKILL.md
├── skills/spec-review/SKILL.md
├── skills/spec-review-audit/SKILL.md
├── skills/spec-write/SKILL.md
├── skills/tdd/SKILL.md
├── skills/tdd-implement/SKILL.md
├── skills/tdd-refactor/SKILL.md
├── skills/tdd-spec-review/SKILL.md
├── skills/tdd-write-test/SKILL.md
├── skills/upgrade/SKILL.md
└── skills/visual-check/SKILL.md

Included Skills26

best-practicesskills/best-practices/SKILL.md

Manage the project best-practices manifest at `specs/best-practices.yaml`. Add, edit, delete, or list entries cataloguing house best-practices docs with scope globs and topics that feed guidance retrieval into planning and implementation.

brainstormskills/brainstorm/SKILL.md

Socratic design session for greenfield features with open solution spaces. Clarifies goals one question at a time, proposes 2-3 approaches with tradeoffs, gets design approval, then feeds into /spec-write.

deliverskills/deliver/SKILL.md

Full delivery pipeline orchestrator — takes a feature request from idea through specs to shipped, merged milestones by chaining the toolkit's phase skills end-to-end.

depsskills/deps/SKILL.md

Manage the sibling-package dependency manifest at `specs/deps.yaml`. Add, edit, delete, list, or sync entries that feed topic-aware retrieval into /brainstorm and /spec-write via the deps-researcher fork.

deps-researchskills/deps-research/SKILL.md

Internal research fork — invoked exclusively by /brainstorm and /spec-write via context:fork pairing with the deps-researcher subagent. Returns topic-aware sibling-package retrieval as a ≤25-line block. Do not invoke directly.

docsskills/docs/SKILL.md

Generate or update project docs (requires /setup --docs first). One of --quick, --commit, --full. `--quick` stages a fragment per FR; `--commit` merges staged fragments with human approval; `--full` regenerates the canonical docs/ tree from scratch.

gate-checkskills/gate-check/SKILL.md

Run the project gate checks and report results. Use after completing any feature, before creating a PR, or to verify project health.

implementskills/implement/SKILL.md

Implement a feature or fix end-to-end. Analyzes the request, builds in TDD order, runs gate checks, self-reviews with bounded loops, and reports for human approval before committing.

prskills/pr/SKILL.md

Create a pull request with conventional format. Use when asked to create a PR, open a pull request, or push changes for review.

report-issueskills/report-issue/SKILL.md

Capture a structured bug report — narrative + redacted curated context (and optional session transcript) — and publish to a secret GitHub gist for triage by the maintainer or self-debug via /brainstorm.

setupskills/setup/SKILL.md

Set up SDD/TDD development process for the current project. Creates CLAUDE.md, configures settings, and optionally creates spec files. Use when starting a new project or adding process to an existing one.

setup-templateskills/setup-template/SKILL.md

Internal template-source setup child — dispatched exclusively by /setup --template. Analyzes a template project, walks reuse selection, and lands the copied config into the current project. Do not invoke directly; stays model-invocable for the dispatching parent.

ship-milestoneskills/ship-milestone/SKILL.md

Bundle the Release Checklist + /docs --commit --full into one atomic, human-approved release commit. Reads specs/plan/M<N>.md, bumps the four release files, regenerates docs, prompts once for approval, commits on `y`, does not push.

simplifyskills/simplify/SKILL.md

Review changed code for reuse, quality, and efficiency, then fix any issues found. Use after completing a feature to clean up.

spec-archiveskills/spec-archive/SKILL.md

Manually archive user-selected FRs or milestones by `git mv` into `specs/frs/archive/` (and optionally `specs/plan/archive/`) with a diff approval gate. Accepts ULID, tracker ID/URL, or `M<N>`. Escape hatch for /implement Phase 4 auto-archival gaps.

spec-researchskills/spec-research/SKILL.md

Internal research fork — invoked exclusively by /brainstorm and /spec-write via context:fork pairing with the spec-researcher subagent. Returns related-FR retrieval as a ≤25-line block. Do not invoke directly.

spec-reviewskills/spec-review/SKILL.md

Review implementation against specs to find deviations, missing features, or inconsistencies. Delegates to the `spec-review-audit` fork + `spec-reviewer` subagent.

spec-review-auditskills/spec-review-audit/SKILL.md

Internal spec-review audit fork — invoked exclusively by /dev-process-toolkit:spec-review via context:fork pairing with the spec-reviewer subagent. Audits the FR's specs against shipped code (read-only) and emits a spec-review-result fenced block. Do not invoke directly.

spec-writeskills/spec-write/SKILL.md

Guide the user through writing or completing spec files (requirements, technical spec, testing spec, plan). Use after /setup to fill in specs before implementation, or to update existing specs.

tddskills/tdd/SKILL.md

Multi-agent TDD orchestrator. Runs RED → GREEN → REFACTOR → AUDIT for one FR via four forked subagents (test-writer / implementer / refactorer / spec-reviewer) with a strict tdd-result hand-off contract, bounded retries, and a deterministic halt path. Replaces the previous single-context /tdd.

tdd-implementskills/tdd-implement/SKILL.md

Internal TDD implementer fork — invoked exclusively by /dev-process-toolkit:tdd via context:fork pairing with the tdd-implementer subagent, once per AC. Implements the minimum code to turn one AC's failing test GREEN. Do not invoke directly.

tdd-refactorskills/tdd-refactor/SKILL.md

Internal TDD refactorer fork — invoked exclusively by /dev-process-toolkit:tdd via context:fork pairing with the tdd-refactorer subagent, exactly once at end of FR after all ACs are GREEN. Do not invoke directly.

tdd-spec-reviewskills/tdd-spec-review/SKILL.md

Internal TDD spec-review fork — invoked exclusively by /dev-process-toolkit:tdd via context:fork pairing with the tdd-spec-reviewer subagent, exactly once at the end of an FR after REFACTOR is GREEN. Audits the FR's ACs (read-only) and emits a tdd-spec-review-result fenced block. Do not invoke directly.

tdd-write-testskills/tdd-write-test/SKILL.md

Internal TDD test-writer fork — invoked exclusively by /dev-process-toolkit:tdd via context:fork pairing with the tdd-test-writer subagent. Writes failing tests for the full AC list of one FR. Do not invoke directly.

upgradeskills/upgrade/SKILL.md

Bring an already-bootstrapped project up to current toolkit conventions. Walks the version-ordered migration registry, previews every change, and applies the scripted fixes in one approved commit.

visual-checkskills/visual-check/SKILL.md

Visually verify web UI using a rubber duck MCP with Chrome browser tools. Use after building or modifying web UI components.

Plugin manifests1

plugins/dev-process-toolkit/.claude-plugin/plugin.json
{
  "name": "dev-process-toolkit",
  "version": "2.70.0",
  "description": "Portable skills, agents, and templates that add Spec-Driven Development and TDD workflows to any Claude Code project.",
  "author": {
    "name": "nesquikm",
    "url": "https://github.com/nesquikm"
  },
  "homepage": "https://github.com/nesquikm/dev-process-toolkit",
  "repository": "https://github.com/nesquikm/dev-process-toolkit",
  "license": "MIT",
  "keywords": [
    "sdd",
    "tdd",
    "spec-driven",
    "testing",
    "gate-check",
    "code-quality",
    "code-review"
  ]
}

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

[dev-process-toolkit on Agent Plugins Marketplace](https://pluginsmp.com/plugins/dev-process-toolkit)