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

symphony-forge

v0.1.0

Published

Scaffold next-forge projects with a composable control metalayer for AI agent governance

Readme

symphony-forge

Scaffold next-forge projects with a composable control metalayer for AI agent governance.

npm version License skills.sh

What is this?

symphony-forge extends next-forge with 5 composable layers that make your project autonomous-agent-ready:

| Layer | What it generates | Purpose | |-------|------------------|---------| | control | .control/{policy,commands,topology}.yaml | Governance gates, command registry, repo topology | | harness | scripts/harness/*.sh, Makefile.control, CI workflow | Build automation, git hooks, CI/CD | | knowledge | docs/ skeleton (index, glossary, ADRs, runbooks, templates) | Obsidian knowledge graph | | consciousness | CLAUDE.md, AGENTS.md | AI agent instructions (metalayer-aware) | | autoany | .control/egri.yaml | EGRI self-improvement loop config |

Quick Start

New project (next-forge + all layers)

npx symphony-forge init my-project

Add layers to an existing project

npx symphony-forge layer all          # All 5 layers
npx symphony-forge layer control      # Just governance
npx symphony-forge layer consciousness # Just agent instructions

Run entropy audit

npx symphony-forge audit

Install as a skill

npx skills add broomva/symphony-forge@symphony-forge

CLI Commands

symphony-forge init <name>              # next-forge clone + metalayer
symphony-forge init <name> --no-layers  # Pure next-forge (no metalayer)
symphony-forge init <name> --layers control,harness  # Specific layers
symphony-forge layer <name>             # Add single layer to existing project
symphony-forge layer all                # Add all layers
symphony-forge audit                    # Entropy audit (topology, docs, wikilinks)
symphony-forge update                   # Update from upstream next-forge

The Control Metalayer Pattern

The metalayer maps to control theory:

  • Sensors — Policy gates detect high-risk changes
  • Actuators — Harness scripts enforce standards
  • Model — Knowledge graph is the system's self-description
  • Controller — Agent instructions (CLAUDE.md/AGENTS.md) close the loop
  • Feedback — EGRI cycle + audit measure and reduce entropy

How Layers Work

Layers are composable — each works independently but adjusts content based on what else is installed. Installing consciousness alone generates CLAUDE.md with callout warnings for missing layers:

> [!warning]
> The `control` layer is not installed. Run `npx symphony-forge layer control` to add governance gates.

A .symphony-forge.json manifest tracks installed layers and package manager.

Package Manager Support

All generated scripts are parameterized for your package manager:

npx symphony-forge init my-project --package-manager pnpm

Supports: bun (default), npm, yarn, pnpm.

Generated File Tree (all layers)

.control/
  policy.yaml           # Risk gates (6 policies)
  commands.yaml         # Command registry (8 commands)
  topology.yaml         # Repo map (apps + packages)
  egri.yaml             # EGRI self-improvement loop
scripts/harness/
  smoke.sh              # Quick validation (~120s)
  check.sh              # Lint + typecheck (~60s)
  ci.sh                 # Full pipeline (~600s)
  check-policy.sh       # Advisory policy warnings
  check-docs-freshness.sh
  check-wikilinks.sh
  audit.sh              # Entropy audit
  install-hooks.sh      # Git hook installer
  pre-commit.sh         # Fast pre-commit hook
docs/
  _index.md             # Knowledge graph entry point
  glossary.md           # Terminology
  architecture/overview.md
  decisions/adr-001-metalayer.md
  runbooks/local-dev-setup.md
  _templates/           # 5 doc templates
.github/workflows/ci.yml
Makefile.control
CLAUDE.md
AGENTS.md
.symphony-forge.json

Development

bun install
npx tsup                # Build CLI
node dist/index.js --help

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

Apache 2.0