Official Wrench.ai Claude Code plugin marketplace — B2B intelligence, lead scoring, outreach, feature specs, bug audits, SEO, and data engineering review
$git clone https://github.com/wrenchai/wrench-pluginsInstalls into the current project.
Install wrench-plugins by running `git clone https://github.com/wrenchai/wrench-plugins`, then use it for the current task and follow its documentation at https://github.com/wrenchai/wrench-plugins.
| 1 | # Wrench.ai Claude Code Plugins |
| 2 | |
| 3 | > **Official plugin marketplace from [Wrench.ai](https://wrench.ai)** — Claude Code skills for B2B lead intelligence, revenue operations, feature specs, data engineering review, SEO audits, and outreach sequences. 15 production-ready skills, one `/plugin` command away. |
| 4 | |
| 5 | [](https://code.claude.com/docs/en/discover-plugins) |
| 6 | [](./LICENSE) |
| 7 | [](https://smithery.ai/server/wrench-plugins) |
| 8 | |
| 9 | --- |
| 10 | |
| 11 | ## What is this? |
| 12 | |
| 13 | This is the official Claude Code plugin marketplace from [Wrench.ai](https://wrench.ai) — a B2B intelligence and personalization platform that helps revenue teams understand their buyers through predictive lead scoring, persona matching, behavioral enrichment, and AI-powered outreach. |
| 14 | |
| 15 | These plugins bring Wrench.ai's methodology — direct, data-driven, and outcome-focused — to Claude Code as installable skills. Each skill is production-tested and synced from [wrench-dna](https://github.com/WrenchAI/wrench-dna), Wrench.ai's internal standards repository. |
| 16 | |
| 17 | **Who is this for?** |
| 18 | - **Sales and RevOps teams** using Claude Code for prospecting, deal analysis, and outreach |
| 19 | - **Engineers** who want structured spec writing, bug auditing, and data engineering review |
| 20 | - **Marketers** building SEO audits and conversion optimization workflows |
| 21 | - **Anyone** using Claude Code who wants to remove AI writing patterns from their copy |
| 22 | |
| 23 | --- |
| 24 | |
| 25 | ## Install |
| 26 | |
| 27 | ### One-line setup |
| 28 | |
| 29 | ``` |
| 30 | /plugin marketplace add github:WrenchAI/wrench-plugins |
| 31 | ``` |
| 32 | |
| 33 | ### Install individual skills |
| 34 | |
| 35 | ``` |
| 36 | /plugin install wrench-personalize@wrench-plugins |
| 37 | /plugin install wrench-dossier@wrench-plugins |
| 38 | /plugin install wrench-report@wrench-plugins |
| 39 | /plugin install wrench-charts@wrench-plugins |
| 40 | /plugin install feature-spec@wrench-plugins |
| 41 | /plugin install humanizer@wrench-plugins |
| 42 | /plugin install wrench-outreach@wrench-plugins |
| 43 | /plugin install meeting-dossier@wrench-plugins |
| 44 | /plugin install bug-audit@wrench-plugins |
| 45 | /plugin install seo-audit@wrench-plugins |
| 46 | /plugin install page-cro@wrench-plugins |
| 47 | /plugin install wrench-de-review@wrench-plugins |
| 48 | /plugin install wrench-ux-constitution@wrench-plugins |
| 49 | /plugin install dossier-builder@wrench-plugins |
| 50 | /plugin install wrench-scorecard@wrench-plugins |
| 51 | /plugin install wrench-enrichment@wrench-plugins |
| 52 | /plugin install wrench-campaign@wrench-plugins |
| 53 | /plugin install wrench-personas@wrench-plugins |
| 54 | ``` |
| 55 | |
| 56 | ### Auto-install for your whole team |
| 57 | |
| 58 | Add to your project's `.claude/settings.json`: |
| 59 | |
| 60 | ```json |
| 61 | { |
| 62 | "extraKnownMarketplaces": [ |
| 63 | { |
| 64 | "name": "wrench-plugins", |
| 65 | "source": { |
| 66 | "source": "github", |
| 67 | "repo": "WrenchAI/wrench-plugins" |
| 68 | } |
| 69 | } |
| 70 | ] |
| 71 | } |
| 72 | ``` |
| 73 | |
| 74 | Then any team member can run `/plugin install <name>@wrench-plugins`. |
| 75 | |
| 76 | --- |
| 77 | |
| 78 | ## Available Skills |
| 79 | |
| 80 | ### Data Visualization |
| 81 | |
| 82 | | Skill | Trigger | What it does | |
| 83 | |---|---|---| |
| 84 | | **`wrench-charts`** | `build a chart`, `add a chart`, `data visualization` | Brand-compliant Recharts components — chart type selection guide, color tokens, custom tooltips, mobile responsiveness. Never writes a chart without correct tokens and layout. | |
| 85 | |
| 86 | ### Engineering Quality |
| 87 | |
| 88 | | Skill | Trigger | What it does | |
| 89 | |---|---|---| |
| 90 | | **`feature-spec`** | `write a spec`, `spec this out`, `write a PRD` | Complete feature spec with acceptance criteria, task breakdown, and Cypress test plan. Missing any of the three = incomplete spec. | |
| 91 | | **`bug-audit`** | `bug audit`, `audit before release`, `QA this feature` | Structured audit covering functional bugs, UX bugs, test coverage gaps, and customer-surfaced classification. Produces HOLD / SHIP WITH KNOWN ISSUES / CLEAR TO SHIP. | |
| 92 | | **`wrench-de-review`** | `review this PR`, `data engineering review` | Data engineering PR review — idempotency, dedup logic, cardinality assertions, schema contracts, error handling, and automation completeness. | |
| 93 | | **`wrench-ux-constitution`** | `does this pass the constitution`, `run the checklist` | UX governance skill — 11 design principles, Six Pillars initiative, Seven Empirical Gaps, and a pre-ship checklist. Settles design disagreements. | |
| 94 | |
| 95 | ### Sales & Intelligence |
| 96 | |
| 97 | | Skill | Trigger | What it does | |
| 98 | |---|---|---| |
| 99 | | **`wrench-personas`** | `segment this list`, `run personas`, `adoption curve`, `hypertarget` | Population-level persona engine — clusters a contact list into named segments, places each on the technology adoption curve, builds an OCEAN psychographic fingerprint, surfaces SHAP-weighted meta-measure priorities, and produces a structured message recipe per cluster with three draft messages. Works standalone; ML-clustered personas, real OCEAN scores, and patented hypertargeting when Wrench.ai is connected. | |
| 100 | | **`wrench-personalize`** | `personalize this`, `persona-based messaging`, `seg |