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

2real-team-framework

v0.12.0

Published

Drop-in AI agent team framework for Claude Code projects

Downloads

4,140

Readme

2real-team-framework

A drop-in AI agent team framework for Claude Code projects. Bootstrap a simulated team of specialized agents with persistent identities, trust matrices, feedback loops, and structured workflows.

This is the Node.js CLI for the framework. The same package is also published on PyPI (pip install 2real-team-framework); both CLIs share the same templates, presets, and framework runtime, and expose the same init contract. Full documentation lives in the GitHub repository README.

Install

npm install -g 2real-team-framework

# Or use without installing
npx 2real-team-framework init --preset library

Quick start

# Interactive bootstrap in the current directory
2real-team init

# Fully specified, zero prompts
2real-team init --preset fullstack-monorepo --team-size 10 \
  --project-name my-app --non-interactive

# Driven by a unified YAML install config (shared with the framework's own
# installer; CLI flags win over the YAML)
2real-team init --config install.yaml --non-interactive

init scaffolds the team layer (charter, roster cards, trust matrix, feedback log, skills, root CLAUDE.md) and — by default — also installs the config-driven framework runtime (hooks, libs, lifecycle state machine, framework.config.json, settings.json wiring) by bridging to the bundled Python bootstrapper (framework/install/bootstrap.py).

init options

| Flag | Meaning | | --- | --- | | --preset <name> | fullstack-monorepo, data-pipeline, or library | | --team-size <n> | Override the preset's default headcount | | --config <yaml> | Unified install config or legacy flat team config (auto-detected) | | --non-interactive | Guarantee zero prompts; flags > YAML > defaults answer everything | | --with-hooks / --no-hooks | Install the framework runtime (default: on) | | --owner <owner> | GitHub org/user recorded as scm.owner | | --merge-model <m> | wave-branch or direct-to-main | | --with-ontology / --no-ontology | Seed the ontology layer; unset defers to the install config |

Python runtime requirement

The framework runtime installer is Python; the bridge looks for python3 (falling back to python) on PATH. If no interpreter is found, init still completes the team scaffolding and prints what was skipped and how to finish — install Python 3 and re-run 2real-team init --with-hooks, or use the PyPI package instead.

Other commands

2real-team status              # Show team composition
2real-team validate            # Verify charter/roster/skills consistency
2real-team add-member --role "Software Engineer"
2real-team remove-member "Ada Park"
2real-team update-member "Ada Park" --level Staff
2real-team randomize-member "Ada Park"

Teardown

Both commands bridge to the bundled Python (like init), so they share the Python runtime requirement above. Left interactive they keep the Python side's consent gate — they prompt on a TTY and refuse on a non-TTY rather than mutating unattended; --non-interactive is the automation contract and --dry-run previews without writing.

2real-team uninstall           # Remove the framework runtime; restore pre-install state
2real-team uninstall --dry-run # Preview what would be removed; write nothing
2real-team restore             # Put back originals the install displaced (not a full teardown)

What's in this package

  • dist/ — the compiled CLI
  • templates/, presets/, skills/ — shared scaffolding data
  • framework/ — the config-driven runtime (installer + assets + config + recipes; tests are excluded from the tarball)

License

Apache-2.0