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

cc-forge

v0.3.0

Published

CC-Forge: Claude Code coherence engine — global installer and project init CLI

Downloads

74

Readme

CC-Forge

npm npm downloads License: MIT Node >=16

Engineering discipline for developers who can't afford to skip the important stuff.

You know the right way to do things. Write the spec first. Review the blast radius before refactoring. Run the security audit. Keep the docs current. Write the test before the code. You know — you just don't always have time.

CC-Forge enforces the discipline you already believe in. It installs structured workflow modes, parallel AI code review, automated security gates, and a continuous improvement loop directly into your Claude Code environment. The scaffolding is already built. You just have to show up and do the work.


What It Does

| Without CC-Forge | With CC-Forge | |---|---| | Spec lives in your head | Structured PRD with testable acceptance criteria | | Code review = you re-reading your own code | Parallel agents: Code + Security (Opus) + Performance | | Security = vibes | Pre-commit hooks block secrets and unsafe migrations | | Docs drift from reality | Coherence registry tracks every entity and relationship | | "I'll refactor later" | Continuous Forge Loop — measurable delta every iteration | | Context lost between sessions | Structured handoffs, session state, progress logs |


Installing

npm install -g cc-forge
cc-forge

Installs CC-Forge globally into ~/.claude/. Run once. All global Claude Code files are installed as symlinks into the npm package, so they update automatically with the package.

Adding to a project

cd your-project
forge init

Installs hooks, agent_docs/, config, and registers the project in the global registry.

Updating everything

forge update

Updates cc-forge globally and re-initializes all registered projects. One command keeps every global file and every registered project in sync with the latest package version.

Requirements

  • Claude Code CLI — authenticated and on PATH
  • bash 4.0+ (brew install bash on macOS)
  • jq (brew install jq)
  • dasel (brew install dasel) — TOML parsing for config cascade
  • git-secrets or trufflehog — secret scanning (pre-commit hook degrades without one)

How It Works

CC-Forge installs three layers into your environment:

~/.claude/                          # Global layer
├── CLAUDE.md                       # Non-negotiable gates, enforced every session
├── commands/forge--*.md            # Slash commands — the workflow modes
├── agents/                         # Parallel review specialists
├── forge/                          # Config cascade root
│   ├── forge.toml                  # Machine-wide baseline
│   └── workspaces/{id}/            # Domain standards (applications | platform | data)
└── loops/                          # Headless CLI loop controllers

{project}/                          # Project layer
├── CLAUDE.md                       # Project-specific overrides (tightens, never loosens)
├── .claude/
│   ├── forge/project.toml          # This repo's config — checked into git
│   ├── hooks/                      # Claude Code hooks — auto-fire on every action
│   └── agent_docs/                 # Progressive disclosure context for Claude
└── .forge/                         # Runtime state — gitignored
    ├── state.json                  # Current phase and build progress
    ├── security.json               # Persistent security scorecard
    └── reviews/                    # Timestamped review reports

Config inherits in cascade: forge.tomlworkspace.tomlproject.toml. Projects can only tighten constraints, never loosen them.


The Coherence Engine

Most engineering tools help you build things. CC-Forge also tracks the relationships between things — across code, infrastructure, security, docs, and CI — and detects when declared reality drifts from observed reality.

At the center is project-graph.json: a structured registry of every entity in your system and how they relate to each other.

{
  "entities": [
    { "id": "svc-auth-api", "kind": "service", "path": "services/auth-api" },
    { "id": "db-sql-users", "kind": "database", "path": "sql/users" }
  ],
  "relationships": [
    { "from": "svc-auth-api", "to": "db-sql-users", "type": "writes-to" }
  ]
}

Every workflow mode reads this registry. /forge--blast uses it to map what a change will touch before it happens. /forge--drift-check compares it against the actual codebase to find what's diverged. /forge--recon populates it when you onboard a new project. /forge--build reads it to understand blast radius before touching any code.

The result: Claude Code always knows the shape of your system, not just the file it's currently editing.


Workflows

Onboarding a new project

Run once when you first add CC-Forge to an existing repo:

cd your-project
forge init applications          # installs hooks, agent_docs, registry

Then inside Claude Code:

