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

gsd-munch

v0.4.0

Published

GSD workflow orchestration + tree-sitter code indexing for Claude Code

Readme

npm version License: MIT Node.js

gsd-munch

GSD workflow orchestration + tree-sitter code indexing for Claude Code.

Quickstart

npm install -g gsd-munch

The postinstall script runs automatically and:

  • Provisions a Python runtime via uv (no system Python required)
  • Installs the jCodeMunch MCP server into an isolated virtualenv
  • Registers the MCP server with Claude Code
  • Deploys GSD workflow commands (/gm:*) to your Claude Code installation

After install, restart Claude Code and use /gm:help to see all available commands.

Recommended Usage

GSD is designed for frictionless automation. Run Claude Code with:

claude --dangerously-skip-permissions

This allows GSD agents to execute plans, run builds, and commit code without repeated permission prompts. Without it, each tool call requires manual approval, which interrupts the autonomous workflow GSD is built for.

GSD Workflow Commands

All commands are available as /gm:* slash commands inside Claude Code.

Project Setup

| Command | Description | |---------|-------------| | /gm:new-project | Initialize a new GSD project — creates .planning/ structure, maps codebase, and indexes for symbol retrieval | | /gm:map-codebase | Re-map and re-index the codebase, refreshing the symbol database and project context |

Planning

| Command | Description | |---------|-------------| | /gm:discuss-phase | Open-ended discussion to clarify phase goals before committing to a plan | | /gm:plan-phase | Generate a structured execution plan for a phase, with per-task breakdowns | | /gm:research-phase | Spawn a research agent to investigate technical decisions before planning |

Execution

| Command | Description | |---------|-------------| | /gm:execute-phase | Execute a phase plan — runs tasks atomically with per-task commits | | /gm:verify-work | Run UAT for a phase — presents each deliverable for confirmation, logs issues | | /gm:quick | Run a quick one-off task without full phase scaffolding |

Session Management

| Command | Description | |---------|-------------| | /gm:pause-work | Snapshot current session state to .planning/STATE.md for safe context handoff | | /gm:resume-work | Resume from a paused session — restores context and picks up where left off | | /gm:progress | Display current project progress, phase status, and recent decisions |

Settings and Debugging

| Command | Description | |---------|-------------| | /gm:settings | Configure GSD behaviour (model profiles, parallelization, auto-chain) | | /gm:help | Show all available commands with brief descriptions | | /gm:debug | Diagnose GSD installation issues — checks Python, MCP, assets, and workflows |

Phase Management

| Command | Description | |---------|-------------| | /gm:add-phase | Append a new phase to the project roadmap | | /gm:insert-phase | Insert a phase at a specific position in the roadmap | | /gm:remove-phase | Remove a phase from the roadmap |

Milestone Management

| Command | Description | |---------|-------------| | /gm:audit-milestone | Review all deliverables for a milestone against acceptance criteria | | /gm:complete-milestone | Mark a milestone complete and generate a completion report | | /gm:new-milestone | Define a new milestone with goals, phases, and success criteria |

Code Indexing

gsd-munch bundles the jCodeMunch MCP server, providing tree-sitter AST parsing for 14+ languages. The MCP server is registered automatically with Claude Code on install.

Available MCP tools:

| Tool | Description | |------|-------------| | index_folder | Index a directory — builds symbol database for all supported files | | index_repo | Index an entire repository with git-aware file selection | | get_repo_outline | Get a high-level outline of all symbols in the indexed repository | | get_file_outline | Get the symbol outline for a single file | | get_symbol | Retrieve the exact source of a named symbol (function, class, method) | | search_symbols | Search symbols by name pattern across the indexed codebase | | search_text | Full-text search across indexed files |

The codebase is automatically re-indexed on project initialization and after each git commit (via a post-commit hook installed by /gm:new-project).

Using get_symbol or get_file_outline instead of reading whole files reduces the tokens required for each agent task — particularly useful in multi-file refactors or when navigating large codebases.

Token Savings

At phase completion, /gm:verify-work estimates the tokens saved via symbol retrieval compared to reading whole files. If symbol retrievals occurred during the phase, a savings summary line is appended to the UAT output and recorded in .planning/STATE.md under Performance Metrics.

Example output:

Saved ~14k tokens via symbol retrieval this phase

This is an estimate based on a chars/4 heuristic and is informational only — it never blocks or errors.

Attribution

gsd-munch builds on two upstream projects:

  • get-shit-done by GSD Team / TACHES — structured project planning and execution workflows for Claude Code. Repository: gsd-build/get-shit-done — MIT License
  • jcodemunch-mcp by J. Gravelle — tree-sitter AST parsing and symbol retrieval via the MCP protocol. Repository: jgravelle/jcodemunch-mcp — Custom non-commercial license

See NOTICES for pinned upstream versions and full license details.

License

MIT — see LICENSE.

Third-party attribution and license details for upstream projects are in NOTICES.