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

@shawnstack/quickforge

v1.3.1

Published

AI chat application with YOLO-mode local workspace tools. React + Vite + Tailwind CSS frontend, local Node.js storage server.

Readme

速构 QuickForge

AI chat application with YOLO-mode local workspace tools — the agent can read, write, and edit files in your project, plus run shell commands.

Built with React 19, Vite 8, Tailwind CSS 4, and shadcn-style UI primitives. Uses @mariozechner/pi-web-ui for chat components and @mariozechner/pi-ai for model orchestration. All data stays local under ~/.quickforge/, with persistent data in storage/, removable caches in cache/, and logs in logs/.


Features

  • ChatGPT-like UI — collapsible conversation list, streaming responses, model settings.
  • Local-first — all API keys, settings, and chat history stored in local JSON files. No cloud, no telemetry.
  • YOLO mode — grant the agent access to your workspace: list files, read/write/edit, grep, and run commands.
  • Multi-provider — OpenAI-compatible /v1/chat/completions and Anthropic Messages API. Bring your own endpoint.
  • Local service storage only — the local Node.js service is the single storage backend; browser caches are not used for app data.

Installation

npm

npm install -g @shawnstack/[email protected]
qf

# CLI utilities
qf --version
qf check-update
qf update

Offline tarball

The offline release package for v1.3.1 is:

package-offline/shawnstack-quickforge-1.3.1.tgz

Install it on a machine with Node.js 20+ and npm:

npm install -g ./package-offline/shawnstack-quickforge-1.3.1.tgz
qf

The package was generated from tag v1.3.1 and includes bundled runtime dependencies for offline installation.

Quick Start

# Install
npm install

# Development (server + Vite, port 5176)
npm run dev

# Production
npm run build
npm start

Open http://localhost:5176.

Documentation

Windows

Double-click dev-quickforge.bat for development, or start-quickforge.bat for production mode.

Tech Stack

| Layer | Technology | |---|---| | Frontend | React 19, Vite 8, Tailwind CSS 4 | | UI | shadcn-style primitives, Lucide icons | | Chat engine | @mariozechner/pi-web-ui, @mariozechner/pi-agent-core, @mariozechner/pi-ai | | Server | Node.js (ESM), plain http module | | Storage | Unified config at ~/.quickforge/config/config.json, conversations under ~/.quickforge/storage/, cache files under ~/.quickforge/cache/, logs under ~/.quickforge/logs/ |

Project Structure

├── bin/quickforge.mjs     # CLI entry point
├── server/index.mjs       # Local API + storage server
├── src/                   # React frontend
├── public/                # Static assets
├── index.html             # HTML entry
├── vite.config.ts         # Vite + Tailwind config
└── package.json

Configuration

Environment Variables

| Variable | Default | Description | |---|---|---| | QUICKFORGE_DATA_DIR | ~/.quickforge | Data storage directory | | QUICKFORGE_WORKSPACE_DIR | project root | Workspace for YOLO tools | | QUICKFORGE_HOST | 127.0.0.1 | Server bind address | | QUICKFORGE_PORT | 32176 (dev) / 5176 (prod) | Server port | | QUICKFORGE_VITE_PORT | 5176 | Vite dev server port | | QUICKFORGE_MAX_BODY_BYTES | 52428800 (50MB) | Max request body size |

Storage Files

Located under ~/.quickforge/ (or %USERPROFILE%\.quickforge on Windows):

  • config/config.json — unified local config, including app settings, custom providers, provider API keys, and project list. This file may contain secrets; do not share it.
  • storage/conversations/global/sessions.json — full global chat history
  • storage/conversations/global/sessions-metadata.json — global conversation list metadata
  • storage/conversations/projects/<projectId>/sessions.json — full project chat history
  • storage/conversations/projects/<projectId>/sessions-metadata.json — project conversation list metadata
  • cache/ — removable cache files
  • logs/ — local logs

First Model Setup

QuickForge does not assume a usable default model on first launch. If no custom model is configured, the chat area shows a setup guide.

You can add any OpenAI-compatible or Anthropic Messages provider in Settings. A LiteLLM example is available:

  • Base URL: http://localhost:4000/v1
  • Model: anthropic/claude-sonnet-4
  • API: OpenAI-compatible /v1/chat/completions

See the user guide for detailed setup examples.

YOLO Mode

Toggle YOLO from the bottom bar. When enabled, the agent gains these local tools:

| Tool | Description | |---|---| | list_dir | List directory contents | | read_file | Read file contents | | grep_files | Search files by text/regex | | write_file | Create or overwrite a file | | edit_file | Replace text in a file | | run_command | Execute shell commands from the workspace directory |

File tools are restricted to the workspace root. run_command starts in the workspace directory but runs with the current OS user and is not a filesystem sandbox. YOLO runs without per-tool confirmations — only enable it for trusted models and workspaces.

Verification

npm run lint
npm run build

Contributing

See CONTRIBUTING.md for development setup and PR guidelines.

License

MIT