Back to Discover

vibe-tools

skill

vcode-sh

Claude Code plugin marketplace. Vibe tools for vibe coders.

View on GitHub
19 starsSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add vcode-sh/vibe-tools

README

Vibe Tools

A Claude Code plugin marketplace for people who'd rather vibe than grind. Built by Vibe Code - we automate the boring stuff so you can focus on the creative stuff. Or coffee. Probably coffee.

Quick Start

# Add the marketplace (one time thing, we promise)
/plugin marketplace add vcode-sh/vibe-tools

# Install what you need
/plugin install greenshift-blocks@vibe-tools
/plugin install skill-maker@vibe-tools
/plugin install base-ui-guide@vibe-tools
/plugin install shadcn-guide@vibe-tools
/plugin install hono-guide@vibe-tools
/plugin install orpc-guide@vibe-tools
/plugin install tanstack-hotkeys-guide@vibe-tools
/plugin install tanstack-router-guide@vibe-tools
/plugin install tanstack-start-guide@vibe-tools

That's it. No npm install, no dependency hell, no "works on my machine" moments.

Available Plugins

PluginWhat it doesVibe level
greenshift-blocksWordPress Gutenberg blocks that actually workMaximum
skill-makerCreate, review & package Anthropic Agent SkillsOver 9000

Skill Guides

Library-specific guides that teach Claude how to use frameworks correctly. Install one and Claude instantly knows the API, patterns, and best practices.

