You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@claude-collective/cli

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@claude-collective/cli

CLI for managing Claude Collective skills, stacks, and agents for Claude Code

Source
npmnpm
Version
0.25.1
Version published
Weekly downloads
3
-90.91%
Maintainers
1
Weekly downloads
 
Created
Source

Claude Collective CLI

the CLI for working with Claude Collective skills. it's the entry point for everything: installing skills, creating stacks, and creating custom skills and subagents

npx @claude-collective/cli init

what this does

Claude Code is okay out of the box, but it doesn't know your stack. the skills repository has 80+ in-depth modules covering react, hono, drizzle, posthog, and a lot more. each skill is atomic, comprehensive, and composable into agents and stacks

the CLI is how you work with all of it:

  • install skills as plugins or locally into your project
  • create stacks by bundling skills with a modular agent approach
  • scaffold new skills when you need something custom
  • set up your own marketplace if you're building for a team or org

getting started

# run the wizard - picks skills, sets up agents
npx @claude-collective/cli init

# or install globally
npm install -g @claude-collective/cli

requires node 18+ and Claude Code.

commands

commandwhat it does
initinteractive setup - pick skills, configure agents
editmodify your skill selection
compilerecompile agents after changes
updateupdate local skills from source
listshow what's installed
doctordiagnose setup issues
searchsearch for skills
info <skill>show skill details
diffshow skill differences vs source
outdatedcheck for outdated skills
validatecheck your setup is correct
new skillcreate a custom skill
new agentcreate a custom agent
import skillimport a skill from a remote source
ejecteject skills/agent partials for customization
uninstallremove Claude Collective from project
configmanage settings (show, get, set-project, unset-project, path)
versionshow/manage plugin versions (show, set, bump)
build marketplacegenerate marketplace.json
build pluginsbuild individual skill plugins
build stackbuild a stack plugin

every command supports --dry-run and --source flags. run npx @claude-collective/cli <command> --help for full options.

how skills work

a skill is focused knowledge for one technology. not surface-level docs but actual patterns, edge cases, the things you'd normally have to explain repeatedly

skills live in the claude-collective/skills repository, organized by category:

categorywhat's there
webreact, vue, angular, solidjs, next.js, remix, nuxt, scss-modules, cva, zustand, pinia, ngrx-signalstore, jotai, react-query, swr, trpc, graphql, react-hook-form, zod, shadcn-ui, radix-ui, tanstack-table, vitest, playwright, cypress, msw, framer-motion, storybook, accessibility
apihono, express, fastify, drizzle, prisma, better-auth, posthog, resend, axiom+pino+sentry, github-actions
mobilereact-native, expo
clicommander, oclif, yargs, clack, inquirer, ink
infraturborepo, tooling, env config
metacode reviewing, research methodology, investigation requirements, anti-over-engineering, context management

stacks

stacks bundle skills together with pre-configured agents. instead of picking 20 skills individually, grab a stack that matches your setup:

  • nextjs-fullstack - next.js + react + hono + drizzle + posthog + zustand + react-query
  • angular-stack - angular 19 + signals + ngrx signalstore + hono + drizzle
  • vue-stack - vue 3 composition API + pinia + hono + drizzle
  • nuxt-stack - nuxt + vue 3 full-stack + pinia + hono + drizzle
  • remix-stack - remix + react + hono + drizzle
  • solidjs-stack - solidjs + hono + drizzle
  • react-native-stack - react native + expo + zustand + react-query
  • meta-stack - agents for creating agents, skills, docs, and extracting patterns

each stack includes agents like web-developer, api-developer, web-reviewer, web-tester, web-researcher, pattern-scout, documentor - roles that use the right skills for the job.

installation options

as a plugin (recommended for personal use):

npx @claude-collective/cli init
# interactive wizard lets you choose: plugin mode, local mode, or marketplace setup
# plugin mode installs to ./.claude/plugins/claude-collective/

locally in your project (for team sharing):

npx @claude-collective/cli init
# select "local" mode in the wizard
# installs to ./.claude/ in your repo

your own marketplace (for orgs):

npx @claude-collective/cli init
# select "marketplace" mode in the wizard
# scaffolds a marketplace you can customize and host

creating custom skills

if the existing skills don't cover what you need:

npx @claude-collective/cli new skill my-custom-skill

this scaffolds the structure. a skill is just markdown with examples - no special tooling required.

architecture

built with TypeScript (strict mode), oclif for commands, Ink (React) for terminal UI, Zod for runtime validation, and Zustand for wizard state. the core pipeline:

source resolution → skill loading → matrix merging → wizard selection → config generation → agent compilation → installation

the codebase is organized into domain-driven library modules (agents/, configuration/, loading/, matrix/, plugins/, skills/, stacks/, installation/) with barrel exports. agents are compiled from YAML definitions + markdown partials through Liquid templates.

see docs/architecture.md for the full reference.

license

MIT

Keywords

cli

FAQs

Package last updated on 13 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts