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

trellis-fusion

v1.2.2

Published

Fusion overlay for Trellis — plan-first workflow, TDD methodology, context recovery, and enhanced AI skills

Readme

trellis-fusion

Fusion overlay for Trellis — adds plan-first workflow, TDD methodology, context recovery, and enhanced AI skills.

What is Fusion?

Fusion extends Trellis with:

  • 7 AI Skills — brainstorm-plus, write-task-plan, execute-plan-tdd, harvest-learnings, systematic-debugging, review-with-agents, context-continuity
  • 8 Slash Commands/fusion:brainstorm-plus, /fusion:checkpoint, /fusion:resume-context, etc.
  • 2 Hooks — automatic context checkpointing before compaction, session-start recovery
  • Python Scripts — checkpoint/resume tools for context persistence
  • Workflow Docs — fusion-workflow.md, quickref, maintenance guide

Quick Start

# Install into an existing Trellis project
cd your-project
npx trellis-fusion init

# Or auto-initialize Trellis + Fusion in one step
npx trellis-fusion init --with-trellis -u your-name --claude

Commands

trellis-fusion init [target-dir]

Install Fusion overlay into a project.

| Option | Description | |--------|-------------| | --with-trellis | Auto-run trellis init if not initialized | | -u, --user <name> | Developer name (passed to trellis init) | | --claude | Include Claude Code platform | | --codex | Include Codex platform | | --cursor | Include Cursor platform | | --gemini | Include Gemini CLI platform | | -f, --force | Overwrite existing files |

trellis-fusion update [target-dir]

Update Fusion files to the latest version. Uses SHA256 hash comparison to detect user modifications.

| Option | Description | |--------|-------------| | -a, --all | Also update base Trellis before updating Fusion | | --dry-run | Preview changes without applying | | -f, --force | Overwrite user-modified files | | -n, --create-new | Create .new files instead of overwriting |

trellis-fusion status [target-dir]

Show installation status and file integrity report.

Upgrade Flow

When a new version of trellis-fusion is published:

# Update Fusion only
npx trellis-fusion@latest update

# Update Trellis + Fusion together (one command)
npx trellis-fusion@latest update --all

# Preview changes first
npx trellis-fusion@latest update --all --dry-run

Files you haven't modified are updated automatically. Files you've customized are preserved (skipped by default, or use --force / --create-new).

Avoid Hook Loss

If you use trellis-fusion as an overlay on top of official Trellis, the recommended upgrade command is:

npx trellis-fusion@latest update --all

Why this is recommended:

  • Phase A updates base Trellis first
  • Phase B reapplies the Fusion overlay
  • Phase B also re-checks and re-registers:
    • .claude/settings.json Fusion hooks
    • .codex/hooks.json Fusion SessionStart hook
    • .trellis/config.yaml update.skip entries

Avoid running only:

trellis update --force

That command may rewrite .claude/settings.json or .codex/hooks.json and remove Fusion-added hooks.

If that already happened, run:

npx trellis-fusion@latest update --force

If you want to upgrade base Trellis and reapply Fusion in one pass, use:

npx trellis-fusion@latest update --all --force

Quick checks:

  • .claude/settings.json contains fusion-session-start.py
  • .claude/settings.json contains fusion-pre-compact.py
  • .codex/hooks.json contains fusion-session-start.py
  • .trellis/config.yaml has Fusion paths under update.skip

How It Works

  1. Install: Copies template files into your project under .agents/skills/, .claude/commands/fusion/, .claude/hooks/, .trellis/scripts/fusion/
  2. Track: Records SHA256 hashes of all installed files in .fusion/hashes.json
  3. Update: Compares current file hashes against recorded hashes to detect user modifications, then intelligently merges upstream changes

License

Apache-2.0