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

ptah-cli

v0.3.1

Published

Meta-orchestration framework for cross-repository AI coding coordination

Readme

Ptah

Cross-repo AI orchestration — coordinate changes across multiple repositories with dependency-aware planning, wave-based execution, and automated verification.

Named after the Egyptian god of craftsmen — creation through thought and speech.

Install

npm install -g ptah-cli

Or use directly:

npx ptah-cli init my-project

Quick Start

  1. Create a project: ptah init my-project --cli-tool claude-code
  2. Register repos: Open your AI tool, run ptah:register for each repository
  3. Start orchestrating: Describe a change → ptah:planptah:executeptah:verify

How It Works

Ptah extends your AI coding tool with multi-repo awareness:

Register repos → Discover contracts → Plan changes → Execute in waves → Verify
  • Ecosystem learning — scans repos to understand structure, frameworks, and dependencies
  • Contract discovery — auto-detects API contracts, shared types, and schema dependencies
  • DAG-based planning — decomposes changes into atomic tasks ordered by cross-repo dependencies
  • Wave execution — foundation repos first, consumers later — maximizes safe parallelism
  • Diff-based verification — AI reviewers validate each task's output against acceptance criteria

Example: Adding createdBy Across 3 Repos

# Set up your project
ptah init my-saas --cli-tool claude-code

# In your AI tool:
ptah:register ~/code/shared-types --role shared-lib
ptah:register ~/code/api-server --role backend
ptah:register ~/code/web-app --role frontend

ptah:discover  # Finds: shared-types → api-server, shared-types → web-app

ptah:plan "Add a createdBy field to all user-generated resources"
# Wave 1: shared-types (add CreatedBy to base types)
# Wave 2: api-server + web-app (consume updated types, in parallel)

ptah:execute   # Runs tasks in wave order, collects diffs
ptah:verify    # AI reviews each diff against task criteria

Commands

CLI (terminal)

| Command | Description | |---------|-------------| | ptah init <name> | Create a new project (auto-installs skills) | | ptah list | List all projects | | ptah setup --tool <tool> | Install skills into AI tool | | ptah check-permission <action> | Check permission level for an action | | ptah status | Show lifecycle and execution progress | | ptah help | Show help |

Skills (inside AI tool)

| Skill | Description | |-------|-------------| | ptah:register | Register a repository | | ptah:learn | Scan ecosystem structure | | ptah:discover | Discover cross-repo contracts | | ptah:plan | Generate dependency-aware task plans | | ptah:execute | Execute plans in wave order | | ptah:verify | Verify changes against criteria | | ptah:status | Show workspace state | | ptah:help | Show command reference |

Setup by Tool

Claude Code

ptah init my-project --cli-tool claude-code
# Skills auto-installed to ~/.claude/skills/

Gemini CLI

ptah init my-project --cli-tool gemini-cli
# Skills auto-installed to ~/.gemini/antigravity/skills/

Manual setup (if auto-install didn't run):

ptah setup --tool claude-code  # or gemini-cli

Configuration

Projects use role-based permission tiers for safety control:

| Tier | Default | Actions | |------|---------|---------| | read | auto | status checks, config reads, plan viewing | | write | confirm | file edits, git commits, branch creation | | destructive | confirm | git push, branch deletion, state reset |

Set mode: "auto-accept" to auto-approve all actions, or configure per-tier overrides in config.json.

License

MIT