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

v1.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, scripts de validacao.

Um comando e seu Claude Code ganha 20 agents especialistas, 37+ skills, 11 workflows 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, e scripts Python pra validacao automatica.

Basicamente: seu Claude Code vira um time de especialistas.


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 (.md)
├── skills/           # 37+ skills com patterns e boas praticas
├── workflows/        # 11 workflows estruturados
├── scripts/          # Scripts Python de validacao (checklist, verify_all, etc)
├── rules/CLAUDE.md   # Regras estendidas de coding standards
├── .shared/          # Dados compartilhados (UI/UX datasets, etc)
├── ARCHITECTURE.md   # Indice completo da knowledge base
└── mcp_config.json   # Config MCP servers (com placeholder API key)

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 tocados
  • 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

O que vem dentro

Agents (20)

Arquivos de conhecimento especialista que o Claude le on-demand:

orchestrator · project-planner · security-auditor · backend-specialist · frontend-specialist · mobile-developer · debugger · game-developer · test-engineer · database-architect · devops-engineer · performance-optimizer · seo-specialist · penetration-tester · documentation-writer · qa-automation-engineer · code-archaeologist · explorer-agent · product-manager · product-owner

Skills (37+)

Patterns, boas praticas e conhecimento por dominio:

clean-code · api-patterns · database-design · frontend-design · mobile-design · testing-patterns · vulnerability-scanner · brainstorming · plan-writing · architecture · tailwind-patterns · nextjs-react-expert · nodejs-best-practices · python-patterns · rust-pro · bash-linux · game-development · seo-fundamentals · performance-profiling · webapp-testing · tdd-workflow · code-review-checklist · deployment-procedures · mcp-builder · e mais...

Workflows (11)

Fluxos estruturados de execucao de tarefas:

brainstorm · create · debug · deploy · enhance · orchestrate · plan · preview · status · test · ui-ux-pro-max

Scripts de Validacao

Scripts Python pra rodar checks no seu projeto:

python .claude/scripts/checklist.py .              # Validacao por prioridade
python .claude/scripts/verify_all.py . --url <URL> # Suite completa pre-deploy

Como funciona

  1. Baixa o template do GitHub via giget
  2. Faz merge dos agents, skills, workflows e scripts no .claude/
  3. Cria um CLAUDE.md generico na raiz do projeto (se nao existir)
  4. Nunca toca em configs do usuario (settings, 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

Este projeto foi inspirado no @vudovn/ag-kit (Antigravity Kit), que instala agents/skills/workflows pro Gemini CLI no diretorio .agent/.

O cc-kit adapta esse mesmo conceito pro ecossistema Claude Code — todo o conteudo foi reescrito e adaptado pra funcionar com a estrutura .claude/, sem nenhuma referencia ao Gemini ou Antigravity.

Obrigado ao @vudovn pela ideia original e pelo trabalho no ag-kit.


Licenca

MIT