npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ofelixdev/cc-kit

v2.0.0

Published

Claude Code knowledge base installer - agents, skills, workflows

Readme

cc-kit

CLI que instala uma knowledge base completa no Claude Code — agents, skills, workflows, hooks, rules e scripts de validacao.

Um comando e seu Claude Code ganha 20 agents especialistas, 108 skills, 11 workflows, 4 hooks de automacao, 6 rules contextuais e scripts Python de validacao. Tudo vai pra .claude/ do seu projeto.


O que e isso?

O Claude Code por padrao nao sabe nada sobre seu projeto. Ele e poderoso, mas generico.

O cc-kit resolve isso instalando uma base de conhecimento curada dentro do .claude/ — agents que funcionam como especialistas (backend, frontend, seguranca, mobile, etc), skills com patterns e boas praticas, workflows pra tarefas estruturadas, hooks que automatizam formatacao e protecao, rules que ativam automaticamente por contexto, e scripts Python pra validacao.

Basicamente: seu Claude Code vira um time de especialistas que age automaticamente.


Instalacao

npx @ofelixdev/cc-kit init

Ou global:

npm i -g @ofelixdev/cc-kit
cc-kit init

O que instala

.claude/
├── agents/              # 20 agents especialistas
├── skills/              # 108 skills (cc-kit + trailofbits + vercel + community)
├── workflows/           # 11 workflows estruturados
├── hooks/               # 4 hooks de automacao (format, protect, notify, compact)
├── rules/               # 6 rules (1 global + 5 path-conditional)
├── scripts/             # Scripts Python de validacao
├── settings.template.json → settings.json (criado na primeira instalacao)
├── ARCHITECTURE.md      # Indice completo da knowledge base
└── mcp_config.json      # Config MCP servers

CLAUDE.md                # Regras do projeto na raiz (criado se nao existir)

Comandos

cc-kit init

Baixa e instala a knowledge base no .claude/.

  • Merge inteligente: se .claude/ ja existe, faz merge — seu conteudo existente e preservado
  • Paths protegidos: settings.json, settings.local.json, plans/, memory/, projects/ nunca sao sobrescritos
  • CLAUDE.md da raiz so e criado se nao existir (use --force pra sobrescrever)
cc-kit init                        # Instala no diretorio atual
cc-kit init --force                # Sobrescreve tudo, incluindo CLAUDE.md da raiz
cc-kit init --path ./meu-projeto   # Instala em outro diretorio
cc-kit init --dry-run              # Mostra o que seria feito sem escrever nada
cc-kit init --quiet                # Sem output
cc-kit init --branch dev           # Baixa de uma branch especifica

cc-kit update

Re-baixa e sobrescreve a knowledge base (equivalente a init --force).

cc-kit update

cc-kit status

Mostra info da instalacao e contagem de arquivos.

cc-kit status

Principais Features

Sistema Autonomo de Agents

O CLAUDE.md instalado na raiz funciona como diretiva — o Claude Code automaticamente detecta o dominio da tarefa e carrega o agent + skills correspondentes. Sem precisar pedir nada.

| Dominio | Agent | Skills | |---|---|---| | Frontend, React, UI | frontend-specialist | frontend-design, react-best-practices, tailwind-patterns | | Backend, API, Node | backend-specialist | api-patterns, nodejs-best-practices | | Database, Schema | database-architect | database-design | | Seguranca, Auth | security-auditor | vulnerability-scanner, codeql, semgrep | | Testes, Coverage | test-engineer | testing-patterns, webapp-testing, coverage-analysis | | Debug, Bugs | debugger | systematic-debugging | | DevOps, Deploy | devops-engineer | deployment-procedures, devops, coolify | | Mobile | mobile-developer | mobile-design | | Games | game-developer | game-development | | Performance | performance-optimizer | performance-profiling | | SEO | seo-specialist | seo-fundamentals | | Novo projeto | orchestrator | app-builder, architecture |

Hooks de Automacao (4)

Hooks pre-configurados em settings.json:

