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

@omar-azam/forge-agent

v2.0.0

Published

Forge Agent — Autonomous AI coding via browser automation. No API key needed.

Readme

🔨 Forge Agent

Autonomous AI Coding Agent — No API Key Needed

Forge Agent drives DeepSeek, ChatGPT, or Gemini through browser automation to code, test, and ship software — completely free.

npm version License: MIT Tests Docker


💙 Sponsors

Forge Agent is free and open source. If it saves you time:

GitHub Sponsors Ko-fi


Why Forge Agent?

  • Free — No API key. Uses DeepSeek, ChatGPT, or Gemini's free web UI.
  • Autonomous — Reads files, writes code, runs tests. Loops until done.
  • Cross-platform — Linux, macOS, Windows, and Docker.
  • 50 days built — 37+ tools, 1300+ tests, full docs, security audited.

Installation

# npm (recommended)
npm install -g @omar-azam/forge-agent

# Docker (no Node.js required)
docker pull ghcr.io/omar-azam/forge-agent:latest

Quick Start

# First time setup
forge-agent --setup

# Run a task
forge-agent "build a REST API with Express and JWT auth"

# Interactive mode — multiple tasks, shared context
forge-agent --interactive

# Short alias
fa "add TypeScript to this project"

Features

| Feature | Description | |---|---| | 🌐 Browser Automation | Drives DeepSeek, ChatGPT, Gemini — no API key | | 🔧 37+ Built-in Tools | File I/O, git, shell, search, tests, packages, diff, env, processes | | 💾 Persistent Memory | Remembers project tech stack and past tasks | | 🎭 Agent Profiles | default, backend, frontend, data-science, devops | | 📋 Task Templates | 10 built-in templates — add TypeScript, Jest, Docker in one command | | 🔄 Session Resume | Continue tasks that stopped halfway | | 👁 Watch Mode | Auto re-run on file changes | | 🔌 Custom Plugins | Drop a .js file to add any tool | | 🔒 Security Sandbox | Blocks SSH keys, credentials, path traversal | | 🐳 Docker Ready | Official image, no local Node.js setup needed | | ⚡ Smart Caching | Skips repeated read-only tool calls | | 🗜 Context Compression | Auto-compresses long conversations | | 📊 Benchmarks | Measure and compare performance |


Built-in Tools (37+)

File: read_file · write_file · append_to_file · replace_in_file · delete_file · move_file · copy_file · create_directory · list_directory · get_file_info · write_files

Search: search_in_files · search_codebase · find_files

Shell: run_command · start_process · stop_process · list_processes · read_process_logs

Git: git_status · git_log · git_diff · git_branches · git_show · git_blame

Dev: run_tests · install_package · diff_files · patch_file

Env: read_env · set_env_var · delete_env_var · list_env_files · check_env_vars

System: take_screenshot · read_clipboard · write_clipboard


Agent Profiles

forge-agent --profile=backend      # Node.js, Python, Go, REST APIs
forge-agent --profile=frontend     # React, Vue, HTML/CSS
forge-agent --profile=data-science # Python, pandas, ML
forge-agent --profile=devops       # Docker, CI/CD, shell scripts

Task Templates

forge-agent --template=add-typescript    # Add TypeScript to any JS project
forge-agent --template=add-jest          # Set up Jest testing
forge-agent --template=add-docker        # Dockerfile + docker-compose
forge-agent --template=add-github-actions # CI/CD pipeline
forge-agent --template=fix-tests         # Run and fix all failing tests
forge-agent --template=code-review       # Comprehensive code review
forge-agent --list-templates             # See all 10 templates

Session Resume

forge-agent --history         # Browse past tasks
forge-agent --resume          # Pick and resume a past task
forge-agent --resume=last     # Resume most recent task immediately
forge-agent --rerun           # Re-run most recent task fresh

Docker

# Single task
docker run --rm -v "$(pwd):/workspace" --network host \
  ghcr.io/omar-azam/forge-agent "build a REST API"

# Interactive
docker run --rm -it -v "$(pwd):/workspace" --network host \
  ghcr.io/omar-azam/forge-agent --interactive

# With Make
make run TASK="build a REST API"
make interactive

Custom Plugins

// ~/.deepseek-agent/tools/fetch_weather.js
module.exports = {
  name: 'fetch_weather',
  description: 'Get current weather for a city',
  parameters: { city: { type: 'string', required: true } },
  async execute({ city }) {
    const https = require('https');
    return new Promise((res, rej) => {
      https.get(`https://wttr.in/${city}?format=3`, r => {
        let d = ''; r.on('data', c => d += c); r.on('end', () => res(d));
      }).on('error', rej);
    });
  },
};
forge-agent --list-plugins       # see all loaded plugins
forge-agent --new-plugin my_tool # generate a stub

CLI Reference (key flags)

forge-agent [OPTIONS] [TASK]

Core:      --interactive -i  --dir  --model  --profile  --plan  --think
Sessions:  --resume  --rerun  --history  --no-memory
Templates: --template  --list-templates  --save-template
Output:    --format  --output  --no-tui  --compact
Watch:     --watch  --watch-pattern  --watch-debounce
Performance: --max-iterations  --timeout  --no-timeout
Plugins:   --list-plugins  --new-plugin
Config:    --setup  --config-path
Debug:     --debug  --headless  --diagnostics  --security
Help:      --help  --help=<topic>  --cheatsheet  --man

Full reference: forge-agent --help or docs/cli-reference.html


Configuration

// ~/.deepseek-agent/config.json
{
  "MODEL": "deepseek",
  "MAX_ITERATIONS": 100,
  "RESPONSE_TIMEOUT": 600000,
  "ACTIVE_PROFILE": "default",
  "MEMORY_ENABLED": true,
  "CACHE_ENABLED": true
}

Run forge-agent --setup for guided configuration.


Key Stats — v2.0.0

  • 🔧 37+ tools built in
  • 🧪 1300+ tests across 49 suites
  • 📁 13 docs pages including full CLI reference
  • 📋 10 task templates built in
  • 💡 10 example projects in gallery
  • ⚙️ 40+ CLI flags
  • 🐳 Docker image published
  • 🔒 Security audited with path sandbox
  • 📦 50 days of development

Documentation

Full documentation: https://omar-azam.github.io/forge-agent


Contributing

See CONTRIBUTING.md for development setup, code style, and how to add new tools.

All contributions welcome: new tools, bug fixes, docs improvements, new templates, plugin examples.


Support This Project

Forge Agent is free and open source. If it saves you time:

  • Star the repo — helps others discover it
  • 💰 Sponsor development
  • 📢 Share it — post about it, tell your team
  • 🐛 Report bugs — good reports make it better
  • 📝 Improve docs — any PR helps

License

MIT — see LICENSE