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

synaphex

v3.2.0

Published

Project memory management for Claude Code — memorize, recall, and link project knowledge

Readme

synaphex v2.0.0

Multi-agent task automation for Claude Code. Synaphex provides a complete pipeline for code generation, research, and review with human oversight.

Quick Start

npm install -g synaphex
synaphex --check

For detailed setup, see INSTALLATION.md.

What It Does

Synaphex automates tasks using a 6-agent pipeline:

  1. Examiner — Analyzes your codebase and project memory
  2. Researcher — Researches unfamiliar technologies (optional)
  3. Planner — Creates detailed implementation plan
  4. Coder — Generates and applies code changes
  5. Answerer — Handles architectural questions and escalations
  6. Reviewer — Validates changes and provides feedback

All tasks are user-orchestrated — you control when each step runs.

Usage

In Claude Code, use slash commands:

/synaphex:create          Create a new project
/synaphex:task            Run a task through the pipeline
/synaphex:memorize        Analyze codebase and update memory
/synaphex:remember        Link parent project memory
/synaphex:settings        View configuration

Example:

/synaphex:task
Task: "Add user authentication with JWT tokens"
Research: Yes

Installation & Setup

  • INSTALLATION.md — Install on macOS, Linux, Windows and configure IDE plugins

Documentation

For New Users

  1. Getting Started (5 min) — Quick start guide
  2. How-To Guide — Common task workflows
  3. Examples — Real-world scenarios

Reference

Migration & IDE Integration

Project Memory

Synaphex manages project knowledge at ~/.synaphex/<project>/:

.synaphex/
├── settings.json          # Agent configuration
├── memory/                # Project knowledge
│   ├── MEMORY.md         # Index
│   ├── architecture.md   # System design
│   ├── conventions.md    # Coding standards
│   └── patterns.md       # Common patterns
└── tasks/                # Task artifacts
    └── task_<slug>/
        ├── task-meta.json
        ├── analysis.md
        ├── plan.md
        └── research.md

Child projects can link parent memory for consistency:

synaphex task-remember parent-project my-project

Installation Methods

From npm (Recommended)

npm install -g synaphex
synaphex --check

From Source

git clone https://github.com/cyhunblr/synaphex.git
cd synaphex
npm install
npm run build
npm link

Via Claude Code Plugin

  1. Open Claude Code settings
  2. Navigate to Plugins → Available
  3. Search for "synaphex"
  4. Click Install

Uninstallation

# Remove npm package
npm uninstall -g synaphex

# Remove IDE plugins
# - Claude Code: Settings → Plugins → Synaphex → Uninstall
# - VSCode: Extensions → Synaphex → Uninstall
# - Antigravity: Settings → Extensions → Synaphex → Remove

# Remove all project data
rm -rf ~/.synaphex

Version History

v2.0.0 (April 2026)

  • User-orchestrated task workflow
  • 6-agent pipeline with validation
  • Comprehensive documentation suite
  • State machine with error recovery
  • Question escalation and decision tracking
  • Multi-project memory inheritance

For full changelog, see CHANGELOG.md.

Support

License

See LICENSE for details.