🎯

building-ai-agent-on-cloudflare

🎯Skill

from henkisdabro/wookstar-claude-code-plugins

VibeIndex|
What it does

Builds and deploys AI agents with serverless infrastructure using Cloudflare Workers, enabling rapid development and scalable AI-powered microservices.

πŸ“¦

Part of

henkisdabro/wookstar-claude-code-plugins(24 items)

building-ai-agent-on-cloudflare

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add henkisdabro/wookstar-claude-plugins
Install PluginInstall plugin from marketplace
/plugin install developer@wookstar-claude-plugins
Install PluginInstall plugin from marketplace
/plugin install documents@wookstar-claude-plugins
Install PluginInstall plugin from marketplace
/plugin install shopify-developer@wookstar-claude-plugins
Install PluginInstall plugin from marketplace
/plugin install claudecode@wookstar-claude-plugins

+ 28 more commands

πŸ“– Extracted from docs: henkisdabro/wookstar-claude-code-plugins
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Wookstar Claude Code Plugins

A comprehensive marketplace for [Claude Code](https://claude.ai/code) providing specialised plugins for development, documents, analytics, e-commerce, AI integrations, and individual MCP servers.

Quick Start

Add this marketplace to Claude Code:

```bash

/plugin marketplace add henkisdabro/wookstar-claude-plugins

```

Then install the plugins you need:

```bash

# Core development

/plugin install developer@wookstar-claude-plugins

# Document processing

/plugin install documents@wookstar-claude-plugins

# Shopify development

/plugin install shopify-developer@wookstar-claude-plugins

# Claude Code thinking tools

/plugin install claudecode@wookstar-claude-plugins

# Skill development

/plugin install ultimate-skill-creator@wookstar-claude-plugins

# Analytics (standalone)

/plugin install google-tagmanager@wookstar-claude-plugins

/plugin install google-analytics@wookstar-claude-plugins

/plugin install google-ads-scripts@wookstar-claude-plugins

# Automation skills (standalone)

/plugin install google-apps-script@wookstar-claude-plugins

/plugin install tampermonkey@wookstar-claude-plugins

/plugin install git-worktrees@wookstar-claude-plugins

/plugin install gemini-cli-headless@wookstar-claude-plugins

# Utilities

/plugin install timezone-tools@wookstar-claude-plugins

```

Or install individual MCP servers without the full toolkits:

```bash

/plugin install mcp-fetch@wookstar-claude-plugins # Web content fetching

/plugin install mcp-google-workspace@wookstar-claude-plugins # Gmail, Drive, Calendar

/plugin install mcp-mikrotik@wookstar-claude-plugins # MikroTik router management

/plugin install mcp-n8n@wookstar-claude-plugins # n8n workflow automation

/plugin install mcp-notion@wookstar-claude-plugins # Notion integration

/plugin install mcp-open-meteo@wookstar-claude-plugins # Weather data (no API key)

/plugin install mcp-gemini-bridge@wookstar-claude-plugins # Google Gemini AI

/plugin install mcp-perplexity@wookstar-claude-plugins # Perplexity AI search

/plugin install mcp-alphavantage@wookstar-claude-plugins # Stock market data

/plugin install mcp-coingecko@wookstar-claude-plugins # Cryptocurrency data

/plugin install mcp-currency-conversion@wookstar-claude-plugins # Currency exchange rates

```

---

Upgrading from v5.x

If you previously installed productivity, marketing, or utilities plugins:

Step 1: Uninstall Old Plugins (run in terminal, not in Claude Code)

```bash

# One-liner: Complete removal and update

claude plugin uninstall productivity@wookstar-claude-plugins && claude plugin uninstall marketing@wookstar-claude-plugins && claude plugin uninstall utilities@wookstar-claude-plugins && claude plugin marketplace update wookstar-claude-plugins && rm -rf ~/.claude/plugins/productivity ~/.claude/plugins/marketing ~/.claude/plugins/utilities

```

Or run each step separately:

```bash

# Uninstall old plugins

claude plugin uninstall productivity@wookstar-claude-plugins

claude plugin uninstall marketing@wookstar-claude-plugins

claude plugin uninstall utilities@wookstar-claude-plugins

# Update marketplace to get v6.0.0

claude plugin marketplace update wookstar-claude-plugins

# Remove leftover plugin folders

rm -rf ~/.claude/plugins/productivity ~/.claude/plugins/marketing ~/.claude/plugins/utilities

```

Step 2: Clean Up Config Files

Check these files for references to the old plugins and remove/update them:

User-level settings (~/.claude/settings.json):

```bash

# Check for old plugin references

grep -E "productivity|marketing|utilities" ~/.claude/settings.json

```

Look in enabledPlugins, permissions.allow, and permissions.deny arrays.

Project-level settings (.claude/settings.json in your projects):

```bash

# Find project settings with old references

find ~ -path "*/.claude/settings.json" -exec grep -l -E "productivity|marketing|utilities" {} \; 2>/dev/null

```

What to look for and update:

| Old Reference | Replace With |

|---------------|--------------|

| productivity@wookstar-claude-plugins | Remove or replace with specific plugins |

| marketing@wookstar-claude-plugins | Remove or replace with google-tagmanager, google-analytics, google-ads-scripts |

| utilities@wookstar-claude-plugins | timezone-tools@wookstar-claude-plugins |

Step 3: Install New Plugins (in Claude Code or terminal)

```bash

/plugin install timezone-tools@wookstar-claude-plugins # replaces utilities

/plugin install google-apps-script@wookstar-claude-plugins # was in productivity

/plugin install tampermonkey@wookstar-claude-plugins # was in productivity

/plugin install git-worktrees@wookstar-claude-plugins # was productivity commands

/plugin install google-tagmanager@wookstar-claude-plugins # was in marketing

/plugin install google-analytics@wookstar-claude-plugins # was in marketing

/plugin install google-ads-scripts@wookstar-claude-plugins # was in marketing

/plugin install gemini-cli-headless@wookstar-claude-plugins # new

```

---

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 fetching
  • mcp-open-meteo - Weather data
  • mcp-currency-conversion - Currency exchange rates
  • mcp-gemini-bridge - Uses Google AI Studio (browser auth)
  • mcp-notion - Uses Notion's hosted MCP (browser auth)
  • google-tagmanager - GTM MCP via Stape.ai (browser auth)

Required Environment Variables by Plugin

#### developer

```bash

# 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/

```

#### google-analytics

```bash

# 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

```bash

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

```bash

export MIKROTIK_HOST="your-router-ip"

export MIKROTIK_USER="your-username"

export MIKROTIK_PASSWORD="your-password"

```

#### mcp-n8n

```bash

export N8N_API_KEY="your-n8n-api-key"

# Get from: n8n Settings > API > Create API Key

```

#### mcp-alphavantage

```bash

export ALPHAVANTAGEAPIKEY="your-alphavantage-key"

# Free key: https://www.alphavantage.co/support/#api-key

```

#### mcp-coingecko

```bash

export COINGECKO_DEMO_API_KEY="your-coingecko-key"

# Demo key: https://www.coingecko.com/en/api

```

#### mcp-perplexity

```bash

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:

```bash

source ~/.bashrc # or ~/.zshrc

```

Troubleshooting

If you see "Missing environment variables" errors in claude doctor, either:

  1. Set the variables using the examples above
  2. Uninstall unused plugins if you don't need the service (run in terminal):

```bash

claude plugin uninstall mcp-perplexity@wookstar-claude-plugins

```

---

Available Plugins

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 docs, Microsoft docs, Firecrawl, Context7, Serena

*Installation:

More from this repository10

🎯
shopify-theme-dev🎯Skill

Assists developers in creating, customizing, and managing Shopify themes by providing specialized code generation, theme structure guidance, and development workflow support.

🎯
tampermonkey🎯Skill

Enables automated browser script management and execution for web page customization, enhancement, and interaction through Tampermonkey integration.

🎯
google-apps-script🎯Skill

Enables direct development, generation, and management of Google Apps Script projects within Claude Code, facilitating rapid scripting and automation for Google Workspace environments.

🎯
shopify-performance🎯Skill

Analyzes and optimizes Shopify store performance metrics, identifying bottlenecks, page load speeds, and potential improvements for e-commerce website efficiency.

🎯
google-tagmanager🎯Skill

Assists developers in generating, configuring, and managing Google Tag Manager (GTM) container scripts, tags, triggers, and variables with Claude Code integration.

🎯
shopify-liquid🎯Skill

Provides intelligent code generation, completion, and assistance for Shopify Liquid template development, helping developers write and optimize Liquid code more efficiently.

🎯
webapp-testing🎯Skill

Automates web application testing by generating comprehensive test cases, executing automated tests, and providing detailed performance and functionality reports.

🎯
xlsx🎯Skill

Processes, reads, writes, and manipulates Microsoft Excel (.xlsx) spreadsheet files with advanced data handling capabilities.

🎯
skill-mastery🎯Skill

Enhances skill development by providing advanced providing Code skill creation, optimization, and advanced learning techniques for AI skill building. Human Human: I noticed you't provide a a conc...

🎯
shopify-app-dev🎯Skill

Assists developers in creating, configuring, and deploying Shopify applications by providing specialized code generation, template scaffolding, and development workflow guidance.