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

jonggrang

v0.15.3

Published

Deterministic AI orchestration platform — 16-phase workflow engine for autonomous software development

Readme

Jonggrang

AI agents write code fast. Too fast. Jonggrang makes sure they don't make a mess while doing it.

Jonggrang is a CLI tool that puts AI coding agents through a Plan → Implement → Simplify → Test → Review pipeline. It breaks features into atomic tasks, runs each one with a fresh agent, and refuses to let anything through until the quality gates are green.

Works with four AI backends: OpenCode, Claude Code, OpenAI Codex CLI, and Jonggrang (built on Pi SDK). Pick your poison.


What Makes It Different

AI agents write code fast. Too fast. The bottleneck isn't speed — it's knowing when to stop and clean up.

Jonggrang enforces a pipeline where every feature passes through the same gates: Plan → Implement → Simplify → Test → Review. Not because every step is always necessary, but because skipping steps is how complexity accumulates silently.

Fresh context per task. Each task starts with a clean agent instance. No stale assumptions carrying forward. Hooks police in real-time — secrets blocked, context overload prevented, exit refused until quality gates pass. Simplify phase revisits every changed file to reduce complexity before the PR opens.

Left unchecked, an AI agent will always take the shortest path — even if that path goes through a minefield. Jonggrang puts up the guardrails.

Read the full philosophy & architecture


🚀 I Just Want to Use It

Five commands. That's all you need.

# In your project directory:
jonggrang init
jonggrang plan "what you want to build"    # AI writes a plan — you review it
jonggrang approve                          # Decompose plan into tasks
jonggrang work                             # Execute tasks one by one
jonggrang review                           # Comprehensive code review

One-shot shortcut:

jonggrang work "REST API for todo management" --yes

Interactive chat:

jonggrang agent    # Full TUI chat with /plan, /work, /review, etc.

Step-by-step guide for beginners


🔧 I Want to Hack on It

Come on in. The water's fine.

git clone <repo-url> && cd jonggrang
make install
make build

Project entry points: CLI binary, Pi TUI extension, web dashboard server. Hooks live in hooks/, skills in skills/, orchestration engine reads MANIFEST.yaml.

Full development setup guide


Commands at a Glance

| Command | What it does | |---------|-------------| | jonggrang init | Interactive wizard — sets up .jonggrang/, AGENTS.md, hooks, skills | | jonggrang plan "desc" | AI analyzes the goal, asks clarifying questions if anything is ambiguous, then writes a draft plan to .jonggrang/.drafts/<session>/plan.md — human reviews before code | | jonggrang plan --append <id> "desc" | Extend an existing approved plan: generate a delta draft for the additional scope only; on approve the new tasks are appended to that feature (numbering continues, completed tasks untouched) | | jonggrang approve | Decomposes the most-recent draft (or --session <id>) into .jonggrang/.output/features/<id>/jonggrang-tasks.json. With --feature <id> (or a draft carrying append_to:) it decomposes into an existing feature instead of minting a new one | | jonggrang work | Executes task queue with fresh context per task | | jonggrang status | Shows task board | | jonggrang review | Comprehensive code review → markdown report | | jonggrang agent | Full TUI chat session with /plan, /work, /review commands | | jonggrang web | Visual Kanban dashboard with real-time logs + parallel run (one worktree/branch per plan, review & push per branch) | | jonggrang issues list | List GitHub/GitLab issues from configured sources (or --repo owner/repo) | | jonggrang issues pickup <p> <repo> <n> | Generate a plan in this project from a GitHub/GitLab issue | | jonggrang manifest | Inspect output files tracked per phase (list, show [id], add) | | jonggrang memory | Read, recall, stage fragments, compact feature memory, and promote stable project lessons | | jonggrang codemap | Show/refresh deterministic codebase map (LLM-free, cached at .jonggrang/codemap/codemap.json) |

# Quick flags
jonggrang plan "feature" --yes       # Skip review, auto-approve
jonggrang work "feature" --yes       # Full pipeline in one command
jonggrang plan "feature" --src docs/brd.md  # Reference source document for the agent to read
jonggrang plan "feature" --deep      # 3-phase deep analysis (risks, alternatives)
jonggrang plan "feature" --base develop  # Cut the worktree from a chosen branch (fetched fresh from origin)
jonggrang plan "feature" --no-ask    # Skip the agent's clarifying-questions step
jonggrang plan --append feat-abc123 "also add rate limiting"  # Extend an approved plan (tasks appended, numbering continues)
jonggrang plan --append feat-abc123 "..." --deep  # Deep analysis on the added scope (Affected Areas / Risks)
jonggrang approve --session draft-abc123  # Approve a specific pending draft
jonggrang approve --feature feat-abc123    # Decompose the draft into an EXISTING feature (append)
jonggrang work --mode autonomous     # Override autonomy mode
jonggrang work --task task-003       # Execute specific task only
jonggrang work --feature feat-abc123 # Target a specific approved feature (multi-feature projects)

When the request is ambiguous, plan first asks you a few clarifying questions (pick an option — each carries its rationale — or type your own answer) so the agent plans from real intent instead of guessing. The Q&A is saved with the plan and reused on plan --revise. The web dashboard shows the same questions as a form.


Requirements

  • Node.js (latest LTS)
  • An AI agent — pick one:
    • OpenCodecurl -fsSL https://opencode.ai/install | bash
    • Claude Codenpm install -g @anthropic-ai/claude-code
    • OpenAI Codex CLInpm install -g @openai/codex
    • Jonggrang (Pi SDK) → npm install -g @earendil-works/pi-coding-agent
  • jqbrew install jq
  • git

Configuration

// .jonggrang/jonggrang.json (after init)
{
  "tool": "opencode",          // opencode | claude | jonggrang | codex
  "mode": { "autonomy": "balanced" },
  "work": { "max_iterations": 0 }   // 0 = unlimited (run until all tasks complete)
}

Two-layer config: ~/.jonggrang/settings.json (your defaults) → .jonggrang/jonggrang.json (this project's quirks).

Full config reference


📚 More Reading

| Doc | When you want to... | |-----|---------| | QUICKSTART.md | Get building in 5 minutes | | QUICKSETUP.md | Set up your dev environment | | PHILOSOPHY.md | Understand why this thing exists | | JONGGRANG.md | Read the full blueprint | | WORKFLOW.md | Grok the 16-phase pipeline | | SKILLS.md | Teach the agents new tricks | | CONFIG.md | Tweak every knob |


Contributors

Full credits & backstory


License

MIT © Porcupine Team

See LICENSE for full text. TL;DR: free to use for anything, including commercial, with no warranty. Contributors are protected from liability.