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

ritus

v2.0.4

Published

AI-assisted development workflow plugin with skills and sync tooling.

Readme

Ritus

Pronounced: REE-tus /ˈriː.tus/ - from Latin, meaning a prescribed rite or procedure.

A disciplined workflow for reliable AI-assisted development. Ritus uses skill-based architecture, on-demand loading, chain-based routing, and independent verification to work across Claude Code, GitHub Copilot, and any language or stack.


Formula

AI Agent Workflow = Primary rules + Core workflow + Project profile + Runtime context

| Layer | File(s) | What it does | |-----------------|---------------------------------------------------|------------------------------------------------------| | Primary rules | CLAUDE.md / copilot-instructions.md | User's behavioral directives — highest authority | | Core workflow | Skills (via plugin) | On-demand skills with subagent dispatch instructions | | Project profile | docs/profiles/*.ymldocs/PROJECT_CONTEXT.md | Project facts rendered from YAML data | | Runtime context | Current task file + active skill | What to work on now |


Installation

Plugin (recommended)

Claude Code:

  1. Add marketplace
  2. Install Ritus
/plugin marketplace add precise-alloy/ritus
/plugin install ritus

GitHub Copilot CLI:

  1. Add the marketplace
  2. Fetch the plugin manifest
  3. Install Ritus
/plugin marketplace add precise-alloy/ritus
/plugin marketplace browse precise-alloy-marketplace
/plugin install ritus@precise-alloy-marketplace

After plugin install, tell your AI agent:

setup ai work flow

or just

/setup

The setup skill automatically scaffolds all project files (docs/, .env.example) and runs an 11-question interview to fill your project profiles.

What gets installed

The /sync skill copies template files into your project. Files are never overwritten once they exist.

| Strategy | Behavior | Files | |----------------------|---------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | user-owned | Created once, you own it — edit freely | docs/profiles/project.yml, team.yml, runtime.yml, docs/PROJECT_CONTEXT.md, docs/ARCHITECTURE.md, docs/CODE_CONVENTIONS.md, docs/TEST_CONVENTIONS.md, docs/DECISIONS.md, docs/LESSONS.md, docs/CUTOFF.md, docs/STAKEHOLDERS.md | | append-only | Created once, only appended to | docs/CHANGELOG.md | | scaffold | Directory placeholder | docs/tasks/README.md, docs/memory/README.md | | project-specific | Created once, you own it — extend as needed | .env.example |

Run /sync check missing to see what's missing, or /sync create missing to create missing files.

Note for upgrading projects: If you previously installed Ritus and have a .ritus/scripts/ directory in your project, it can be safely deleted. These scripts now live in the plugin's scripts/ directory and are no longer copied into consuming projects.

For existing codebases, follow up with:

run repo-scan

This detects auth patterns, build commands, testing conventions, and coding conventions from your codebase.

Upgrading

Plugin: updates automatically — skills are replaced. On next session start, the sync hook reports missing project files. Run the setup again to create any new files. Existing user files are never overwritten.

What gets generated

By plugin (workflow-owned):

| Component | What it contains | |-----------|---------------------------------------------------------------------------------------------| | 18 skills | On-demand workflow and standard skills (includes start-ritus meta-skill for auto-routing) |

By setup / repo-scan (user-owned in target project):

