Claude Code plugin for RedwoodSDK development on Cloudflare Workers
npx claudepluginhub softee-p/redwoodsdk-toolkitComprehensive RedwoodSDK development toolkit for Claude Code. Provides skills for building full-stack React Server Component applications on Cloudflare Workers — covering documentation lookup, frontend development, component management, production auditing, and documentation maintenance.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
A Claude Code plugin for building full-stack apps with RedwoodSDK — React Server Components on Cloudflare Workers.
Option 1 — Command:
/plugin install https://github.com/softee-p/redwoodSDK-toolkit
Option 2 — UI: Run /plugins in Claude Code, go to Add → Marketplace, and paste the GitHub URL.
This installs the rwsdk plugin: 6 slash commands + 5 skills.
Skills auto-load based on what you're working on — no invocation needed. When you ask about routing, styling, components, or production issues, the relevant skill activates and gives Claude the documentation and workflows to answer correctly.
Slash Commands are explicit multi-step workflows (/rwsdk:new, /rwsdk:audit, etc.) that you invoke when you want a structured task executed from start to finish.
rwsdk-docs — Documentation ReferenceFull official RedwoodSDK docs (50+ .mdx files) covering routing, RSC, auth, storage, email, queues, cron, env vars, hosting, and all frontend guides. Also tracks a CHANGELOG.md of breaking changes for automatic migration when opening older projects.
Triggers on: defineApp, route(), serverQuery, serverAction, "use server", wrangler.jsonc, D1, Durable Objects, Cloudflare Workers, RSC hydration — plus any question about routing, middleware, deployment, or Cloudflare + React full-stack development.
rwsdk-frontend — Visual Frontend DebuggingA 4-phase workflow that enforces seeing the running app before making CSS changes.
rwsdk-docs for RSC styling constraintsTriggers on: "fix layout", "mobile looks broken", "Tailwind not working", "UI is off", responsive design issues, dark mode problems.
rwsdk-shadcn-update — shadcn/ui Component ManagementAdds or updates shadcn/ui components while preserving customizations and enforcing RSC compliance.
rwsdk-docscomponents.json, classifies each component as custom (skip), modified (backup first), or standard (safe to overwrite)Includes scripts: backup-components.sh, restore-components.sh, safe-update.sh.
Triggers on: "add a shadcn component", "update shadcn", "install shadcn", Radix UI issues, "use client" questions for interactive components.
rwsdk-audit-deployed — Production AuditA 6-phase audit via the cloudflare-observability MCP, producing a HEALTHY / DEGRADED / CRITICAL report.
wrangler.jsonc, lists workersrwsdk-docsThresholds: error rate >2% = warning / >5% = critical; P99 >3s / >5s.
Triggers on: "audit my deployed app", "check production errors", "is my worker healthy", post-deployment verification.
update-rwsdk-docs — Documentation SyncShallow-clones the official redwoodjs/sdk repo, copies the latest docs into skills/rwsdk-docs/references/, then rebuilds the SKILL.md index to match.
Triggers on: "update the docs", "refresh rwsdk docs", "docs seem outdated".
| Command | What it does |
|---|---|
/rwsdk:new <what-to-create> | Scaffold a new project or add a route/page/component |
/rwsdk:fix <issue> | 4-phase visual frontend debugging |
/rwsdk:components [names...] | Add or update shadcn/ui components safely |
/rwsdk:audit [worker-name] | 6-phase production health audit |
/rwsdk:docs <topic> | Look up a specific documentation topic |
/rwsdk:sync | Sync rwsdk-docs with the latest official docs |
| What you type | Skill that loads |
|---|---|
| "How do I add middleware to my route?" | rwsdk-docs |
| "My mobile layout is broken" | rwsdk-frontend |
| "Add a shadcn Dialog component" | rwsdk-shadcn-update |
| "Is my worker healthy after the deploy?" | rwsdk-audit-deployed |
| "The docs seem outdated, refresh them" | update-rwsdk-docs |