Custom Claude Code plugins by Scott Weinstein
npx claudepluginhub scottweinstein/cc-pluginsComprehensive feature development workflow with mandatory AskUserQuestion tool usage and specialized agents for codebase exploration, architecture design, and quality review
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
A Claude Code plugin marketplace containing custom plugins that extend Claude Code's capabilities.
A comprehensive 7-phase feature development workflow plugin that guides you through:
code-explorer agentscode-architect agentscode-reviewer agents check for bugs and conventionsDev server and Inngest management CLI for multi-worktree projects:
Install plugins directly from the marketplace:
claude plugins:add https://github.com/ScottWeinstein/cc-plugins
This gives you access to all plugins in the marketplace.
Install from a GitHub release (no npm publish required):
# Install a specific version
pnpm add https://github.com/ScottWeinstein/cc-plugins/releases/download/v0.1.0/wt-dev.tgz
pnpm install
pnpm build
| Script | Description |
|---|---|
pnpm build | Build all packages |
pnpm typecheck | Type check all TypeScript |
pnpm lint | Run ESLint |
pnpm format | Format code with Prettier |
pnpm format:check | Check code formatting |
pnpm check | Run all checks (format, lint, typecheck) |
pnpm release | Cut a new release |
cc-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── .github/workflows/
│ ├── ci.yml # CI checks on push/PR
│ └── release.yml # Release workflow on tags
├── plugins/
│ ├── sw-feature-dev/ # Feature development plugin (markdown-only)
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── commands/
│ │ │ └── feature-dev.md
│ │ └── agents/
│ │ ├── code-explorer.md
│ │ ├── code-architect.md
│ │ └── code-reviewer.md
│ └── wt-dev/ # Dev server CLI plugin (TypeScript)
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── src/
│ ├── skills/
│ └── package.json
├── scripts/
│ └── release.js # Release automation script
├── package.json # Workspace root
├── pnpm-workspace.yaml
└── CLAUDE.md # Claude Code guidelines
This monorepo uses unified versioning - all packages share the same version number. When a release is created, both the root package.json and plugins/wt-dev/package.json are updated to the same version.
This approach:
plugins/<plugin-name>/.claude-plugin/plugin.json with metadataREADME.md with documentationcommands/*.md with YAML frontmatteragents/*.md with YAML frontmatter.claude-plugin/marketplace.jsonFor TypeScript plugins:
package.json with build scriptstsconfig.json extending root configpnpm-workspace.yaml to include the packageReleases are done via GitHub Actions to avoid direct commits to main.
pnpm release # Bump patch: 0.1.1 → 0.1.2
pnpm release --minor # Bump minor: 0.1.1 → 0.2.0
pnpm release --major # Bump major: 0.1.1 → 1.0.0
pnpm release --dry-run # Preview without triggering
The release workflow will:
package.json filesmainRequires GitHub CLI (gh) to be installed and authenticated.
MIT