| File | What it contains | |----------------------------|-----------------------------------------------------------| | docs/PROJECT_CONTEXT.md | Always-on project facts (rendered from profiles) | | docs/profiles/*.yml | Source of truth — project, team, runtime data | | docs/ARCHITECTURE.md | System architecture (header filled, rest progressive) | | docs/CODE_CONVENTIONS.md | Project-specific coding conventions (filled by repo-scan) | | docs/TEST_CONVENTIONS.md | Project-specific test conventions (filled by repo-scan) |


Skills

Skills are self-contained SKILL.md files loaded on-demand. Each has YAML frontmatter (name + description) so the agent scans relevance without loading the full content. Subagent dispatch (model, effort, constraints) is defined in the start-ritus skill and in each skill's dispatch instructions section.

Workflow skills

| Skill | Purpose | |-----------------|---------------------------------------------------------------------------------| | start-ritus | Entry-point meta-skill — golden rules, dispatch instructions, workflow tracking | | brainstorm | Explore unclear requirements — propose 2-3 approaches before triage | | triage | Classify changes by blast radius, contract impact, validation clarity | | ticket-review | Analyze requirements (plain text or ticket) → produce task files | | execute-task | Implement a task file — load context, implement steps, report | | verify-task | Independent per-task verification (dispatched as fresh haiku subagent) | | pr-review | Adversarial review at ticket/PR level (dispatched as fresh sonnet subagent) | | address-feedback | Read PR review comments, generate fix tasks, commit locally (no push) | | wrap-up | Post-review cleanup — promote exploration entries, verify docs, report status | | debug | Systematic 4-phase root cause investigation with evidence grading | | setup | Setup interview — write YAML profiles, render docs/PROJECT_CONTEXT.md | | sync | Scaffold or check project files — create missing docs, profiles, scripts | | repo-scan | Detect stack, auth, build commands from existing codebase |

Standard skills (loaded alongside workflow skills when applicable)

| Skill | Load when | |----------------------|----------------------------------------------------------------------| | code-conventions | Any code change | | testing-policy | New service, endpoint, worker, or bug fix | | tdd | New business logic or bug fix — enforces red-green-refactor | | security | Auth, billing, migrations, tenant isolation, infra, shared contracts | | definition-of-done | STANDARD or EPIC tasks |

Skill chains

Explore/brainstorm:   brainstorm → triage → ticket-review
Plan/implement:       triage → ticket-review → execute-task → verify-task → pr-review → wrap-up
Debug/fix:            debug → pr-review → wrap-up
Review:               pr-review (sonnet subagent) → wrap-up
Address feedback:     address-feedback → execute-task → verify-task → [pr-review re-check → wrap-up]
Iterate:              wrap-up → user feedback → triage or brainstorm (restarts chain)

Daily workflow

Write requirement
  → Agent loads triage skill → classifies (TRIVIAL / SIMPLE / STANDARD / EPIC)
  → Triage recommends model + effort from routing table

  TRIVIAL:                Agent implements directly — no task file, self-verifies
  SIMPLE / STANDARD / EPIC:
    → ticket-review produces task files (parallel groups when independent)
    → execute-task implements each task
    → verify-task subagent (haiku) reviews each task independently
    → pr-review subagent (sonnet) runs adversarial review at ticket level

  If pr-review approves → wrap-up (promote exploration, verify docs) → ready for merge/PR
  If pr-review rejects  → fix → re-verify → re-review until approved

  Human:
    → Reviews diff
    → Commits + pushes
    → If PR receives review comments → address-feedback → fix → verify → local commit
    → Or provides follow-up changes → workflow restarts from triage/brainstorm

For the full workflow diagram, see docs/WORKFLOW_DIAGRAMS.md.


Repository structure

marketplace.json                 ← Copilot marketplace manifest
.claude-plugin/
    marketplace.json       ← Claude marketplace manifest
    plugin.json   ← Claude Code plugin manifest
README.md                        ← this file
.env.example                     ← remote API credentials template
skills/
  start-ritus/SKILL.md     ← entry-point meta-skill: golden rules, dispatch instructions
  brainstorm/SKILL.md
  triage/SKILL.md
  ticket-review/SKILL.md
    templates/               ← review doc, task file, QA, EPIC memory templates
  execute-task/SKILL.md
  verify-task/SKILL.md
  pr-review/SKILL.md
  address-feedback/SKILL.md
  wrap-up/SKILL.md
  shared/
    remote-api-access.md     ← remote API rules (shared by ticket-review + pr-review + address-feedback)
  debug/SKILL.md
  setup/SKILL.md
  sync/SKILL.md
    script/sync.ts               ← project file scaffolding script
  repo-scan/SKILL.md
  code-conventions/SKILL.md
  testing-policy/SKILL.md
  tdd/SKILL.md
  security/SKILL.md
  definition-of-done/SKILL.md
docs/                            ← user-owned (scaffolded into target project)
  PROJECT_CONTEXT.md             ← always-on project facts (rendered from profiles)
  profiles/
    project.yml                  ← project data (source of truth)
    team.yml                     ← team data
    runtime.yml                  ← runtime data
  tasks/                         ← execution task files (created during work)
  memory/                        ← multi-session EPIC context snapshots
  ARCHITECTURE.md
  CODE_CONVENTIONS.md
  TEST_CONVENTIONS.md
  CUTOFF.md
  DECISIONS.md
  CHANGELOG.md
  LESSONS.md
  WORKFLOW_DIAGRAMS.md           ← visual workflow reference (human-only)
  qa/                            ← EPIC QA summaries (when QA mode is active)
scripts/                         ← remote API integration scripts (plugin-owned)
  remote-api.ts                  ← CLI dispatcher for remote API providers
  providers/
    types.ts                     ← Provider interface and shared types
    http.ts                      ← HTTP plumbing (retry, auth, env loading)
    provider-jira.ts             ← Jira Cloud (tickets, comments, changelog, attachments)
    provider-ado.ts              ← Azure DevOps (PRs + work items)
    provider-github.ts           ← GitHub (PRs)
templates/                       ← plugin-owned (source templates, not copied to projects)

Ongoing maintenance

docs/profiles/project.yml — fill during work

Edit the .yml file. The AI agent re-reads docs/PROJECT_CONTEXT.md on next session start.

| YAML field | When to fill | |-----------------------|----------------------------------------------| | project_constraints | Add rules as discovered | | authentication.* | During repo-scan or first auth-touching task | | error_handling | During repo-scan | | build_commands.* | During repo-scan |

docs/CODE_CONVENTIONS.md — fill by repo-scan, refine manually

Repo-scan detects type system, naming, module structure, error handling, logging. Refine after repo-scan.

docs/TEST_CONVENTIONS.md — fill by repo-scan, refine manually

Repo-scan detects test framework, naming, mocking strategy, fixtures, async patterns. Refine after repo-scan.

docs/ARCHITECTURE.md — fill progressively

| Section | When | |----------------------------|----------------------------------------------| | Apps/services and purposes | During first EPIC or system overview session | | Key flows | Each time a major flow is built | | Runbook patterns | First time a pattern is used |

docs/DECISIONS.md — record non-obvious decisions

Written automatically by ticket-review (architectural choices), debug (escalation gate), and pr-review (design concerns). Also written manually for any non-obvious constraint.

docs/LESSONS.md — one entry per dangerous pattern found

Two triggers: (1) after bugs that reveal "never again" patterns, (2) when an EPIC memory file expires.

docs/memory/ — EPIC context files expire

Expiry days set by team size (solo=60, small=30, medium=21, large=14). Before deleting an expired memory file:

  1. Extract ## Decisions → append to docs/DECISIONS.md
  2. Extract lessons → append to docs/LESSONS.md
  3. Write one-line summary → docs/CHANGELOG.md
  4. Delete the memory file

Key resources

| Resource | Purpose | |--------------------------------------------------------|--------------------------------------| | docs/PROJECT_CONTEXT.md | Always-on project facts | | docs/profiles/ | YAML data files (source of truth) | | docs/CODE_CONVENTIONS.md | Project-specific coding conventions | | docs/TEST_CONVENTIONS.md | Project-specific test conventions | | docs/ARCHITECTURE.md | System architecture | | docs/DECISIONS.md | Architecture decisions and rationale | | docs/WORKFLOW_DIAGRAMS.md | Visual workflow reference |