/plugin install base-ui-guide@vibe-tools
/plugin install shadcn-guide@vibe-tools
/plugin install hono-guide@vibe-tools
/plugin install orpc-guide@vibe-tools
/plugin install tanstack-hotkeys-guide@vibe-tools
/plugin install tanstack-router-guide@vibe-tools
/plugin install tanstack-start-guide@vibe-tools
GuideLibraryWhat Claude learns
base-ui-guideBase UI (@base-ui/react)35+ unstyled headless components, styling patterns, animations, composition
shadcn-guideshadcn/ui (shadcn)58+ components, theming, registry system, form patterns, dark mode
hono-guideHono (hono)Routing, middleware, RPC client, multi-runtime deployment, streaming/SSE
orpc-guideoRPC (@orpc/*)Type-safe APIs, OpenAPI generation, 20+ framework adapters, streaming
tanstack-hotkeys-guideTanStack Hotkeys (@tanstack/react-hotkeys)Keyboard shortcuts, sequences, recording, cross-platform Mod keys
tanstack-router-guideTanStack Router (@tanstack/react-router)File-based routing, search params, data loading, code splitting, SSR
tanstack-start-guideTanStack Start (@tanstack/react-start)Full-stack React, server functions, middleware, SSR/streaming, deploy anywhere

More guides are added over time as skills get packaged in vibe-skills.


greenshift-blocks

Generate production-ready WordPress Gutenberg blocks using Greenshift/GreenLight. Because manually writing JSON-in-HTML-comments is a special kind of torture we don't wish on anyone.

What you get:

  • Full sections and pages in seconds
  • Responsive layouts (yes, mobile too)
  • Animations that don't look like 2010 jQuery
  • CSS variables because we're civilized
  • Copy-paste ready code (finally, copy-paste done right)

Commands:

CommandDoes the thing
/gs:sectionSections. Shocking, right?
/gs:heroHero sections with that chef's kiss
/gs:columns2-4 column layouts
/gs:elementIndividual elements
/gs:galleryImage galleries
/gs:cardCard components
/gs:pageEntire pages. Yes, really.
/gs:accordionFAQ/collapsible sections
/gs:tabsTabbed interfaces
/gs:counterAnimated number counters
/gs:countdownCountdown timers
/gs:tableResponsive tables
/gs:videoVideos (native, YouTube, Vimeo, lightbox)
/gs:cloneScreenshot to Greenshift blocks

Full docs for the curious.


skill-maker

Create, review, test, and package Anthropic Agent Skills for Claude.ai and Claude Code. Because writing YAML frontmatter by hand and hoping Claude triggers your skill is not a vibe.

What you get:

  • Create skills from docs folders or project codebases automatically
  • Interactive wizard, quick generation, or 8 ready-made templates
  • Quality auditing with auto-fix — no more "why won't it trigger?"
  • Trigger testing so you know it actually works before shipping
  • Package for Claude.ai (zip) or Claude Code (plugin scaffold)

Commands:

CommandDoes the thing
/sm:from-docsPoint it at a docs folder, get a skill back
/sm:from-projectScan your codebase, extract patterns into a skill
/sm:learnBeginner tutorial — build your first skill hands-on
/sm:createInteractive wizard for guided creation
/sm:quickDescribe it, get it. No questions asked.
/sm:template8 pre-built templates for every skill category
/sm:reviewFull quality audit with scoring
/sm:testGenerate trigger, functional, and perf tests
/sm:fixAuto-fix issues found in review
/sm:improveIterative improvement from real-world feedback
/sm:validateQuick pass/fail structural check
/sm:packagePackage for Claude.ai or Claude Code distribution
/sm:docsInteractive reference — 15 topics with examples

Full docs for the curious.


Structure

vibe-tools/
├── .claude-plugin/
│   └── marketplace.json         # The brain
├── plugins/                     # Rich plugins (commands, agents, skills)
│   ├── greenshift-blocks/       # WordPress block generator
│   │   ├── commands/            # /gs:* magic (14 commands)
│   │   ├── agents/              # greenshift-builder
│   │   └── skills/              # Block knowledge + docs + templates
│   └── skill-maker/             # Skill creation toolkit
│       ├── commands/            # /sm:* magic (13 commands)
│       ├── agents/              # skill-builder
│       └── skills/              # Skill-making knowledge + templates + references
├── skills/                      # Skill guide plugins (auto-synced)
│   ├── base-ui-guide/           # Base UI components
│   ├── hono-guide/              # Hono web framework
│   ├── orpc-guide/              # oRPC type-safe APIs
│   ├── shadcn-guide/            # shadcn/ui components
│   ├── tanstack-hotkeys-guide/  # TanStack keyboard shortcuts
│   ├── tanstack-router-guide/  # TanStack Router file-based routing
│   └── tanstack-start-guide/   # TanStack Start full-stack React
├── scripts/
│   └── import-skills.sh         # Sync skills from vibe-skills
└── README.md                    # You are here

Contributing

Got a plugin idea? Found a bug? Want to argue about tabs vs spaces?

PRs welcome. Issues tolerated. Memes appreciated.

Author

Vibe Code@vcode_sh

Building tools for developers who value their time. And sanity.

License

MIT — Do whatever you want. I'm not your parent.


Built with Claude Code, caffeine, and questionable life choices.

Rendered live from vcode-sh/vibe-tools's GitHub README — not stored, always reflects the source repo.

9 Plugins

NameDescriptionCategorySource
greenshift-blocksGenerate WordPress Gutenberg blocks using Greenshift/GreenLight plugin. Create sections, layouts, hero sections, galleries, complete pages, and migrate old blocks to modern GreenLight Element format.wordpress./plugins/greenshift-blocks
skill-makerCreate skills from documentation folders and project codebases. Review, test, and package Anthropic Agent Skills for Claude.ai and Claude Code. 13 commands including from-docs, from-project, beginner tutorial, templates, quality auditing, and distribution packaging.developer-tools./plugins/skill-maker
base-ui-guideBuild accessible React UIs with Base UI (@base-ui/react). Covers all 35+ unstyled, headless components (Dialog, Menu, Select, Combobox, Tabs, Accordion, Toast, Form, Slider, etc.), styling patterns (Tailwind, CSS Modules, CSS-in-JS), animations, composition via render props, form integration, and TypeScript types.skill-guide./skills/base-ui-guide
shadcn-guideBuild React UIs with shadcn/ui — the open-code component system. Covers 58+ components (Base UI and Radix variants), CLI commands, components.json configuration, CSS variable theming (OKLCH), framework installation (Next.js, Vite, Astro, Remix, Laravel, Gatsby, TanStack), registry system, form patterns (React Hook Form, TanStack Form, Server Actions), dark mode, RTL, and monorepo setup.skill-guide./skills/shadcn-guide
hono-guideBuild ultrafast web APIs and apps with Hono across any JavaScript runtime. Covers routing, Context API, 25+ built-in middleware (auth, CORS, caching, security), type-safe RPC client, Zod/Standard Schema validation, JSX rendering, streaming/SSE, WebSocket, cookie/JWT helpers, testing patterns, and deployment to Cloudflare Workers, Bun, Deno, Node.js, AWS Lambda, Vercel, Netlify, and more.skill-guide./skills/hono-guide
orpc-guideBuild type-safe APIs with oRPC — end-to-end type safety meets OpenAPI compliance. Covers procedures, routers, middleware, context, error handling, file uploads, SSE/streaming, server actions, contract-first development, OpenAPI spec generation, and 20+ framework adapters (Next.js, Express, Hono, Fastify, WebSocket, Electron, Cloudflare Workers, and more). Includes TanStack Query, SWR, Better Auth, AI SDK, and Sentry integrations.skill-guide./skills/orpc-guide
tanstack-hotkeys-guideAdd type-safe keyboard shortcuts to React apps with TanStack Hotkeys. Covers hotkey registration, cross-platform Mod shortcuts, Vim-style multi-key sequences, hotkey recording for customization UIs, real-time key state tracking, platform-aware display formatting, and devtools integration.skill-guide./skills/tanstack-hotkeys-guide
tanstack-router-guideBuild type-safe, file-based routing for React with TanStack Router. Covers first-class search param APIs with Zod/Valibot/ArkType validation, built-in data loading with SWR caching, automatic code splitting, 100% inferred TypeScript types, authentication with route protection, SSR streaming and dehydration, route masking, URL rewrites, view transitions, document head management, scroll restoration, and bundler configuration for Vite, Webpack, Rspack, and esbuild.skill-guide./skills/tanstack-router-guide
tanstack-start-guideBuild full-stack React apps with TanStack Start — type-safe server functions, composable middleware (client + server), SSR/streaming, server routes, sessions, authentication, and deploy anywhere. Covers createServerFn, createMiddleware, createStart, file-based routing, search param validation, data loading with TanStack Query, selective SSR per route, static prerendering (SSG), ISR, SPA mode, CDN asset URLs, SEO/LLMO optimization, Sentry/New Relic/OpenTelemetry observability, and deployment to Cloudflare Workers, Netlify, Railway, Vercel, Node.js/Docker, Bun, and Appwrite Sites.skill-guide./skills/tanstack-start-guide

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.