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

@chuckssmith/agentloom

v1.2.0

Published

A workflow layer for Claude Code — reusable roles, persistence loops, and multi-agent crew coordination

Readme

agentloom

A workflow layer for Claude Code — persistence loops, parallel crews, and typed agent roles, built natively on what Claude Code already provides.

npm install -g @chuckssmith/agentloom
loom setup

What this is

Claude Code is the execution engine. agentloom adds:

  • $grind — persistence loop that keeps working until a task is verified complete
  • $crew — parallel workers that decompose and execute simultaneously
  • $architect — deep analysis mode before major decisions
  • loom crew — CLI to spawn, monitor, and collect results from a crew

It does not replace Claude Code. It wraps it.


Quick start

npm install -g @chuckssmith/agentloom
loom setup          # installs $grind, $crew, $architect skills + validates deps
loom init           # create .loomrc config in current project (optional)

# Spawn workers:
loom crew "audit every API endpoint for security issues"
loom crew 3 "refactor the auth module"
loom crew 2:explore+1:code-reviewer "review the payment flow"

# Useful flags:
loom crew --dry-run 3 "migrate the schema"   # preview decomposed subtasks first
loom crew --watch "audit the codebase"       # launch + immediately tail logs
loom crew --serial 3 "build the pipeline"    # run workers sequentially

# Monitor:
loom watch           # live color-coded tail of all worker logs
loom status          # session overview + per-worker liveness (PID-aware)

# After workers finish:
loom collect         # synthesize results with Claude into summary.md
loom reset --force   # clear state for next run

# Or use inside any Claude Code session:
# $grind "port the auth module to the new interface"
# $crew "analyze all three data pipeline stages in parallel"

Skills

Install with loom setup. Use inside any Claude Code session:

| Skill | What it does | |---|---| | $grind | Persistence loop — plans, executes in parallel, verifies. Won't stop until a code-reviewer returns PASS | | $crew | Decomposes task into independent streams, runs workers simultaneously, verifies result | | $architect | Deep analysis — maps the system, finds real problems, recommends approach |


CLI reference

Setup

loom init            Create .loomrc in current directory (see Configuration below)
loom setup           Install skills to ~/.claude/skills/, validate claude + tmux

Spawning workers

loom crew "<task>"                           Use defaults from .loomrc (or 2 general-purpose)
loom crew 3 "<task>"                         3 workers
loom crew 2:explore "<task>"                 2 explore-type workers
loom crew 2:explore+1:code-reviewer "<task>" Typed crew

Flags (combinable):
  --dry-run    Preview AI-decomposed subtasks without launching
  --watch      Launch then immediately tail all worker logs
  --serial     Run workers sequentially — each worker reads prior results from context file

Monitoring

loom watch                   Live color-coded tail (auto-exits when all workers done)
loom status                  Session overview, task counts, per-worker liveness
loom logs                    Summary: all workers, status, last log line
loom logs <workerId>         Full log + result for one worker (e.g. loom logs w00)

After workers finish

loom collect                 Read worker results + synthesize with Claude into .claude-team/summary.md
loom collect --no-ai         Concatenate results without Claude synthesis

Housekeeping

loom stop                    Kill all background workers (SIGTERM)
loom stop <workerId>         Kill one worker
loom reset --force           Wipe .claude-team/ state

Worker types

Each type gets a role-specific system prompt. Read-only roles do not receive --dangerously-skip-permissions.

| Type | Role | Modifies files? | |---|---|---| | explore | Maps code, documents structure and connections | No | | plan | Reasons about approach, produces ordered action plan | No | | code-reviewer | Audits for correctness, security, quality; assigns severity | No | | frontend-developer | UI, components, styling, client-side logic | Yes | | general-purpose | Does whatever the subtask requires (default) | Yes |


Configuration

Run loom init to create a .loomrc in your project directory:

{
  "workers": 2,
  "agentType": "general-purpose",
  "claimTtlMinutes": 30,
  "staleMinutes": 10
}

| Key | Default | Description | |---|---|---| | workers | 2 | Default worker count when none specified | | agentType | general-purpose | Default agent type when none specified | | claimTtlMinutes | 30 | Minutes before a crashed worker's claimed task is re-queued | | staleMinutes | 10 | Minutes of dead-pid + log silence before worker is flagged STALE |


State directory

Session state lives in .claude-team/ (gitignored):

.claude-team/
  session.json              Active session metadata
  context/                  Shared context snapshots (workers read + append)
  tasks/                    Task queue — workers claim atomically via file rename
                            Stale claimed tasks (>claimTtlMinutes) auto re-queued
  workers/
    w00.log                 Live stdout from worker 00
    w00.pid                 PID of worker 00 process
    w00-prompt.md           Prompt sent to worker 00
    w00-result.md           Result summary written by worker 00 on completion
    w00-run.mjs             Node.js runner script (tmux mode)
  summary.md                Final synthesis from loom collect

Requirements

  • Node.js 20+
  • Claude Code CLI (claude) — authenticated
  • tmux (optional — used on Mac/Linux interactive terminals; background processes used on Windows/WSL/CI)

License

MIT