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

tila-cli

v0.2.7

Published

tila CLI — durable state & coordination for multi-machine agentic work

Readme

tila-cli

Command-line interface for tila — a state-and-coordination engine for multi-machine agentic work.

Installation

tila-cli is not published to npm yet. Run from source:

git clone https://github.com/davebream/tila.git
cd tila
pnpm install
pnpm --filter tila-cli dev -- --help

Use pnpm --filter tila-cli dev -- <command> in place of tila <command> until packaged binaries are published.

Commands

| Command | Description | |---------|-------------| | task | Manage tasks (create, list, show, update, claim, release) | | work-unit | Manage work units — canonical public alias for entities | | entity | (deprecated — use work-unit) Manage entities | | record | Manage typed records (get, set, patch, list, history, archive) | | artifact | Manage artifacts (put, search, list) | | init | Initialize a tila project | | deploy | Deploy the Worker to Cloudflare | | destroy | Tear down all project resources | | doctor | Check project health | | open | Open the tila dashboard in your browser | | mcp | MCP server configuration | | gate | Manage coordination gates | | signal | Send a signal to a target | | presence | Show all machines (active and inactive) | | journal | Query the project journal | | schema | Manage project schema | | search | Unified full-text search across entities and artifacts | | summary | Show project summary | | state | List all active claims | | token | Manage project API tokens | | template | Manage entity templates | | index | Manage index artifacts | | config | View project configuration | | migrate | Migrate data from another system into tila | | reset | Reset all project data |

Initializing a project

tila init --cloudflare     # Provision Worker + DO + D1 + R2 on Cloudflare
tila init --inherit        # Join an existing project (teammate onboarding)
tila init --local          # Local SQLite backend, no Cloudflare account needed
tila init --github-app     # Register a GitHub App for repo-scoped auth
tila init --skip-github    # Skip GitHub App setup (use tila-token auth)

GitHub auth is configured automatically during tila init --cloudflare. See GitHub-scoped Auth for details.

Common workflows

# Create and claim a task
tila task new "Migrate auth to sessions"
tila task claim T-abc123

# Upload an artifact against a claimed task
tila artifact put plan.md --kind=plan --resource=T-abc123 --fence=1

# Search across all artifacts
tila artifact search "auth migration"

# Manage typed records
tila record set service api ./api.yaml
tila record get service api
tila record patch service api --json '{"owner":"infra"}' --fence=1

# Check project health
tila doctor
tila summary
tila presence

MCP server setup

tila mcp init              # Auto-detect editor and write MCP config

See packages/mcp-server/README.md for manual configuration and the full tool list.