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

hablas-ai

v2.2.15

Published

Single-agent terminal AI engineering runtime with full tools, direct execution, and clean UX.

Downloads

11,083

Readme

Hablas CLI

Single-agent terminal AI engineering runtime.

Hablas is being rebuilt from scratch around one strict product decision:

one visible agent, one execution surface, full tools, zero internal theatre

This stable branch no longer treats multi-agent choreography as the product. The product is now Hablas only.


Product principles

  1. Single visible agent
  2. Fast direct path for trivial turns
  3. Full tool execution for real engineering work
  4. No hidden routing leaks in the UX
  5. No handoff theatre, no mode maze, no orchestration drama
  6. Read before edit, verify before claim
  7. Direct technical tone: no emojis, no hype, no filler
  8. Professional shell UX matters as much as model quality

Installation

git clone https://github.com/Monopoly63/mobile-bot.git
cd mobile-bot/flowagent
npm install
npm run build
npm link

Requirements:

  • Node.js 20+
  • One provider:
    • Ollama
    • NVIDIA NIM
    • any OpenAI-compatible API

Usage

First run / setup

On first launch, Hablas now offers the restored classic setup flow:

  1. Hablas Integrated Engine

    • ready-made
    • preconfigured NVIDIA-backed endpoint
    • selected model already configured
    • user just chooses option 1
  2. Custom Provider

    • Ollama
    • OpenAI
    • Groq
    • OpenRouter
    • Together
    • DeepSeek
    • custom OpenAI-compatible API
    • NVIDIA NIM

You can also run setup manually anytime:

hablas --setup

Interactive

hablas

Interactive with automatic tool confirmations where allowed

hablas --auto

One-shot

hablas run "read package.json and tell me the version"

Web and asset workflow

Hablas now keeps the professional web tool chain active:

  • web_search
  • search_image_candidates
  • inspect_image
  • scrape_url
  • extract_links
  • download_asset

This means Hablas can:

  • search the web for references and assets
  • rank trusted image page candidates before downloading
  • inspect a remote or local image candidate before adoption
  • resolve a page candidate into a direct image candidate with an explicit verdict
  • download real images/files into the project when appropriate
  • preserve full file reads in-context so long files are not silently cut into tiny fragments that force rereads

Image pipeline stance

For image replacement work, the intended flow is:

  1. search_image_candidates
  2. inspect_image
  3. download_asset

The runtime should stay inside this image toolchain. It should not fall back to shell hacks (curl, powershell, guessed public image IDs) for public asset discovery unless the user explicitly asks for low-level debugging.


Current command surface

CLI commands

  • hablas
  • hablas run "..."
  • hablas doctor
  • hablas info
  • hablas security
  • hablas stats
  • hablas --setup

Slash commands

  • /help
  • /status
  • /model [name]
  • /models [query]
  • /provider [ollama|nvidia|custom|test]
  • /history [n]
  • /clear
  • /workspace
  • /doctor
  • /version
  • /about
  • /exit

Shell UX

  • tab completion for slash commands
  • tab completion for common file paths after verbs like read, write, edit, patch
  • #file reference completion
  • persisted command history
  • rebuilt Apple-slate terminal styling
  • visible thinking state while the model is working
  • direct-turn streaming when the provider supports it

Execution model

Hablas analyzes a request into one of four internal task kinds:

  • casual
  • read
  • analysis
  • implementation

The runtime uses a lightweight local task profiler so first-turn latency stays clean and there is no hidden pre-turn model call before Hablas starts responding.

Then it decides whether the turn should be:

  • direct text execution
  • tool-based execution

There is no public build/design/ask mode system anymore. There is no visible team routing layer.


Examples

Simple direct turn

hi

Expected behavior:

  • no tool calls
  • short direct answer

Project inspection

what is the current version of this project

Expected behavior:

  • inspect the minimum relevant files
  • answer from evidence

Architecture request

design the architecture for auth in this repository

Expected behavior:

  • structured analysis
  • inspect files only if needed
  • answer as one agent

Continuation request

continue the unfinished project

Expected behavior:

  • continue from existing work
  • do not restart from zero

One-step delivery request

just give me the finished project in one step no questions

Expected behavior:

  • aggressive execution posture
  • no unnecessary follow-up questions
  • verify before claiming done

Architecture docs

See:

  • docs/ARCHITECTURE.md
  • docs/CLI.md
  • docs/ROADMAP.md
  • docs/STATUS.md
  • docs/PUBLISH.md

Development

npm install
npm run build
npm test
npm run dev -- run "your prompt"

Current automated checks cover:

  • shared execution engine smoke behavior
  • analyzer behavior
  • session continuity behavior
  • image pipeline helper behavior

Memory and state

Hablas now uses larger defaults for the rebuilt runtime and also keeps a project-local state folder:

  • larger message history budget
  • larger context budget
  • project-local .hablas/session.json persistence for the current workspace

This is separate from the user-home config directory used for global config/history.

Rebuild status

This branch is under an intentional full rebuild of the stable product surface. Dead code from the previous multi-agent product is being physically removed instead of patched.


License

MIT