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

tribunal-kit

v2.4.0

Published

Anti-Hallucination AI Agent Kit — 33 specialist agents, 25 slash commands, Swarm/Supervisor engine, and Tribunal review pipeline for Cursor, Windsurf, and Antigravity.

Readme

🏛️ Tribunal Anti-Hallucination Agent Kit

The ultimate guardrail system for AI IDEs (Cursor, Windsurf, Antigravity)

npm version license PRs Welcome

A plug-in .agent/ folder that upgrades your AI with 32 specialist agents, 25 slash commands, 8 parallel Tribunal reviewers, and a powerful Swarm/Supervisor multi-agent orchestration engine.


⚡ Quick Install

Get started in seconds:

npx tribunal-kit init

Or install globally to use on any project:

npm install -g tribunal-kit
tribunal-kit init

Note: This installs the .agent/ folder containing all agents, workflows, skills, and scripts directly into your project.


⚠️ Important: .gitignore Notice

If you use AI-powered editors like Cursor or Windsurf, adding .agent/ to your .gitignore may prevent the IDE from indexing the workflows. Slash commands like /generate or /review won't appear in your chat suggestion dropdown.

💡 Recommended: Keep .agent/ out of .gitignore. If you want it to remain local-only, add it to your repo's exclude file instead:

# Add this to .git/info/exclude (not .gitignore)
.agent/

📦 What's Included

| Component | Count | Description | |---|:---:|---| | 🤖 Agents | 32 | Specialist AI personas including Supervisor, Worker Registry, and Contract schemas | | 🔄 Workflows| 25 | Slash command procedures including /swarm orchestration | | 🧠 Skills | 44 | Domain-specific knowledge modules for targeted expertise | | 🛠️ Scripts | 13 | Python utility scripts (checklist, verify, preview, session, swarm dispatcher, etc.) |


⚙️ How It Works

🎯 Auto-Agent Routing

No need to mention agents explicitly. The system automatically detects and summons the right specialist for the job:

You: "Add JWT authentication" AI: 🤖 Applying @security-auditor + @backend-specialist...

You: "Fix the dark mode button" AI: 🤖 Applying @frontend-specialist...

You: "Login returns 500 error" AI: 🤖 Applying @debugger for systematic analysis...

You: "/swarm build a REST API, PostgreSQL schema, and documentation" AI: 🤖 supervisor-agent → dispatching 3 Workers in parallel...

⚖️ The Tribunal Pipeline

Every piece of generated code goes through rigorous, parallel reviewers before you even see it:

You type /generate →
  Maker generates at low temperature →
  Reviewers audit in parallel (logic, security, types, ...) →
  Human Gate: you approve the diff before it writes to disk

⌨️ Slash Commands

Supercharge your workflow with these built-in commands:

| Command | Description | |---|---| | /generate | Full Tribunal pipeline: generate → review → approve | | /create | Build new features or apps from scratch | | /enhance | Improve existing code safely without breaking it | | /deploy | 3-gate production deployment process |

| Command | Description | |---|---| | /review | Audit existing code — no generation | | /test | Generate or audit tests | | /tribunal-full | Run all 8 reviewers simultaneously | | /tribunal-backend | Logic + Security + Dependency + Types | | /tribunal-frontend | Logic + Security + Frontend + Types | | /tribunal-database| Logic + Security + SQL | | /tribunal-mobile | Logic + Security + Mobile (React Native, Flutter, Web) | | /tribunal-performance| Logic + Performance (Optimization & bottlenecks) |

| Command | Description | |---|---| | /brainstorm | Explore options before implementation | | /plan | Create a structured architectural plan file only | | /orchestrate | Multi-agent coordination for complex tasks | | /swarm | Supervisor decomposes multi-domain goals → parallel Workers → unified output | | /ui-ux-pro-max | Advanced UI/UX design workflow |

| Command | Description | |---|---| | /debug | Systematic root-cause investigation | | /preview | Local dev server control | | /status | Tribunal session dashboard |


💻 CLI Reference

Manage your installation directly from the terminal:

tribunal-kit init                        # Install into current directory
tribunal-kit init --force                # Overwrite existing .agent/ folder
tribunal-kit init --path ./my-app        # Install in specific directory
tribunal-kit init --quiet                # Suppress output (for CI/CD)
tribunal-kit init --dry-run              # Preview without writing files
tribunal-kit update                      # Re-install to get latest version
tribunal-kit status                      # Check installation status

🧰 Utility Scripts (Post-install)

python .agent/scripts/checklist.py .                  # 📋 Pre-commit audit
python .agent/scripts/verify_all.py                   # 🚀 Pre-deploy full suite
python .agent/scripts/auto_preview.py start           # 🌍 Start dev server
python .agent/scripts/session_manager.py save "note"  # 💾 Save session state

🤝 Compatible IDEs

| IDE | Support Level | |---|---| | Cursor | ✅ Reads .agent/ automatically | | Windsurf | ✅ Reads .agent/ automatically | | Antigravity | ✅ Native .agent/ support | | GitHub Copilot | ✅ Manual setup: Copy GEMINI.md to .github/copilot-instructions.md |