/forge--recon                    # maps the codebase, populates project-graph.json
                                 # and fills agent_docs/ with architecture, schema,
                                 # API patterns, k8s layout — all verified against source

You now have a live coherence registry and Claude has full context of your system. Everything else builds on this.


Planning and shipping a new feature

/forge--discuss "user wants SSO via SAML"

Talk through the feature. CC-Forge surfaces assumptions, identifies unknowns, and exposes hidden constraints — auth edge cases, blast radius, dependencies — before a line of code is written.

/forge--spec discuss-sso.md

Produces a structured PRD with testable acceptance criteria. This becomes the contract between intent and implementation.

/forge--plan spec-sso.md

Breaks the spec into an implementation graph with explicit task dependencies and build order. Output is plan-sso.md.

/forge--blast plan-sso.md

Maps every entity and relationship the feature will touch. If it crosses domain boundaries, you know before you start — not after.

forge build plan-sso.md      # explicit plan file
forge build                  # auto-uses the newest plan-*.md in the current directory

Headless TDD build loop. Claude writes the failing test first, implements until it passes, commits, moves to the next task. You come back to working, tested, committed code.

/forge--review

Parallel review: Code quality (Sonnet) + Security (Opus) + Performance (Sonnet) run simultaneously. Findings aggregated with [AUTO] / [REVIEW] / [HALT] certainty grades. HALT findings block the ship.


Responding to a production incident

Something is broken in prod. Skip the channel noise and go straight to structure:

/forge--fire

Activates the full incident protocol:

| Phase | What Happens | |---|---| | TRIAGE | Classify severity, identify affected systems, establish incident scope | | ISOLATE | Narrow blast radius — what's broken vs what's at risk | | DIAGNOSE | Root cause analysis against live state — logs, config, secrets, connectivity | | PATCH | Targeted fix with minimum blast radius. Tests required before any deploy. | | VERIFY | Confirm the fix holds. Check adjacent systems for side effects. | | DEBRIEF | Auto-generated post-mortem written to .forge/runbooks/ |

Speed over perfection — the protocol keeps you moving without missing steps under pressure.


Continuous improvement (run overnight)

forge improve --scope src/

Each iteration: measure → identify top opportunity → improve → verify → signal. The shell reads the signal and decides whether to keep going. Wake up to a measurably better codebase with a full audit trail in .forge/history/.


Slash Commands

All commands use the forge-- prefix — unambiguous, no conflicts with Claude built-ins.

Workflow Modes

| Command | What It Does | |---|---| | /forge--discuss | Explore the problem. Surface assumptions, identify unknowns, expose hidden constraints before writing a line of code. | | /forge--spec | Produce a structured PRD with testable acceptance criteria. The contract between intent and implementation. | | /forge--plan | Break the spec into an implementation graph with explicit task dependencies and build order. | | /forge--build | TDD implementation — write the failing test first, always. Invoked headless via loops/build.sh. | | /forge--improve | Single Forge Loop iteration: measure → identify top opportunity → improve → verify → emit signal. |

Review & Security

| Command | What It Does | |---|---| | /forge--review | Spawn parallel review agents simultaneously: Code (Sonnet) + Security (Opus) + Performance (Sonnet). Aggregated findings with certainty grades: [AUTO] [REVIEW] [HALT]. | | /forge--sec | Full security audit. Scans code, dependencies, secrets, and infrastructure. Updates .forge/security.json scorecard. HALT findings stop all other work. | | /forge--blast | Blast radius analysis before any cross-domain change. Reads project-graph.json to map every entity and relationship affected. Run before significant refactors. |

Operations

| Command | What It Does | |---|---| | /forge--recon | Rapid codebase orientation. Populates project-graph.json and agent_docs/. Run first on any new project. | | /forge--diagnose | Systematic microk8s triage: env vars → secrets → config → connectivity. Structured runbook, not vibes. | | /forge--fire | Incident response. Activates TRIAGE → ISOLATE → DIAGNOSE → PATCH → VERIFY → DEBRIEF. Speed over perfection. Auto-generates post-mortem. | | /forge--drift-check | Verify docs and registry match current codebase state. Every agent_docs/ file declares a drift_check target — this audits them all. |

