Agent Plugins Marketplace
All plugins

dev-loop

v0.5.0

Git workflow, versioning, worktrees, Justfile recipes, TDD, test shrinking, and best practices

Claude CodeAgent Plugins8 Skills

By HernandoR0 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
8 skill or MCP entries
Source updated
Sep 20, 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 dev-loop 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 dev-loop@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/HernandoR/agent-skillset

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

Plugin files

plugins/dev-loop/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/development-best-practices/SKILL.md
├── skills/finishing-a-development-branch/SKILL.md
├── skills/git-workflow-and-versioning/SKILL.md
├── skills/justfile-workflow/SKILL.md
├── skills/shrink-tests/SKILL.md
├── skills/tdd-checkbox-plans/SKILL.md
├── skills/using-git-worktrees/SKILL.md
└── skills/verification-before-completion/SKILL.md

Included Skills8

development-best-practicesskills/development-best-practices/SKILL.md

Use when starting or organizing development work that may involve design decisions, external APIs, typed public surfaces, Python tooling, repeatable commands, verification, or commits.

finishing-a-development-branchskills/finishing-a-development-branch/SKILL.md

Use after implementation work is verified and the branch needs a merge, pull request, preservation, cleanup, or discard decision.

git-workflow-and-versioningskills/git-workflow-and-versioning/SKILL.md

Use when making code, documentation, tooling, or skill changes that should be committed, branched, reviewed, merged, reverted, or split into versioned steps.

justfile-workflowskills/justfile-workflow/SKILL.md

Use when a project has a Justfile, needs repeatable command recipes, or has multi-step build, test, lint, docs, benchmark, or release workflows.

shrink-testsskills/shrink-tests/SKILL.md

Use when a TDD ladder has reached green and its tests are about to merge, when a branch diff adds tests that only restate the code they drove, or when the test suite prevents refactoring instead of catching regressions. Triggers on "these tests only repeat the code", "this test fails after every rename", "drop the redundant tests", "the suite blocks every refactor". Do not use it to delete failing tests and make a red suite green.

tdd-checkbox-plansskills/tdd-checkbox-plans/SKILL.md

Use when implementing an accepted ADR through a sequence of red-test-then-implement steps, when a feature must be split into verifiable tasks with explicit failure-fragment prediction, or when previous implementations have skipped the red-test step under deadline pressure.

using-git-worktreesskills/using-git-worktrees/SKILL.md

Use when starting isolated feature work, parallel development, risky experiments, implementation plans, or any task that should not disturb the current working tree.

verification-before-completionskills/verification-before-completion/SKILL.md

Use before claiming work is complete, fixed, passing, validated, ready to commit, ready to merge, or safe to hand off.

Plugin manifests2

plugins/dev-loop/.claude-plugin/plugin.json
{
  "name": "dev-loop",
  "version": "0.5.0",
  "description": "Git workflow, versioning, worktrees, Justfile recipes, TDD, test shrinking, and best practices",
  "keywords": [
    "git",
    "worktree",
    "tdd",
    "tests",
    "just",
    "verification"
  ],
  "skills": "./skills",
  "interface": {
    "displayName": "Dev Loop",
    "shortDescription": "The development loop: worktrees, TDD plans, Justfile recipes, verification, merge",
    "longDescription": "Skills for executing the work. Start isolated feature work in a worktree, split an accepted ADR into red-test-then-implement steps, wrap repeatable commands in a Justfile, commit each verified step with a conventional subject, shrink the mirror tests the ladder leaves behind, prove completion before claiming it, and decide what happens to the branch at the end.",
    "developerName": "HernandoR",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "defaultPrompt": [
      "Turn this ADR into a TDD checkbox plan.",
      "Start this feature in a clean worktree.",
      "Verify this is really done before I merge."
    ]
  }
}
plugins/dev-loop/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "dev-loop",
  "version": "0.5.0",
  "description": "Git workflow, versioning, worktrees, Justfile recipes, TDD, test shrinking, and best practices",
  "author": {
    "name": "HernandoR",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/HernandoR/agent-skillset",
  "repository": "https://github.com/HernandoR/agent-skillset",
  "keywords": [
    "git",
    "worktree",
    "tdd",
    "tests",
    "just",
    "verification"
  ]
}

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

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