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

@kikompg/neuron-cc

v0.2.4

Published

Neuron installer for Claude Code process discovery, capability routing, and department-agent generation.

Readme

Neuron

Process discovery, capability routing, and department-agent generation for Claude Code, coordinated by a central Neuron orchestrator.

Install

npx @kikompg/neuron-cc@latest --claude --global

Update

npx @kikompg/neuron-cc@latest --update

Main command

/neuron

Additional direct commands:

/neuron-avaliar-projeto
/neuron-analisar-reuniao
/neuron-gerar-agents-empresa
/neuron-atualizar-agents-empresa

What it does

  • Analyses company context from transcripts or business descriptions
  • Identifies relevant departments, challenges, and automation opportunities
  • Generates specialised department agents as Markdown files
  • Generates a CEO-facing agent that consolidates department improvement needs
  • Updates generated agents when new company information appears
  • Uses a central orchestrator to control the main execution flow and avoid redundant runs
  • Reuses shared skills for process mapping, opportunity analysis, scoping, design, and SOP work

Repository architecture

neuron/
├── agents/
│   ├── core/
│   │   ├── neuron-orchestrator.md
│   │   ├── company-analyzer.md
│   │   ├── opportunity-analyzer.md
│   │   ├── project-evaluator.md
│   │   ├── department-agent-designer.md
│   │   ├── department-agent-updater.md
│   │   └── ceo-agent-designer.md
│   └── generated/
│       └── acme-industrial/
├── skills/
├── company-data/
│   └── acme-industrial/
├── commands/
├── .claude/
├── .claude-plugin/
├── scripts/
└── README.md

Core agents

  • neuron-orchestrator -> controls the main Neuron flow and decides which agents run next
  • company-analyzer -> identifies company context, departments, and agent candidates
  • opportunity-analyzer -> identifies operational and automation opportunities
  • project-evaluator -> routes work across available capabilities and fallbacks
  • department-agent-designer -> generates department-specific Markdown agents
  • department-agent-updater -> updates existing generated agents without duplication
  • ceo-agent-designer -> generates a CEO-facing synthesis agent from all department agents

Reusable skills

Main workflows

1. Initial meeting diagnosis

Use:

/neuron analisar-reuniao [transcrição ou resumo]

Output format:

# Neuron

## Resumo
## Top oportunidades
## Recomendação
## Próximo passo

This step is intentionally short:

  • no JSON
  • no capability routing
  • no full report

1b. Short project evaluation

Use:

/neuron avaliar-projeto [contexto]

Output format:

# Neuron Evaluation

## Resumo
## O que já existe
## O que falta
## Fallback agora
## Próximo passo

2. Generate company department agents

Use:

/neuron gerar-agents-empresa [descrição da empresa ou transcrição]

What it does:

  1. neuron-orchestrator coordinates the flow
  2. analyses the company
  3. creates a canonical company memory in company-data/<company-slug>/company-context.md
  4. identifies relevant departments
  5. identifies department improvement needs
  6. creates department agents in agents/generated/<company-slug>/
  7. creates ceo-agent.md with the consolidated executive view

3. Update generated agents

Use:

/neuron atualizar-agents-empresa [nova informação da empresa]

What it does:

  1. neuron-orchestrator checks the current pipeline state
  2. reads canonical company memory
  3. identifies affected agents
  4. updates company memory first
  5. updates only the necessary files
  6. preserves validated information
  7. avoids duplicate department agents

Generated agent model

Each generated agent should contain:

  • YAML metadata block
  • name
  • canonical key
  • department
  • purpose
  • company context
  • when to use
  • when not to use
  • inputs
  • outputs
  • responsibilities
  • useful tools
  • core skills
  • optional skills
  • skill usage
  • department analysis
  • update rules

Required YAML metadata:

  • agent_id
  • department
  • company
  • base_agent
  • version
  • created_by
  • last_updated

Each department agent should use this fixed analysis contract:

  • ## Departamento
  • ## Problemas encontrados
  • ## Melhorias recomendadas
  • ## O que pode ser automatizado
  • ## O que deve continuar manual
  • ## Prioridade
  • ## Dependências

Inside ## Prioridade, every agent should score:

  • impacto
  • complexidade
  • urgencia
  • decisao

These scores should follow:

The CEO agent should then consolidate those scores into:

  • ## Executive Summary
  • ## Top Priorities
  • ## Quick wins
  • ## Cross-Department Issues
  • ## Dependencies
  • ## Recommended Roadmap
  • ## Next Step

Example files:

Company context storage

Reusable company knowledge lives in:

This context is the base for:

  • agent generation
  • agent updates
  • preserving validated information over time

Neuron now treats this file as a canonical company memory, not a loose summary. That memory should separate:

  • validated facts
  • working hypotheses
  • departments
  • existing generated agents
  • discovery checklist items marked as confirmed, inferred, or unknown
  • decisions made
  • open questions

Reference template:

Guardrails

  • do not create redundant agents
  • do not duplicate overlapping departments or roles
  • create department agents only when there is clear operational need
  • prefer updating an existing agent over creating a new one
  • resolve departments to stable canonical keys before creating files
  • keep deterministic file names such as sales-agent.md, finance-agent.md, operations-agent.md

Reference rules:

Example commands

/neuron analisar-reuniao Cliente industrial com vendas, finanças, RH e operações. Sistemas atuais: Gmail, CRM, ERP e folhas de cálculo. [colar transcrição]
/neuron gerar-agents-empresa Empresa industrial B2B com equipas de vendas, finanças, RH e operações. Sistemas atuais: Gmail, CRM, ERP e folhas de cálculo. [colar transcrição]
/neuron atualizar-agents-empresa Nova informação: operações foi dividida entre logística e planeamento, e finanças passou a incluir controlo de crédito. [colar update]