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

@agentforge/cli

v0.5.1

Published

CLI tool for AgentForge - scaffolding, development, and deployment

Readme

@agentforge/cli

CLI tool for AgentForge - scaffolding, development, testing, and deployment

npm version TypeScript Coverage License

🎉 Status: Production Ready & Published

156 tests passing | 98.11% coverage | 13 commands | 4 project templates

📦 Installation

# Global installation (recommended)
npm install -g @agentforge/cli

# Or use with npx (no installation needed)
npx @agentforge/cli create my-agent-project

✨ Features

  • 🚀 Project Scaffolding - 4 templates (minimal, full, api, cli)
  • 🛠️ Development Tools - Dev server, build, test commands
  • 📦 Deployment - Deploy to Docker, Kubernetes, cloud platforms
  • 🔧 Code Generation - Generate agents, tools, middleware
  • Validation - Project structure and configuration validation
  • 📊 Diagnostics - Health checks and issue detection
  • 🔄 Upgrades - Dependency and framework upgrades
  • 📝 Configuration - Manage project settings

Commands

Project Scaffolding

create <project-name>

Create a new AgentForge project with interactive setup.

agentforge create my-project

# With options
agentforge create my-project --template full --package-manager pnpm

Options:

  • -t, --template <template> - Project template (minimal, full, api, cli) [default: minimal]
  • -p, --package-manager <pm> - Package manager (npm, pnpm, yarn) [default: pnpm]
  • --no-install - Skip dependency installation
  • --no-git - Skip git initialization

Development Commands

dev

Start development server with hot reload.

agentforge dev

# With options
agentforge dev --port 4000

Options:

  • -p, --port <port> - Port number [default: 3000]
  • --no-open - Do not open browser

build

Build for production.

agentforge build

# With options
agentforge build --no-minify --no-sourcemap

Options:

  • --no-minify - Skip minification
  • --no-sourcemap - Skip sourcemap generation

test

Run tests with coverage.

agentforge test

# With options
agentforge test --watch
agentforge test --ui
agentforge test --coverage

Options:

  • -w, --watch - Watch mode
  • --ui - Open test UI
  • --coverage - Generate coverage report

lint

Lint and format code.

agentforge lint

# With options
agentforge lint --fix

Options:

  • --fix - Auto-fix issues
  • --no-format - Skip formatting

Agent Management

agent:create <name>

Create a new agent.

agentforge agent:create myAgent

# With options
agentforge agent:create myAgent --pattern plan-execute

Options:

  • -p, --pattern <pattern> - Agent pattern (react, plan-execute, reflection, multi-agent) [default: react]
  • --no-test - Skip test generation

agent:list

List all agents.

agentforge agent:list

# With verbose output
agentforge agent:list --verbose

Options:

  • -v, --verbose - Show detailed information

agent:test <name>

Test a specific agent.

agentforge agent:test myAgent

# With watch mode
agentforge agent:test myAgent --watch

Options:

  • -w, --watch - Watch mode

agent:deploy <name>

Deploy an agent.

agentforge agent:deploy myAgent

# With options
agentforge agent:deploy myAgent --environment staging --dry-run

Options:

  • -e, --environment <env> - Deployment environment [default: production]
  • --dry-run - Dry run without actual deployment

Tool Management

tool:create <name>

Create a new tool.

agentforge tool:create myTool

# With options
agentforge tool:create myTool --category web

Options:

  • -c, --category <category> - Tool category (web, data, file, utility) [default: utility]
  • --no-test - Skip test generation

tool:list

List all tools.

agentforge tool:list

# Filter by category
agentforge tool:list --category web --verbose

Options:

  • -c, --category <category> - Filter by category
  • -v, --verbose - Show detailed information

tool:test <name>

Test a specific tool.

agentforge tool:test myTool

# With watch mode
agentforge tool:test myTool --watch

Options:

  • -w, --watch - Watch mode

tool:publish <name>

Publish a tool to npm.

agentforge tool:publish myTool

# With options
agentforge tool:publish myTool --tag beta --dry-run

Options:

  • --tag <tag> - npm tag [default: latest]
  • --dry-run - Dry run without actual publishing

📖 Documentation

🔗 Links

📚 Related Packages

License

MIT © 2026 Tom Van Schoor