mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-03-17 22:43:09 +00:00
Compare commits
81 Commits
add-ruby-l
...
add-plugin
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39ca503ef1 | ||
|
|
121ca90c08 | ||
|
|
e1706ebd52 | ||
|
|
6e4cf38fe2 | ||
|
|
cc9555bb90 | ||
|
|
79bed4d3b0 | ||
|
|
fefdd738be | ||
|
|
0c1407ea30 | ||
|
|
adeb0436c2 | ||
|
|
28ebfe4135 | ||
|
|
3d0d05576d | ||
|
|
124fcfaa1e | ||
|
|
cccd8b3ea2 | ||
|
|
478ea5b46a | ||
|
|
fd805b5e4b | ||
|
|
fd8defbb34 | ||
|
|
328a0a7190 | ||
|
|
3f3d3daeb8 | ||
|
|
f59c36423d | ||
|
|
e97b983948 | ||
|
|
db1e313270 | ||
|
|
c91a334747 | ||
|
|
4f0a09875b | ||
|
|
f3f13c4499 | ||
|
|
a5bd1097e8 | ||
|
|
8a25030d01 | ||
|
|
1086e0cc1a | ||
|
|
c554ce45e3 | ||
|
|
d5c15b861c | ||
|
|
bf6270071e | ||
|
|
50ebf6df3b | ||
|
|
ad61a54061 | ||
|
|
95327347c3 | ||
|
|
64ce1721a4 | ||
|
|
9febf87cdb | ||
|
|
fbe0386df6 | ||
|
|
1f25b55ae3 | ||
|
|
616512c59d | ||
|
|
80d85e8f9c | ||
|
|
b4178e809b | ||
|
|
57fe2068ec | ||
|
|
a8e8f7e89f | ||
|
|
e0b2429899 | ||
|
|
159db463ec | ||
|
|
1d1f304807 | ||
|
|
5a5fc148df | ||
|
|
92e9c49f3e | ||
|
|
9750826583 | ||
|
|
d726c5ea42 | ||
|
|
61ff000c60 | ||
|
|
aeb25ced03 | ||
|
|
4fecb30b3c | ||
|
|
b90a056130 | ||
|
|
038e989ee4 | ||
|
|
8fda75ce49 | ||
|
|
f71d2d9925 | ||
|
|
7c626d26bb | ||
|
|
cdbe8cbe74 | ||
|
|
b3b3549c12 | ||
|
|
7b67d48001 | ||
|
|
7b7e85568b | ||
|
|
8a89ca31e1 | ||
|
|
9c11aed2b7 | ||
|
|
2a6b21dabc | ||
|
|
41ac3012b6 | ||
|
|
934cc3b4e9 | ||
|
|
7657ed1025 | ||
|
|
954edbd88b | ||
|
|
8249477529 | ||
|
|
fe41d329d5 | ||
|
|
acd3701274 | ||
|
|
cd89e41cf4 | ||
|
|
42d7afb1f0 | ||
|
|
085871e8e7 | ||
|
|
32f2cdbe0c | ||
|
|
24cec23cf1 | ||
|
|
c7ba9d4c43 | ||
|
|
72fa7b63ed | ||
|
|
a5604c1355 | ||
|
|
8e7c0615e6 | ||
|
|
aab3f1ba3f |
@@ -21,7 +21,9 @@
|
|||||||
"lspServers": {
|
"lspServers": {
|
||||||
"typescript": {
|
"typescript": {
|
||||||
"command": "typescript-language-server",
|
"command": "typescript-language-server",
|
||||||
"args": ["--stdio"],
|
"args": [
|
||||||
|
"--stdio"
|
||||||
|
],
|
||||||
"extensionToLanguage": {
|
"extensionToLanguage": {
|
||||||
".ts": "typescript",
|
".ts": "typescript",
|
||||||
".tsx": "typescriptreact",
|
".tsx": "typescriptreact",
|
||||||
@@ -49,7 +51,9 @@
|
|||||||
"lspServers": {
|
"lspServers": {
|
||||||
"pyright": {
|
"pyright": {
|
||||||
"command": "pyright-langserver",
|
"command": "pyright-langserver",
|
||||||
"args": ["--stdio"],
|
"args": [
|
||||||
|
"--stdio"
|
||||||
|
],
|
||||||
"extensionToLanguage": {
|
"extensionToLanguage": {
|
||||||
".py": "python",
|
".py": "python",
|
||||||
".pyi": "python"
|
".pyi": "python"
|
||||||
@@ -111,7 +115,9 @@
|
|||||||
"lspServers": {
|
"lspServers": {
|
||||||
"clangd": {
|
"clangd": {
|
||||||
"command": "clangd",
|
"command": "clangd",
|
||||||
"args": ["--background-index"],
|
"args": [
|
||||||
|
"--background-index"
|
||||||
|
],
|
||||||
"extensionToLanguage": {
|
"extensionToLanguage": {
|
||||||
".c": "c",
|
".c": "c",
|
||||||
".h": "c",
|
".h": "c",
|
||||||
@@ -140,7 +146,9 @@
|
|||||||
"lspServers": {
|
"lspServers": {
|
||||||
"intelephense": {
|
"intelephense": {
|
||||||
"command": "intelephense",
|
"command": "intelephense",
|
||||||
"args": ["--stdio"],
|
"args": [
|
||||||
|
"--stdio"
|
||||||
|
],
|
||||||
"extensionToLanguage": {
|
"extensionToLanguage": {
|
||||||
".php": "php"
|
".php": "php"
|
||||||
}
|
}
|
||||||
@@ -181,12 +189,14 @@
|
|||||||
"lspServers": {
|
"lspServers": {
|
||||||
"kotlin-lsp": {
|
"kotlin-lsp": {
|
||||||
"command": "kotlin-lsp",
|
"command": "kotlin-lsp",
|
||||||
"args": ["--stdio"],
|
"args": [
|
||||||
|
"--stdio"
|
||||||
|
],
|
||||||
"extensionToLanguage": {
|
"extensionToLanguage": {
|
||||||
".kt": "kotlin",
|
".kt": "kotlin",
|
||||||
".kts": "kotlin"
|
".kts": "kotlin"
|
||||||
},
|
},
|
||||||
"startupTimeout" : 120000
|
"startupTimeout": 120000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -475,7 +485,9 @@
|
|||||||
"category": "development",
|
"category": "development",
|
||||||
"source": "./external_plugins/serena",
|
"source": "./external_plugins/serena",
|
||||||
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/serena",
|
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/serena",
|
||||||
"tags": ["community-managed"]
|
"tags": [
|
||||||
|
"community-managed"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "playwright",
|
"name": "playwright",
|
||||||
@@ -540,7 +552,7 @@
|
|||||||
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/linear"
|
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/linear"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Notion",
|
"name": "notion",
|
||||||
"description": "Notion workspace integration. Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.",
|
"description": "Notion workspace integration. Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.",
|
||||||
"category": "productivity",
|
"category": "productivity",
|
||||||
"source": {
|
"source": {
|
||||||
@@ -582,11 +594,11 @@
|
|||||||
"category": "deployment",
|
"category": "deployment",
|
||||||
"source": {
|
"source": {
|
||||||
"source": "url",
|
"source": "url",
|
||||||
"url": "https://github.com/vercel/vercel-deploy-claude-code-plugin.git"
|
"url": "https://github.com/vercel/vercel-plugin.git"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vercel/vercel-deploy-claude-code-plugin"
|
"homepage": "https://github.com/vercel/vercel-plugin"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "stripe",
|
"name": "stripe",
|
||||||
"description": "Stripe development plugin for Claude",
|
"description": "Stripe development plugin for Claude",
|
||||||
"category": "development",
|
"category": "development",
|
||||||
@@ -606,7 +618,9 @@
|
|||||||
"category": "development",
|
"category": "development",
|
||||||
"source": "./external_plugins/context7",
|
"source": "./external_plugins/context7",
|
||||||
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/context7",
|
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/context7",
|
||||||
"tags": ["community-managed"]
|
"tags": [
|
||||||
|
"community-managed"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pinecone",
|
"name": "pinecone",
|
||||||
@@ -650,13 +664,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "posthog",
|
"name": "posthog",
|
||||||
"description": "Connect Claude Code to your PostHog analytics platform. Query insights, manage feature flags, run A/B experiments, track errors, and analyze LLM costs all through natural language. The plugin provides 10 slash commands for common workflows and full access to PostHog's MCP tools. Ask questions like \"What are my top errors?\" or \"Create a feature flag for 50% of users\" and Claude handles the API calls. Supports OAuth authentication, EU and US cloud regions, and self-hosted instances.",
|
"description": "Access PostHog analytics, feature flags, experiments, error tracking, and insights directly from Claude Code.",
|
||||||
"category": "monitoring",
|
"category": "monitoring",
|
||||||
"source": {
|
"source": {
|
||||||
"source": "url",
|
"source": "url",
|
||||||
"url": "https://github.com/PostHog/posthog-for-claude.git"
|
"url": "https://github.com/PostHog/ai-plugin.git",
|
||||||
|
"sha": "f2f37954ecef9f1afce4fa81b6a612454a96c410"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/PostHog/posthog-for-claude.git"
|
"homepage": "https://posthog.com/docs/model-context-protocol"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "coderabbit",
|
"name": "coderabbit",
|
||||||
@@ -694,8 +709,7 @@
|
|||||||
"category": "development",
|
"category": "development",
|
||||||
"source": {
|
"source": {
|
||||||
"source": "url",
|
"source": "url",
|
||||||
"url": "https://github.com/qodo-ai/qodo-skills.git",
|
"url": "https://github.com/qodo-ai/qodo-skills.git"
|
||||||
"sha": "623eb4ed4364d8111f9a9132a791d7497d814b6a"
|
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/qodo-ai/qodo-skills.git"
|
"homepage": "https://github.com/qodo-ai/qodo-skills.git"
|
||||||
},
|
},
|
||||||
@@ -731,6 +745,309 @@
|
|||||||
"sha": "0714280351c1a137e79aad465a66730511ffbd57"
|
"sha": "0714280351c1a137e79aad465a66730511ffbd57"
|
||||||
},
|
},
|
||||||
"homepage": "https://learning.postman.com/docs/developer/postman-mcp-server/"
|
"homepage": "https://learning.postman.com/docs/developer/postman-mcp-server/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "chrome-devtools-mcp",
|
||||||
|
"description": "Control and inspect a live Chrome browser from your coding agent. Record performance traces, analyze network requests, check console messages with source-mapped stack traces, and automate browser actions with Puppeteer.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp.git",
|
||||||
|
"sha": "c2d8009ff75f76bce1ec4cf79c2467b50d81725e"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "planetscale",
|
||||||
|
"description": "An authenticated hosted MCP server that accesses your PlanetScale organizations, databases, branches, schema, and Insights data. Query against your data, surface slow queries, and get organizational and account information.",
|
||||||
|
"category": "database",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/planetscale/claude-plugin.git",
|
||||||
|
"sha": "f1066cac5bb956bbbb05918f5b07fe0e873d44ea"
|
||||||
|
},
|
||||||
|
"homepage": "https://planetscale.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "rc",
|
||||||
|
"description": "Configure RevenueCat projects, apps, products, entitlements, and offerings directly from Claude Code. Manage your in-app purchase backend without leaving your development workflow.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/RevenueCat/rc-claude-code-plugin.git",
|
||||||
|
"sha": "af7cb77996aee4e7e3c109c5afec81f716139032"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.revenuecat.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "adspirer-ads-agent",
|
||||||
|
"description": "Cross-platform ad management for Google Ads, Meta Ads, TikTok Ads, and LinkedIn Ads. 91 tools for keyword research, campaign creation, performance analysis, and budget optimization.",
|
||||||
|
"category": "productivity",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/amekala/adspirer-mcp-plugin.git",
|
||||||
|
"sha": "aa70dbdbbbb843e94a794c10c2b13f5dd66b5e40"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.adspirer.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "railway",
|
||||||
|
"description": "Deploy and manage apps, databases, and infrastructure on Railway. Covers project setup, deploys, environment configuration, networking, troubleshooting, and monitoring.",
|
||||||
|
"category": "deployment",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "railwayapp/railway-skills",
|
||||||
|
"path": "plugins/railway",
|
||||||
|
"ref": "main",
|
||||||
|
"sha": "d52f3741a6a33a3191d6138eb3d6c3355cb970d1"
|
||||||
|
},
|
||||||
|
"homepage": "https://docs.railway.com/ai/claude-code-plugin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sourcegraph",
|
||||||
|
"description": "Code search and understanding across codebases. Search, read, and trace references across repositories; analyze refactor impact; investigate incidents via commit and diff search; run targeted security sweeps.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/sourcegraph-community/sourcegraph-claudecode-plugin.git",
|
||||||
|
"sha": "cfe3d44476957b16d1575261bef6b2dc7cb1e0b7"
|
||||||
|
},
|
||||||
|
"homepage": "https://sourcegraph.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sanity-plugin",
|
||||||
|
"description": "Sanity content platform integration with MCP server, agent skills, and slash commands. Query and author content, build and optimize GROQ queries, design schemas, and set up Visual Editing.",
|
||||||
|
"category": "development",
|
||||||
|
"author": {
|
||||||
|
"name": "Sanity"
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/sanity-io/agent-toolkit.git",
|
||||||
|
"sha": "4b1fb10bd707a22cf0cdfad5374ffc885f2ffa8d"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.sanity.io"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "data",
|
||||||
|
"description": "Data engineering for Apache Airflow and Astronomer. Author DAGs with best practices, debug pipeline failures, trace data lineage, profile tables, migrate Airflow 2 to 3, and manage local and cloud deployments.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/astronomer/agents.git",
|
||||||
|
"sha": "7ef022b02f5296b5ecc52ba0db3ba9345ec03c9e"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/astronomer/agents"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "legalzoom",
|
||||||
|
"description": "Attorney guidance and legal tools for business and personal needs. AI-powered document review identifies critical risks and important clauses, advises when to engage an attorney, and routes to LegalZoom's network when professional expertise is needed.",
|
||||||
|
"category": "productivity",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "legalzoom/claude-plugins",
|
||||||
|
"path": "plugins/legalzoom",
|
||||||
|
"ref": "main",
|
||||||
|
"sha": "f9fd8a0ca6e1421bc1aacb113a109663a7a6f6d8"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.legalzoom.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "mintlify",
|
||||||
|
"description": "Build beautiful documentation sites with Mintlify. Convert non-markdown files into properly formatted MDX pages, add and modify content with correct component use, and automate documentation updates.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/mintlify/mintlify-claude-plugin.git",
|
||||||
|
"sha": "ce435be18a700dc849d6a63a80da4816d1e2128c"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.mintlify.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sumup",
|
||||||
|
"description": "SumUp payment integrations across terminal and online checkout flows. Build Android and iOS POS apps with SumUp card readers, online checkout with server SDKs and the checkout widget, and control card readers remotely via Cloud API.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/sumup/sumup-skills.git",
|
||||||
|
"sha": "802476c39a0422d3277e37288b03968ad731bc30"
|
||||||
|
},
|
||||||
|
"homepage": "https://www.sumup.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wix",
|
||||||
|
"description": "Build, manage, and deploy Wix sites and apps. CLI development skills for dashboard extensions, backend APIs, site widgets, and service plugins with the Wix Design System, plus MCP server for site management.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/wix/skills.git",
|
||||||
|
"sha": "15dda227e34959b1340e33bb9aede7e23a273f42"
|
||||||
|
},
|
||||||
|
"homepage": "https://dev.wix.com/docs/wix-cli/guides/development/about-wix-skills"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "amazon-location-service",
|
||||||
|
"description": "Guide developers through adding maps, places search, geocoding, routing, and other geospatial features with Amazon Location Service, including authentication setup, SDK integration, and best practices.",
|
||||||
|
"category": "location",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "https://github.com/awslabs/agent-plugins.git",
|
||||||
|
"path": "plugins/amazon-location-service",
|
||||||
|
"ref": "main"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/awslabs/agent-plugins"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "aws-serverless",
|
||||||
|
"description": "Design, build, deploy, test, and debug serverless applications with AWS Serverless services.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "https://github.com/awslabs/agent-plugins.git",
|
||||||
|
"path": "plugins/aws-serverless",
|
||||||
|
"ref": "main"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/awslabs/agent-plugins"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "migration-to-aws",
|
||||||
|
"description": "Assess current cloud provider usage and billing to estimate and compare AWS services and pricing, with recommendations for migration or continued use of current provider.",
|
||||||
|
"category": "migration",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "https://github.com/awslabs/agent-plugins.git",
|
||||||
|
"path": "plugins/migration-to-aws",
|
||||||
|
"ref": "main"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/awslabs/agent-plugins"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "deploy-on-aws",
|
||||||
|
"description": "Deploy applications to AWS with architecture recommendations, cost estimates, and IaC deployment.",
|
||||||
|
"category": "deployment",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "https://github.com/awslabs/agent-plugins.git",
|
||||||
|
"path": "plugins/deploy-on-aws",
|
||||||
|
"ref": "main"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/awslabs/agent-plugins"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "zapier",
|
||||||
|
"description": "Connect 8,000+ apps to your AI workflow. Discover, enable, and execute Zapier actions directly from your client.",
|
||||||
|
"category": "productivity",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "zapier/zapier-mcp",
|
||||||
|
"path": "plugins/zapier",
|
||||||
|
"ref": "main",
|
||||||
|
"sha": "b93007e9a726c6ee93c57a949e732744ef5acbfd"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/zapier/zapier-mcp/tree/main/plugins/zapier"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "terraform",
|
||||||
|
"description": "The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.",
|
||||||
|
"author": {
|
||||||
|
"name": "HashiCorp",
|
||||||
|
"email": "support@hashicorp.com"
|
||||||
|
},
|
||||||
|
"category": "development",
|
||||||
|
"source": "./external_plugins/terraform",
|
||||||
|
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/terraform"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "autofix-bot",
|
||||||
|
"description": "Code review agent that detects security vulnerabilities, code quality issues, and hardcoded secrets. Combines 5,000+ static analyzers to scan your code and dependencies for CVEs.",
|
||||||
|
"author": {
|
||||||
|
"name": "DeepSource Corp"
|
||||||
|
},
|
||||||
|
"category": "security",
|
||||||
|
"source": "./external_plugins/autofix-bot",
|
||||||
|
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/autofix-bot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "stagehand",
|
||||||
|
"description": "Browser automation skill for Claude Code using Stagehand. Automate web interactions, extract data, and navigate websites using natural language.",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"author": {
|
||||||
|
"name": "Browserbase"
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"source": "github",
|
||||||
|
"repo": "browserbase/agent-browse"
|
||||||
|
},
|
||||||
|
"category": "automation",
|
||||||
|
"keywords": [
|
||||||
|
"browser",
|
||||||
|
"automation",
|
||||||
|
"stagehand",
|
||||||
|
"web-scraping"
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/browserbase/agent-browse",
|
||||||
|
"strict": false,
|
||||||
|
"skills": [
|
||||||
|
"./.claude/skills/browser-automation"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "atomic-agents",
|
||||||
|
"description": "Comprehensive development workflow for building AI agents with the Atomic Agents framework. Includes specialized agents for schema design, architecture planning, code review, and tool development. Features guided workflows, progressive-disclosure skills, and best practice validation.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/BrainBlend-AI/atomic-agents.git",
|
||||||
|
"path": "claude-plugin/atomic-agents"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/BrainBlend-AI/atomic-agents",
|
||||||
|
"tags": [
|
||||||
|
"community-managed"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "microsoft-docs",
|
||||||
|
"description": "Access official Microsoft documentation, API references, and code samples for Azure, .NET, Windows, and more.",
|
||||||
|
"category": "development",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/MicrosoftDocs/mcp.git"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/microsoftdocs/mcp"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "neon",
|
||||||
|
"description": "Manage your Neon projects and databases with the neon-postgres agent skill and the Neon MCP Server.",
|
||||||
|
"category": "database",
|
||||||
|
"source": {
|
||||||
|
"source": "git-subdir",
|
||||||
|
"url": "neondatabase/agent-skills",
|
||||||
|
"path": "plugins/neon-postgres",
|
||||||
|
"ref": "main",
|
||||||
|
"sha": "54d7a9db2ddd476f84d5d1fd7bac323907858a8b"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/neondatabase/agent-skills/tree/main/plugins/neon-postgres"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "intercom",
|
||||||
|
"description": "Intercom integration for Claude Code. Search conversations, analyze customer support patterns, look up contacts and companies, and install the Intercom Messenger. Connect your Intercom workspace to get real-time insights from customer data.",
|
||||||
|
"category": "productivity",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/intercom/claude-plugin-external.git",
|
||||||
|
"sha": "eeef353eead2e3dc5f33f64dbaae54e1309e0d45"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/intercom/claude-plugin-external"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "data-engineering",
|
||||||
|
"description": "Data engineering plugin - warehouse exploration, pipeline authoring, Airflow integration",
|
||||||
|
"source": {
|
||||||
|
"source": "url",
|
||||||
|
"url": "https://github.com/astronomer/agents.git",
|
||||||
|
"sha": "85d6053b1e21724f9cefb1e3f5219bd54fc77224"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/astronomer/agents"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ A curated directory of high-quality plugins for Claude Code.
|
|||||||
|
|
||||||
Plugins can be installed directly from this marketplace via Claude Code's plugin system.
|
Plugins can be installed directly from this marketplace via Claude Code's plugin system.
|
||||||
|
|
||||||
To install, run `/plugin install {plugin-name}@claude-plugin-directory`
|
To install, run `/plugin install {plugin-name}@claude-plugins-official`
|
||||||
|
|
||||||
or browse for the plugin in `/plugin > Discover`
|
or browse for the plugin in `/plugin > Discover`
|
||||||
|
|
||||||
|
|||||||
8
plugins/plugin-dev/.claude-plugin/plugin.json
Normal file
8
plugins/plugin-dev/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"name": "plugin-dev",
|
||||||
|
"description": "Plugin development toolkit with skills for creating agents, commands, hooks, MCP integrations, and comprehensive plugin structure guidance",
|
||||||
|
"author": {
|
||||||
|
"name": "Anthropic",
|
||||||
|
"email": "support@anthropic.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -169,6 +169,24 @@ Keep trying until success. The loop handles retry logic automatically.
|
|||||||
- One $50k contract completed for $297 in API costs
|
- One $50k contract completed for $297 in API costs
|
||||||
- Created entire programming language ("cursed") over 3 months using this approach
|
- Created entire programming language ("cursed") over 3 months using this approach
|
||||||
|
|
||||||
|
## Windows Compatibility
|
||||||
|
|
||||||
|
The stop hook uses a bash script that requires Git for Windows to run properly.
|
||||||
|
|
||||||
|
**Issue**: On Windows, the `bash` command may resolve to WSL bash (often misconfigured) instead of Git Bash, causing the hook to fail with errors like:
|
||||||
|
- `wsl: Unknown key 'automount.crossDistro'`
|
||||||
|
- `execvpe(/bin/bash) failed: No such file or directory`
|
||||||
|
|
||||||
|
**Workaround**: Edit the cached plugin's `hooks/hooks.json` to use Git Bash explicitly:
|
||||||
|
|
||||||
|
```json
|
||||||
|
"command": "\"C:/Program Files/Git/bin/bash.exe\" ${CLAUDE_PLUGIN_ROOT}/hooks/stop-hook.sh"
|
||||||
|
```
|
||||||
|
|
||||||
|
**Location**: `~/.claude/plugins/cache/claude-plugins-official/ralph-wiggum/<hash>/hooks/hooks.json`
|
||||||
|
|
||||||
|
**Note**: Use `Git/bin/bash.exe` (the wrapper with proper PATH), not `Git/usr/bin/bash.exe` (raw MinGW bash without utilities in PATH).
|
||||||
|
|
||||||
## Learn More
|
## Learn More
|
||||||
|
|
||||||
- Original technique: https://ghuntley.com/ralph/
|
- Original technique: https://ghuntley.com/ralph/
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ HELP_EOF
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Join all prompt parts with spaces
|
# Join all prompt parts with spaces
|
||||||
PROMPT="${PROMPT_PARTS[*]}"
|
PROMPT="${PROMPT_PARTS[*]:-}"
|
||||||
|
|
||||||
# Validate prompt is non-empty
|
# Validate prompt is non-empty
|
||||||
if [[ -z "$PROMPT" ]]; then
|
if [[ -z "$PROMPT" ]]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user