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

graph-engineering-loop-workspace

v0.3.0

Published

CLI for dependency-aware completion-driven engineering loop graphs.

Downloads

478

Readme

graph-engineering-loop-workspace

CLI for Graph Engineering Loop. Install the package that already exists on npm:

npm install -g graph-engineering-loop-workspace

Commands after install:

graph-engineering-loop-workspace --help
graph-engineering-loop --help
loopgraph --help
npx graph-engineering-loop-workspace --help
npx graph-engineering-loop-workspace validate .loopgraph/loops.json
npx graph-engineering-loop-workspace run .loopgraph/loops.json --adapter claude --claude-permission-mode acceptEdits
npx graph-engineering-loop-workspace run .loopgraph/loops.json --adapter stdio --adapter-command "node /absolute/path/to/adapter.mjs"
npx graph-engineering-loop-workspace run .loopgraph/loops.json --adapter stdio --adapter-command "node /absolute/path/to/adapter.mjs" --project-graph graphify
npx graph-engineering-loop-workspace cancel

The graph path is resolved from the current directory. The package does not install repository examples into your project, so supply your own graph or run the examples from a clone of the repository.

Every real run generates .loopgraph/status.md and .loopgraph/status.json. Open the Markdown file while the process runs to see the live dependency graph, active objective/tasks, current iterations, and waiting or blocked loops. Normal CLI completion output prints its path.

Graphify project context

Install the optional Graphify CLI, then select it explicitly:

uv tool install graphifyy
npx graph-engineering-loop-workspace run .loopgraph/loops.json \
  --adapter claude \
  --claude-permission-mode acceptEdits \
  --project-graph graphify \
  --project-root "$PWD"

The first run performs local code-only extraction; later runs use Graphify's incremental update command. Full packets are stored in .loopgraph/context/<loop-id>.json. The built-in Claude prompt receives bounded file/node/community scope and omits raw query content. Graphify query logging is disabled for subprocesses launched by LoopGraph.

Options:

  • --graphify-path <path> selects a non-default Graphify executable.
  • --graphify-graph <path> queries an existing project-local snapshot without refreshing it.

Run --dry-run to validate and preview scheduling; Graphify preflight starts only on a real run. Review graphify-out/ before committing it.

Real Claude smoke test from the repo:

npm run smoke:claude

This creates a fresh temp project, invokes Claude Code with a $1.00 max budget, and verifies that the adapter creates tmp/claude-smoke.txt.

The interactive adapter is the file-backed bridge used by the Claude Code plugin. It waits for structured responses under .loopgraph/bridge/; normal standalone users should select fake, stdio, or claude.

In the plugin, the current interactive packet repeats as a guarded Ralph-style loop until runtime evidence passes or maxIterations is exhausted. The graph scheduler alone advances to dependency-ready work; no additional public command is introduced.

See the repository README for Claude Code plugin usage and loops.json details.