henkisdabro/wookstar-claude-code-plugins
An opinionated plugin pack for Claude Code. Skills, Commands, Hooks, MCPs organised in thematic "bundles" to cover productivity, development, Google Analytics & Google Tag Manager, Shopify and a few other bits
npx skills add henkisdabro/wookstar-claude-code-pluginsREADME
Wookstar Claude Code Plugins
A comprehensive marketplace for Claude Code providing specialised toolkits for productivity, development, documents, marketing analytics, e-commerce, and AI integrations - featuring consolidated GTM, GA4, and Shopify skills.
Quick Start
Add this marketplace to Claude Code:
/plugin marketplace add henkisdabro/wookstar-claude-plugins
Then install the toolkits you need:
# For productivity and planning
/plugin install productivity@wookstar
# For full-stack development
/plugin install developer@wookstar
# For document processing
/plugin install documents@wookstar
# For marketing analytics (GTM + GA4 + Google Ads Scripts)
/plugin install marketing@wookstar
# For Shopify development
/plugin install shopify-developer@wookstar
# For Cloudflare AI agents and MCP servers (official)
/plugin install cloudflare-skills@wookstar
# For utility tools
/plugin install utilities@wookstar
Or install individual MCP servers without the full toolkits:
/plugin install mcp-fetch@wookstar # Web content fetching
/plugin install mcp-google-workspace@wookstar # Gmail, Drive, Calendar
/plugin install mcp-mikrotik@wookstar # MikroTik router management
/plugin install mcp-n8n@wookstar # n8n workflow automation
/plugin install mcp-notion@wookstar # Notion integration
/plugin install mcp-open-meteo@wookstar # Weather data (no API key)
/plugin install mcp-gemini-bridge@wookstar # Google Gemini AI
/plugin install mcp-perplexity@wookstar # Perplexity AI search
/plugin install mcp-alphavantage@wookstar # Stock market data
/plugin install mcp-coingecko@wookstar # Cryptocurrency data
/plugin install mcp-currency-conversion@wookstar # Currency exchange rates
Environment Variables
Many MCP-powered plugins require API keys or credentials. Set these in your shell profile (~/.bashrc or ~/.zshrc) or a .env file.
Plugins Without API Keys (Ready to Use)
These plugins work immediately without configuration:
mcp-fetch- Web content fetchingmcp-open-meteo- Weather datamcp-currency-conversion- Currency exchange ratesmcp-gemini-bridge- Uses Google AI Studio (browser auth)mcp-notion- Uses Notion's hosted MCP (browser auth)
Required Environment Variables by Plugin
developer
# Optional - only needed if using these MCP servers
export CONTEXT7_API_KEY="your-context7-key" # https://upstash.com/context7
export FIRECRAWL_API_KEY="your-firecrawl-key" # https://firecrawl.dev/
marketing
# Required for Analytics MCP server
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account.json"
export GOOGLE_PROJECT_ID="your-gcp-project-id"
# Get credentials: GCP Console → APIs & Services → Credentials → Service Account
mcp-google-workspace
export GOOGLE_OAUTH_CLIENT_ID="your-client-id"
export GOOGLE_OAUTH_CLIENT_SECRET="your-client-secret"
# Get credentials: GCP Console → APIs & Services → Credentials → OAuth 2.0 Client
mcp-mikrotik
export MIKROTIK_HOST="your-router-ip"
export MIKROTIK_USER="your-username"
export MIKROTIK_PASSWORD="your-password"
mcp-n8n
export N8N_API_KEY="your-n8n-api-key"
# Get from: n8n Settings → API → Create API Key
mcp-alphavantage
export ALPHAVANTAGEAPIKEY="your-alphavantage-key"
# Free key: https://www.alphavantage.co/support/#api-key
mcp-coingecko
export COINGECKO_DEMO_API_KEY="your-coingecko-key"
# Demo key: https://www.coingecko.com/en/api
mcp-perplexity
export PERPLEXITY_API_KEY="your-perplexity-key"
# Get from: https://www.perplexity.ai/settings/api
Applying Changes
After setting environment variables, restart your terminal or run:
source ~/.bashrc # or ~/.zshrc
Troubleshooting
If you see "Missing environment variables" errors in claude doctor, either:
- Set the variables using the examples above
- Uninstall unused plugins if you don't need the service:
/plugin uninstall mcp-perplexity@wookstar
Available Toolkits
Productivity
Workflow orchestration and automation
Includes:
- 4 commands: /planning, /prep-parallel, /execute-parallel, /primer
- 2 skills: google-apps-script (Workspace automation), tampermonkey (browser userscripts)
Installation:
/plugin install productivity@wookstar
Use Cases: Project planning, parallel task execution, Google Workspace automation, browser userscripts, page modification
Developer
Complete full-stack development suite
Includes:
- 3 agents: fullstack-developer, validation-gates, documentation-manager
- 3 commands: /containerize, /generate-prp, /execute-prp
- 5 skills: git-commit-helper, webapp-testing, devtools, prp-generator, fifteen-factor-app
- 7 MCP servers: Chrome DevTools, Playwright, Cloudflare d
...