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

patchwork-agent

v0.1.0

Published

Autonomous SWE agent — triage and fix issues from Sentry, Asana, Linear, and Jira with Claude

Downloads

288

Readme

Patchwork

Turn your backlog into pull requests — automatically.

Patchwork Dashboard

Patchwork connects to your existing project management tools, picks up tasks, and uses Claude Code to implement them in isolated git worktrees. You review the diff, click Accept, and a PR appears. That's it.

No API keys to manage. No per-token billing. No workflow files to write. Patchwork runs locally on your machine using your Claude Code subscription (Pro, Max, or Team) and plugs directly into the tools you already use.


Get started in 2 minutes

Prerequisites: Bun · Claude Code · GitHub CLI (gh auth login)

bunx patchwork-agent

Your browser opens at localhost:7842/setup. The setup wizard walks you through connecting your first integration (Asana, Linear, Jira, or Sentry) and pointing Patchwork at a repo. Done.

After setup, Patchwork polls your board, triages tasks with Claude, and waits for your go-ahead before touching any code.

The full loop

Your backlog (Asana / Linear / Jira / Sentry)
  → Patchwork picks up new tasks
  → Claude triages: is this actionable?
  → You confirm: "Start this one"
  → Claude implements in an isolated worktree
  → You review the diff in the dashboard
  → Accept → branch pushed, PR created
  → Discard → worktree removed, nothing changes
  → Skip → task ignored

Install globally

bun install -g patchwork-agent
# or
npm install -g patchwork-agent

CLI

patchwork start     Start the daemon and open the dashboard
patchwork stop      Stop the daemon
patchwork update    Update to the latest version
patchwork doctor    Check your setup for problems
patchwork version   Show version

Why Patchwork?

  • Works with your Claude Code plan — uses the claude CLI you already have. No separate API keys, no surprise bills
  • Connects to what you use — Asana, Linear, Jira, and Sentry out of the box
  • Fully local — runs on your machine, against your repos, with your credentials. Nothing leaves your environment
  • Human in the loop — every task is triaged, confirmed before work starts, and approved before anything ships
  • Real-time visibility — live dashboard with streaming progress, diffs, triage results, and one-click actions

Features

Integrations

| Source | What Patchwork pulls | |--------|---------------------| | Asana | Tasks from projects, with severity from tags/custom fields | | Linear | Issues with team/project/status/assignee/label/priority filters | | Jira | Issues via JQL — simple filter mode or raw JQL | | Sentry | Unresolved errors with full stacktraces (auto-filters noise like CSP, CORS, timeouts) |

Dashboard

A full React web UI at localhost:7842 — no terminal babysitting required.

  • Live issue list with real-time WebSocket updates
  • Streaming progress: watch Claude work in real-time with tool usage, elapsed time, and cost
  • Syntax-highlighted diff viewer for completed fixes
  • Triage results with confidence scores and implementation plans
  • One-click actions: Start, Accept, Discard, Skip, Retry
  • Triage feedback — propose an alternative approach during confirmation; Claude revises the plan in real-time without re-exploring the codebase
  • Settings management and connection testing for all integrations
  • First-run setup wizard — configure everything from the browser

Notifications

Optional Telegram integration with forum topics — each task gets its own thread with live progress updates and inline action buttons.

Smart Pipeline

  • Triage first — Claude reads the codebase and decides if a task is actionable before spending time on it
  • Priority queue — critical issues are handled first. Queue pauses while awaiting your approval
  • Isolated worktrees — every fix runs in its own git worktree. Your working tree is never touched
  • Session continuity — triage context carries over to implementation, so Claude doesn't re-read the codebase twice
  • Auto-commit — tests committed separately from code changes for a clean PR history
  • Lint/format gate — optional lintCommand runs after implementation, auto-commits formatting fixups, and fails the task if unfixable lint errors remain
  • Test plan in PR — Claude generates manual verification steps included in every PR description

Development

bun run dev      # daemon + Vite dev server with HMR on :5173
bun test         # run the test suite

Adding a new source integration

  1. Implement SourceAdapter from src/sources/types.ts
  2. Add config type in src/config.ts
  3. Wire it up in src/daemon.ts

Adding a notification channel

  1. Create src/notifications/yourchannel.ts matching the Telegram interface
  2. Add to WorkspaceRuntime in src/daemon.ts