| Hook | Evento | O que faz | |---|---|---| | auto-format.sh | Apos editar arquivos | Formata com prettier/eslint automaticamente | | protect-files.sh | Antes de editar | Bloqueia escrita em .env, secrets, credentials | | notify-done.sh | Ao terminar | Notificacao desktop (macOS/Linux) | | post-compact.sh | Apos compactacao | Re-injeta contexto do projeto |

Rules Path-Conditional (5)

Rules em .claude/rules/ que ativam automaticamente baseado no arquivo sendo editado:

| Rule | Ativa para | O que aplica | |---|---|---| | frontend.md | *.tsx, *.jsx, components/, pages/ | Acessibilidade, performance, component patterns | | backend.md | api/, services/, controllers/ | Input validation, error handling, seguranca | | testing.md | *.test.*, __tests__/ | Padrao AAA, isolamento, testes por comportamento | | security.md | auth/, middleware/, session* | Sem hardcoded secrets, hashing, CSRF, rate limiting | | database.md | prisma/, migrations/, models/ | Migrations, indexes, transactions, soft deletes |

Settings Template

Na primeira instalacao, cria um settings.json com:

  • Permissoes deny para .env e secrets
  • Hooks pre-configurados (format, protect, notify, compact)
  • Nunca sobrescreve se ja existir

Skills (108)

Por Fonte

| Fonte | Qtd | Foco | |---|---|---| | cc-kit | 36 | Full-stack development | | trailofbits/skills | 60 | Seguranca, fuzzing, auditoria | | vercel-labs | 2 | Web design, skill discovery | | obra/superpowers | 1 | Brainstorming colaborativo | | evolv3-ai/vibe-skills | 3 | Coolify, DevOps, cloud infra | | addyosmani/web-quality | 6 | Acessibilidade, performance, SEO |

Por Categoria

Frontend & UI: react-best-practices, web-design-guidelines, tailwind-patterns, frontend-design, ui-ux-pro-max, nextjs-react-expert

Backend & API: api-patterns, nodejs-best-practices, python-patterns, modern-python

Database: database-design

Cloud & Infra: deployment-procedures, server-management, devcontainer-setup, coolify, coolify-cli, devops

Testing & Quality: testing-patterns, webapp-testing, tdd-workflow, code-review-checklist, lint-and-validate, coverage-analysis, property-based-testing, debug-buttercup, differential-review

Seguranca: vulnerability-scanner, red-team-tactics, codeql, semgrep, entry-point-analyzer, supply-chain-risk-auditor, e 30+ mais

Fuzzing: aflpp, libfuzzer, cargo-fuzz, atheris, harness-writing, libafl, ossfuzz, e mais

Blockchain: algorand, cairo, cosmos, solana, substrate, ton vulnerability scanners

Arquitetura: app-builder, architecture, plan-writing, brainstorming


Scripts de Validacao

python .claude/scripts/checklist.py .              # Quick: Security → Lint → Schema → Tests → UX → SEO
python .claude/scripts/verify_all.py . --url <URL> # Full: + Lighthouse, E2E, Mobile, i18n

Como funciona

  1. Baixa o template do GitHub via giget
  2. Faz merge dos agents, skills, workflows, scripts, hooks e rules no .claude/
  3. Cria settings.json com hooks pre-configurados (se nao existir)
  4. Cria CLAUDE.md na raiz do projeto (se nao existir)
  5. Torna hooks executaveis (chmod +x)
  6. Nunca toca em configs do usuario (settings existente, memory, plans)

Pre-requisitos

  • Node.js 18+ (pra rodar o CLI)
  • Python 3.10+ (pra rodar os scripts de validacao — opcional)
  • Claude Code CLI instalado (o que vai consumir a knowledge base)

Creditos

Inspirado no @vudovn/ag-kit (Antigravity Kit). Obrigado ao @vudovn pela ideia original.

Skills de seguranca por Trail of Bits. Skills de web quality por Addy Osmani. Brainstorming por obra/superpowers. Coolify/DevOps por evolv3-ai.


Licenca

MIT