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

sindica

v0.1.2

Published

Deterministic workflow router for AI-agent issue pipelines.

Readme

Sindica

Sindica is a deterministic workflow router for AI-agent issue pipelines.

It does not decide with an LLM. It reads issue state, evaluates typed rules, produces a plan, detects conflicts, and optionally applies actions through a provider adapter.

Install

Sindica requires Node.js 20 or newer.

Install it from npm:

npm install --save-dev sindica

Then configure the current project:

npx sindica config

The config command generates local files only: the standard condo workflow, project-owned skills, a mock fixture, sindica/setup-state.json, package scripts, a Docker Multica runtime, and a README-post-config.md file inside your project.

After config finishes, Sindica setup is not complete. You must follow the generated README-post-config.md and sindica/setup-state.json: validate the mock plan, validate the mock run, ask the human to start the Docker Multica runtime with MULTICA_TOKEN, complete Codex device auth inside that runtime, choose the workspace, then run sindica:doctor and sindica:deploy. Deploy is the step that creates or updates labels, skills, agents, the router, autopilot, and trigger in Multica.

When the Codex token in the Docker runtime expires, run:

npm run sindica:reauth:codex

This logs Codex out inside the persisted runtime volume, then starts codex login --device-auth again.

Quick Check

npm run sindica:plan

For real provider setup, follow the generated README-post-config.md; do not stop at config if agents and autopilot must exist in Multica.

Existing Config

If Sindica files already exist and you want to regenerate the standard files:

npx sindica config --yes

Useful options:

npx sindica config \
  --project-name my-project \
  --base-branch main \
  --config-path my-project.sindica.ts \
  --validation "npm test" \
  --validation "npm run lint" \
  --validation "npm run typecheck" \
  --validation "npm run build"

Commands

  • config: configure Sindica in the current project.
  • plan: load the TypeScript config, fetch issues, evaluate rules, and print planned actions.
  • run: evaluate rules and apply planned actions through the provider.
  • doctor: check provider connectivity.
  • deploy: upsert provider-side labels, skills, agents, router, and autopilot.
  • edit: open the local workflow editor.