Session Management

| Command | What It Does | |---|---| | /forge--handoff | Capture full session state. Writes structured handoff to .forge/handoffs/ so the next session resumes with full context. | | /forge--continue | Resume from a handoff document. Loads state, presents a situation report, confirms before touching anything. | | /forge--document | Full documentation pass — inline code docs, markdown docs, changelog, README. | | /forge--simplify | Complexity reduction pass. Forced order: delete → merge → replace → clarify. Never adds, only removes. |


The Forge Loop

The continuous improvement loop runs headless from your terminal — Claude Code is not the loop controller, the shell is:

forge improve --scope src/

Each iteration, Claude measures the codebase, identifies the highest-impact improvement opportunity, makes the change, verifies it, and emits a structured JSON signal. The shell reads the signal and decides whether to iterate again.

bash forge-loop.sh
  → claude -p "..." --output-format json --json-schema improve-signal-schema.json
  ← { "status": "loop|complete|blocked|error", "delta": 0.08, ... }
  → iterate or exit

The --json-schema flag enforces the signal contract structurally — Claude cannot emit free text, extraction paths are deterministic, and a crashed run can be resumed from the last session_id.


Hooks

CC-Forge installs Claude Code hooks that fire automatically:

| Hook | Trigger | What It Does | |---|---|---| | SessionStart | Every session open | Surfaces phase, security score, and last 20 lines of progress log | | PreToolUse(Bash) | Before any bash command | Blocks destructive commands (rm -rf, DROP TABLE, git reset --hard, etc.) | | PreToolUse(kubectl) | Before any deploy | Validates all secretKeyRef and configMapKeyRef references exist | | PostToolUse(Write/Edit) | After any file write | Auto-format + append to file-changes.log | | Stop | Session end | Appends progress stub to claude-progress.txt | | git commit | Pre-commit | Blocks secrets, fails unsafe migrations, enforces typecheck and lint | | git commit-msg | Commit message | Enforces conventional commit format |


Stack

CC-Forge is built for heterogeneous stacks. Domain skills ship with the package:

  • Databases: SQL Server (T-SQL, Flyway), Oracle (sequences, bind variables, wallet), IBM i / AS400 (EBCDIC, file locking, ODBC)
  • Frontend: Nuxt 3 (SSR, composables, server routes)
  • Legacy: PHP (characterization tests, PDO, safe refactor patterns)

Skills live in ~/.claude/forge/skills/ and are loaded progressively — Claude reads the relevant skill file before working with that technology.


Config

# .claude/forge/project.toml
[project]
id = "my-service"
name = "My Service"
workspace = "applications"

[workflow.improve]
improvement_threshold = 0.05   # minimum delta to keep looping
max_iterations = 10

[enforcement]
require_tests = true
block_destructive_db = true

Three-layer cascade: forge.toml (machine) → workspace.toml (domain) → project.toml (repo). Projects can tighten any constraint but cannot loosen machine-wide or workspace-level gates.


Inspired By

CC-Forge stands on the shoulders of some genuinely good ideas:

  • Claude Code — Anthropic's CLI that makes all of this possible. The hooks system, slash commands, and headless claude -p invocation are what CC-Forge is built on top of.
  • The Ralph Loop — the pattern of using a shell script as the loop controller with Claude as a single-iteration executor. Separating "when to iterate" from "what to do in an iteration" is the insight that makes the Forge Loop reliable. Anthropic now ships an official Ralph Wiggum plugin for Claude Code.
  • get-shit-done by TÂCHES — the spec-driven development workflow (DISCUSS → SPEC → PLAN → BUILD) that seeded CC-Forge's mode structure. The philosophy that a good system removes the friction between knowing what to do and actually doing it.
  • Pare — MCP servers that wrap common CLI tools and return structured, token-efficient JSON instead of raw terminal output. 83–95% token reduction on git, docker, and npm output. Informed CC-Forge's dual-output pattern and runner security practices.
  • everything-claude-code — a battle-tested Claude Code configuration layer with production-grade hook automations, multi-agent orchestration, and a continuous learning system. Informed CC-Forge's hook template design and inter-agent handoff schema.

License

MIT