Install
$ agentstack add mcp-racecraft-lab-racecraft-plugins-public ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Racecraft Plugins Public
[](./LICENSE)
Racecraft Plugins Public is the open-source plugin marketplace from Racecraft Lab. It currently publishes [SpecKit Pro](./speckit-pro/README.md) for both Claude Code and Codex.
The short version: install this marketplace if you want Racecraft-maintained agent workflows you can inspect, version, and update through your coding-agent plugin system.
> Trust check: Plugins can change how an agent reads files, writes files, > launches tools, or delegates work. Review the plugin README and source before > installing or updating.
Should I Install This?
| You are... | Install if... | Skip for now if... | |---|---|---| | Evaluating Racecraft plugins | You want to inspect and install public Racecraft plugins from one place. | You only need a one-off prompt or local personal workflow. | | Using Spec-Driven Development | You want a guided Spec Kit workflow with scoping, planning, gates, and implementation support. | Your change is tiny enough for a direct manual edit. | | Maintaining plugins | You want examples of dual Claude Code and Codex plugin packaging. | You do not need marketplace distribution or generated payloads. |
Available Plugins
| Plugin | What it does | Best first step | |---|---|---| | [SpecKit Pro](./speckit-pro/README.md) | Adds Racecraft workflows around GitHub Spec Kit: coaching, scoping interviews, spec scaffolding, autopilot execution, status, and PR review resolution. | Read the [SpecKit Pro decision guide](./speckit-pro/README.md#should-i-install-speckit-pro). |
Install The Marketplace
This repository exposes the same marketplace through two runtime surfaces:
| Runtime | Marketplace metadata | Install payload | |---|---|---| | Claude Code | [.claude-plugin/marketplace.json](./.claude-plugin/marketplace.json) | [dist/claude/speckit-pro](./dist/claude/speckit-pro/) | | Codex | [.agents/plugins/marketplace.json](./.agents/plugins/marketplace.json) | [dist/codex/speckit-pro](./dist/codex/speckit-pro/) |
Claude Code
Add the marketplace, then install the plugin:
/plugin marketplace add racecraft-lab/racecraft-plugins-public
/plugin install speckit-pro@racecraft-plugins-public
/reload-plugins
Verify the installed plugin from Claude Code's /plugin UI, then use namespaced plugin skills such as /speckit-pro:speckit-status and /speckit-pro:speckit-coach.
Codex
Claude Code commands are the separate DOC-003-owned path; use the [Claude Code install guide](./docs-site/src/content/docs/install/claude-code.md) for that runtime. For Codex, open this repository in Codex, then open the plugin directory:
codex
/plugins
Codex reads the repo-scoped marketplace from [.agents/plugins/marketplace.json](./.agents/plugins/marketplace.json). That marketplace points SpecKit Pro at the generated Codex payload, [dist/codex/speckit-pro/](./dist/codex/speckit-pro/). Do not install Codex from the mixed authoring tree at [speckit-pro/](./speckit-pro/).
After installing SpecKit Pro, run the plugin's Codex install skill so its bundled custom-agent TOML files are copied into Codex's agent registry:
@SpecKit Pro -> install
or:
$install
The default destination is ~/.codex/agents/; choose .codex/agents/ only when you intentionally want project-scoped custom agents. Verify these nine installer-copied TOML files only:
autopilot-fast-helper.tomlphase-executor.tomlclarify-executor.tomlchecklist-executor.tomlanalyze-executor.tomlimplement-executor.tomlcodebase-analyst.tomlspec-context-analyst.tomldomain-researcher.toml
Then restart Codex. Also restart Codex after plugin enablement changes, custom-agent refreshes, or relevant Codex config edits.
Codex loads installed plugins from the installed plugin cache at ~/.codex/plugins/cache/$MARKETPLACE_NAME/$PLUGIN_NAME/$VERSION/. Treat that as runtime state, not the source of truth. If SpecKit Pro looks stale after an update, check the marketplace source or copied personal payload, the generated payload, the installed plugin cache, the selected custom-agent destination, and whether Codex was restarted. Rerun @SpecKit Pro -> install or $install after a plugin update that changes bundled custom-agent TOML files, then restart Codex again. Do not edit the installed plugin cache.
Install safety stays bounded here: Codex sandbox, approval, and network policy still apply. Git-backed marketplace setup can require network access or network approval. Writing to ~/.codex/agents/ is outside most project workspaces, so approve only the expected local write of the named SpecKit Pro TOML files, or rerun with .codex/agents/ or narrower permissions. The generated Codex payload can include lifecycle hook configuration such as codex-hooks.json; hook behavior remains governed by Codex sandbox, approval, hook trust, and configured policy controls.
For personal Codex installs, follow the official local-plugin layout: copy or sync the generated Codex payload, then point ~/.agents/plugins/marketplace.json at that copied payload, not the mixed authoring tree:
dist/codex/speckit-pro/
For deeper Codex file-layout details, use the [DOC-007 reference shell](./docs-site/src/content/docs/reference.md). For trust, hook policy, update, rollback, permission repair, and stale-cache forensics, use the [DOC-008 security and trust](./docs-site/src/content/docs/security-and-trust.md) and [DOC-008 troubleshooting](./docs-site/src/content/docs/troubleshooting.md) shells.
How This Repo Is Organized
| Path | Purpose | Edit directly? | |---|---|---| | [speckit-pro/](./speckit-pro/) | Source of truth for SpecKit Pro across Claude Code and Codex. | Yes | | [speckit-pro/speckit_pro_runner/](./speckit-pro/speckitprorunner/) | Python 3.11+ standard-library runner used by installed runtime gates and payload checks. | Yes | | [dist/claude/speckit-pro/](./dist/claude/speckit-pro/) | Generated Claude Code install payload. | No, regenerate | | [dist/codex/speckit-pro/](./dist/codex/speckit-pro/) | Generated Codex install payload. | No, regenerate | | [tests/speckit-pro/](./tests/speckit-pro/) | Repository validation suite for structure, tool scoping, and generated payloads. | Yes | | Payload rebuilds | Python runner payload-completeness operation for source-checkout payload and release automation paths. | Yes |
Contributor Path
Use this lane when changing documentation, skills, agents, hooks, scripts, or marketplace packaging.
- Edit source files under
speckit-pro/or this root README. - Rebuild generated install payloads through the Python runner gate:
``text cd speckit-pro python3 -m speckit_pro_runner < ../tests/speckit-pro/layer4-scripts/fixtures/xplat-008-release/requests/payload-completeness-apply.json ``
- Run the default validation suite:
Use the repository default validation suite documented in the contributor guide.
- For structural-only changes, this narrower check is useful while iterating:
Use the repository structural validation suite documented in the contributor guide.
- Open a PR with a Conventional Commit title, for example:
``text docs(speckit-pro): clarify plugin install paths ``
What Not To Edit Directly
- Do not hand-edit
dist/**payload files except to inspect a generated result.
Regenerate them from source.
- Do not install
speckit-pro/directly as a Codex personal plugin. Use
dist/codex/speckit-pro/.
- Do not change marketplace versions manually as part of normal docs work.
Release automation owns version synchronization.
Official Platform Docs
The README install and packaging guidance is grounded in these official docs:
| Platform | Docs | |---|---| | Claude Code | Create plugins, Plugin marketplaces, Plugins reference | | Codex | Plugins, Build plugins, Skills, Subagents | | Spec Kit | Docs, Installation, Quick start, GitHub repo |
Repo-specific behavior is grounded in the checked-in manifests, payload builder, tests, and plugin source.
License
This repository is licensed under the [MIT License](./LICENSE). See each plugin README for plugin-specific details.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: racecraft-lab
- Source: racecraft-lab/racecraft-plugins-public
- License: MIT
- Homepage: https://code.claude.com/docs/en/plugins
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.