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

@magic-ingredients/no-tickets

v2.0.3

Published

CLI, MCP server, and SDK for no-tickets — ticketless project management for AI teams

Readme

@magic-ingredients/no-tickets

Ticketless project management for AI teams. CLI, MCP server, and SDK in one package.

What is no-tickets?

no-tickets is a project management platform for teams building with AI agents. Instead of manually creating and updating tickets, your dev tools push progress to a dashboard automatically.

  • Developers push project state from their repos
  • PMs see real-time progress on a hosted dashboard
  • AI agents are first-class — their work shows up alongside human work

Quick Start

# Set up a repo (authenticates, connects to project, scaffolds .notickets/)
npx no-tickets init

# Push current state to dashboard
npx no-tickets push

CLI Commands

npx no-tickets init              # Auth + connect to project + scaffold
npx no-tickets push              # Push state to dashboard
npx no-tickets push --ci         # Push from CI (authoritative scores)
npx no-tickets push --dry-run    # Preview what would be pushed
npx no-tickets status            # Connection and auth status
npx no-tickets validate          # Check .notickets/ files against spec
npx no-tickets token create      # Create push token for CI
npx no-tickets token list        # List push tokens
npx no-tickets token revoke      # Revoke a push token

MCP Server

The same package serves as an MCP server when launched by an MCP client (auto-detected via stdin):

{
  "mcpServers": {
    "no-tickets": {
      "command": "npx",
      "args": ["-y", "@magic-ingredients/no-tickets"],
      "env": {
        "NO_TICKETS_TOKEN": "nt_push_xxxxx"
      }
    }
  }
}

Works with Claude Desktop, Cursor, Copilot, Windsurf, and any MCP-compatible tool.

SDK

For programmatic use (e.g., from tiny-brain or custom tooling):

import { computeState, computeDiff, parseFrontmatter } from '@magic-ingredients/no-tickets/sdk';
import type { FeatureState, Phase, StateSnapshot } from '@magic-ingredients/no-tickets/types';

The .notickets/ Format

An open markdown spec for describing work:

.notickets/
├── user-auth/          # epic directory
│   ├── epic.md         # epic definition
│   ├── email-signup.md # feature
│   └── oauth-login.md  # feature
└── payments/
    ├── epic.md
    └── stripe.md

Each file uses YAML frontmatter + markdown. See SPEC.md for the full format specification.

Works with tiny-brain

tiny-brain is an open-source Claude Code plugin that adds TDD enforcement, quality analysis, and adversarial code review. When used with no-tickets, it also pushes telemetry data (model usage, phase compliance, quality scores) that powers the engineering dashboard.

tiny-brain is optional — no-tickets works with any tool.

Contributing

This project uses pnpm as its package manager. The correct version is enforced via corepack:

corepack enable
pnpm install
pnpm run build
pnpm run test
pnpm run lint

Documentation

Full docs at docs.no-tickets.com

License

Apache 2.0 — see LICENSE