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

@neuravim/neuraforge

v0.12.1

Published

NeuraForge — CLI framework for AI-assisted development

Readme

NeuraForge — AI-Driven Engineering

npm version npm downloads License: AGPL v3 TypeScript Tests

🇬🇧 English | 🇫🇷 Français

NeuraForge orchestrates specialized AI agents to turn a request into delivered, tested, and traced code. You describe what you want, NeuraForge distributes the work across 6 agents (Analyst, Planner, Dev, QA, DocOps) and delivers code with full traceability of AI decisions.

Built for enterprise development teams: provider-agnostic (Claude Code, Gemini, Copilot, OpenCode, custom API), injectable skills and rules, security filtering, lessons learned (retex), built-in compliance, feature-first for brownfield projects.


Quickstart (5 minutes)

Prerequisites

1. Install

$ bun add -g @neuravim/neuraforge
$ neuraforge --version    # 0.10.0

2. Initialize in your project

$ cd my-project
$ neuraforge init

NeuraForge scans the project and automatically detects the tech stack, architecture, CI/CD and package manager. Everything is stored in .aiden/ (commit it with your code).

3. First workflow (flash = bug fix / small feature)

$ neuraforge flash "Add a GET /health endpoint returning {status: ok}"

Flash mode is direct: Dev implements, writes tests, traces the decision. No ceremony.

4. Full workflow (standard = feature with analysis + review)

$ neuraforge standard "Add a user management REST API with pagination"

Standard mode chains 4 automatic phases:

| Phase | Agent | What it does | |-------|-------|-------------| | Discovery | Analyst | Scans code, estimates complexity, identifies risks | | Planning | Planner | Creates a spec + stories with acceptance criteria | | Implementation | Dev | Implements each story with tests | | Validation | QA | Reviews code vs criteria, loops with Dev on failure |

Artifacts generated in .aiden/features/<slug>/: brief.md, spec.md, stories/, review.md, change-summary.md.

5. Verify

$ neuraforge status                        # View all features
$ neuraforge metrics                       # Tokens, costs, durations
$ cat .aiden/memory/decisions.jsonl   # AI decision history

3 adaptive modes

| Mode | Usage | Agents | Estimated time | |------|-------|--------|---------------| | neuraforge flash | Bug fix, hotfix, small feature | Lead + Dev | < 30 min | | neuraforge standard | Medium feature, new API | + Analyst, Planner, QA | 2h - 1 day | | neuraforge enterprise | Critical project, compliance required | + DocOps + human approval | 1 day+ |

NeuraForge automatically detects the optimal mode. You can switch modes mid-workflow without losing work:

$ aiden switch export-csv standard    # switch from flash to standard mid-feature

Intelligent multi-provider

Each agent receives the optimal provider for its task:

| Task | Default provider | Reason | |------|-----------------|--------| | Analysis & Review | Claude Code | Best reasoning | | Code generation | Gemini | Performant multi-file | | Quick fix | Copilot | Speed + fixed cost |

4 routing strategies: fixed, prefer, auto, cost-optimized. Automatic fallback if a provider is unavailable.


For teams

Enterprise rules

Define your standards in .aiden/rules/ (coding standards, security, architecture). They are automatically injected into every agent's prompts.

$ neuraforge rules add security-policy.md

Skills (extensibility)

Skills are declarative packages (YAML + Markdown) that bundle instructions, rules and hooks. Drop a folder in .aiden/skills/ and NeuraForge discovers it automatically.

$ neuraforge skills init my-skill           # Create a skill
$ neuraforge skills list                    # List skills
$ neuraforge skills enable/disable <name>   # Enable/disable

3 built-in templates: code-review-strict, compliance-rgpd, jira-sync.

Multi-level configuration

5 configuration levels that cascade:

NeuraForge defaults → Global config (~/.aiden/) → Project config (.aiden/) → Feature config → CLI flags

Global config is installed once per workstation and applies to all projects.

Compliance and audit

  • decisions.jsonl: every AI decision is traced (who, what, why, token count)
  • metrics.jsonl: cost per agent, per provider, per feature
  • Human approval in enterprise mode between each phase
  • DocOps generates changelog, documentation, runbooks

Commands

neuraforge init                          # Initialize NeuraForge in the project
neuraforge flash "description"           # Fast mode (direct Dev)
neuraforge standard "description"        # Standard mode (Analyst → Planner → Dev → QA)
neuraforge enterprise "description"      # Enterprise mode (+ DocOps + approval)
neuraforge status [feature]              # Feature status
neuraforge resume <feature>              # Resume a blocked feature
neuraforge abort <feature>               # Abort a feature
aiden switch <feature> <mode>       # Switch mode mid-feature
neuraforge agent <name> "prompt"         # Invoke an agent directly
neuraforge provider status|switch|cost   # Manage AI providers
neuraforge metrics [--export csv]        # Usage metrics and costs
neuraforge config show|set               # Configuration
neuraforge rules add|list|remove         # Enterprise rules
neuraforge skills list|init|add|remove   # Extensibility skills
neuraforge retex add|list|search|remove  # Lessons learned
neuraforge template customize|list       # Artifact templates

Claude Code mode (slash commands)

NeuraForge also works directly inside Claude Code without installing the CLI:

/aiden-init        /aiden-flash       /aiden-standard    /aiden-enterprise
/aiden-status      /aiden-resume      /aiden-agent       /aiden-rules

Both modes (CLI and slash) write to the same .aiden/ files.


Documentation

| Guide | Description | |-------|-------------| | Installation | Prerequisites, installation, provider setup | | Quickstart | Complete scenario from zero in 5 minutes | | First feature | Detailed standard workflow phase by phase | | Deployment guide | Deploy NeuraForge in an organization (pilot, rollout, governance) | | Modes | Flash, standard, enterprise: when to use what | | Rules & templates | Configure enterprise standards | | Skills | Enterprise extensibility: instruction packages, rules and hooks | | Brownfield | Add NeuraForge to an existing project | | Team usage | Git workflow, onboarding, conventions | | CI/CD | Pipeline integration |

Note: The documentation site is written in French (project language for docs). The code, CLI, and this README are in English.

Tests

$ bun test            # 444 unit tests
$ bun run typecheck   # TypeScript strict check
$ bun run lint        # ESLint

License

AGPL-3.0 — See LICENSE for details.