build
v1.30.0Test and build automation tools that loop until all commits pass
By Craig MotlinLicense: Apache-2.015 GitHub starsUpdated 15 hours ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 6 skill or MCP entries
- Source updated
- Aug 26, 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
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add build@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. 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/motlin/claude-code-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/build/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/build-dev-server/SKILL.md├── skills/build-fix/SKILL.md├── skills/build-test-all/SKILL.md├── skills/build-test-branch/SKILL.md├── skills/build-test-setup/SKILL.md└── skills/precommit/SKILL.md
Included Skills6
Start or restart a project dev server on a specific or discovered port, wait until it is ready, and monitor it for automatic recovery. Use when the user asks to start, restart, keep alive, watch, or monitor a development server.
Commit changes, run git-test precommit checks, and fix failures. Use when asked to fix build, test, lint, typecheck, or precommit failures.
Run tests across all commits and loop on failures until all pass. Use when asked to run or fix test-all for a branch.
Test every commit in the current branch, fix failures, create fixup commits, and repeat until all commits pass.
Configure git-test for the current repository. Use when git test is missing or the user asks to set up branch testing.
Running precommit checks and build validation. ALWAYS use after ANY code changes.
Plugin manifests2
{
"name": "build",
"version": "1.30.0",
"description": "Test and build automation tools that loop until all commits pass",
"author": {
"name": "Craig Motlin"
},
"license": "Apache-2.0",
"homepage": "https://github.com/motlin/claude-code-plugins/tree/main/plugins/build",
"repository": "https://github.com/motlin/claude-code-plugins",
"keywords": [
"codex",
"plugin",
"build"
],
"interface": {
"displayName": "Build",
"shortDescription": "Test and build automation tools that loop until all commits pass",
"longDescription": "Test and build automation tools that loop until all commits pass",
"developerName": "Craig Motlin",
"category": "Productivity",
"capabilities": [
"Skills"
],
"defaultPrompt": [
"Use the build plugin."
],
"brandColor": "#3B82F6"
},
"skills": "./skills/"
}{
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
"name": "build",
"description": "Test and build automation tools that loop until all commits pass",
"version": "1.30.0",
"license": "Apache-2.0",
"author": {
"name": "Craig Motlin"
},
"agents": [
"./agents/precommit-runner.md",
"./agents/build-fixer-autosquash.md"
],
"skills": [
"./skills/precommit"
],
"commands": [
"./commands/test-branch.md",
"./commands/test-all.md",
"./commands/fix.md",
"./commands/test-setup.md",
"./commands/dev-server.md"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[build on Agent Plugins Marketplace](https://pluginsmp.com/plugins/build)