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

javi-forge

v1.5.0

Published

Project scaffolding and AI-ready CI bootstrap

Readme

javi-forge

Project scaffolding — AI-ready CI bootstrap with templates for Go, Java, Node, Python, Rust

npm version License: MIT

Quick Start

npx javi-forge init

An interactive TUI guides you through project setup: pick a stack, CI provider, memory module, and get a production-ready project structure in seconds.

What It Creates

javi-forge init bootstraps a complete project with 10 sequential steps:

flowchart LR
    A["javi-forge init"] --> B["git init"]
    B --> C["CI workflow"]
    C --> D[".gitignore"]
    D --> E["dependabot.yml"]
    E --> F["Memory module"]
    F --> G["javi-ai sync"]
    G --> H["openspec/ (SDD)"]
    H --> I["GHAGGA review"]
    I --> J["Manifest"]

Step-by-Step

| Step | What it does | |------|-------------| | 1 | Initialize git repository | | 2 | Configure git hooks path (ci-local/hooks) | | 3 | Copy CI workflow for your stack and provider | | 4 | Generate .gitignore from template | | 5 | Generate dependabot.yml (GitHub only) | | 6 | Install memory module (engram, obsidian-brain, or memory-simple) | | 7 | Sync AI config via javi-ai sync --target all | | 8 | Set up SDD with openspec/ directory | | 9 | Install GHAGGA review system (optional) | | 10 | Write forge manifest to .javi-forge/manifest.json |

Templates

| Stack | CI Templates | Dependabot | |-------|-------------|------------| | node | GitHub Actions, GitLab CI, Woodpecker | npm | | python | GitHub Actions, GitLab CI, Woodpecker | pip | | go | GitHub Actions, GitLab CI, Woodpecker | gomod | | java-gradle | GitHub Actions, GitLab CI, Woodpecker | gradle | | java-maven | GitHub Actions, GitLab CI, Woodpecker | maven | | rust | GitHub Actions, GitLab CI, Woodpecker | cargo | | elixir | GitHub Actions, GitLab CI, Woodpecker | — |

CI Providers

| Provider | Workflow location | Dependabot | |----------|------------------|------------| | GitHub Actions | .github/workflows/ci.yml | .github/dependabot.yml | | GitLab CI | .gitlab-ci.yml | — | | Woodpecker | .woodpecker.yml | — |

Memory Modules

| Module | Description | |--------|-------------| | engram | Persistent AI memory via MCP server. Best for cross-session context | | obsidian-brain | Obsidian-based project memory with Kanban, Dataview, and session tracking | | memory-simple | Minimal file-based project memory | | none | Skip memory module |

Commands

| Command | Description | |---------|-------------| | init | Bootstrap a new project (default) | | analyze | Run repoforge skills analysis on current project | | doctor | Show comprehensive health report |

npx javi-forge init
npx javi-forge init --stack node --ci github
npx javi-forge analyze
npx javi-forge doctor

CLI Flags

| Flag | Type | Default | Description | |------|------|---------|-------------| | --dry-run | boolean | false | Preview without writing files | | --stack | string | — | Project stack | | --ci | string | — | CI provider | | --memory | string | — | Memory module | | --project-name | string | — | Project name (skips name prompt) | | --ghagga | boolean | false | Enable GHAGGA review system | | --batch | boolean | false | Non-interactive mode |

AI Config

javi-forge ships with a comprehensive .ai-config/ library:

| Category | Count | Description | |----------|-------|-------------| | Agents | 8 groups | Domain-specific agent definitions | | Skills | 84 skills | Organized by domain (backend, frontend, infra, etc.) | | Commands | 20 | Slash-command definitions for Claude | | Hooks | 11 | Pre/post tool-use automation hooks |

The AI config is synced into your project via javi-ai sync during init.

RepoForge Integration

The analyze command wraps repoforge to run skills analysis on your project:

npx javi-forge analyze

This requires repoforge to be installed (pip install repoforge). It analyzes your codebase and generates skill recommendations.

Doctor

The doctor command runs comprehensive health checks:

npx javi-forge doctor

What it checks

  • System Tools — git, docker, semgrep, node, pnpm
  • Framework Structure — templates/, modules/, ai-config/, workflows/, schemas/, ci-local/
  • Stack Detection — Detects project type from files (package.json, go.mod, Cargo.toml, etc.)
  • Project Manifest — Reads .javi-forge/manifest.json
  • Installed Modules — engram, obsidian-brain, memory-simple, ghagga

Requirements

  • Node.js >= 18

Ecosystem

| Package | Description | |---------|-------------| | javi-dots | Workstation setup (top-level orchestrator) | | javi-ai | AI development layer (called by forge during sync) | | javi-forge | Project scaffolding (this package) |

License

MIT