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

@coredirective/cf-cli

v0.1.0

Published

CLI for CodeForge development workflows

Downloads

104

Readme

CodeForge CLI

CLI for CodeForge development workflows. Manages sessions, plugins, configuration, codebase indexing, and devcontainers.

Experimental — v0.1.0. Ships with CodeForge v2.1.0.

Install

npm install -g @coredirective/cf-cli

Requires Bun runtime.

Usage

codeforge <command> [options]

Global Options

| Flag | Description | |------|-------------| | --local | Run against the host filesystem (skip container proxy) | | --container <name> | Target a specific container by name |

When run outside a devcontainer, commands auto-proxy into the running CodeForge container. Use --local to bypass.

Commands

codeforge session — Session History

codeforge session search "query"       # Search session history
codeforge session list                  # List recent sessions
codeforge session show <id>             # Show session details

codeforge task — Task Management

codeforge task search "query"           # Search tasks across sessions
codeforge task list                     # List tasks
codeforge task show <id>                # Show task details

codeforge plan — Plan Search

codeforge plan search "query"           # Search plans across sessions

codeforge plugin — Plugin Management

codeforge plugin list                   # List installed plugins
codeforge plugin show <name>            # Show plugin details
codeforge plugin enable <name>          # Enable a plugin
codeforge plugin disable <name>         # Disable a plugin
codeforge plugin hooks [name]           # Show hooks (all or per-plugin)
codeforge plugin agents [name]          # Show agents (all or per-plugin)
codeforge plugin skills [name]          # Show skills (all or per-plugin)

codeforge config — Configuration

codeforge config show                   # Show current configuration
codeforge config apply                  # Deploy config files to ~/.claude/

codeforge index — Codebase Index

codeforge index build                   # Build symbol index for current project
codeforge index search "query"          # Search the symbol index
codeforge index show <symbol>           # Show symbol details
codeforge index stats                   # Index statistics
codeforge index tree                    # Symbol tree view
codeforge index clean                   # Remove index data

codeforge container — Devcontainer Management

These commands always run on the host (never proxied).

codeforge container up                  # Start the devcontainer
codeforge container down                # Stop the devcontainer
codeforge container rebuild             # Rebuild the devcontainer
codeforge container exec <cmd>          # Execute a command in the container
codeforge container ls                  # List running containers
codeforge container shell               # Open a shell in the container

License

GPL-3.0 — see LICENSE.