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

harbor-agent

v0.3.0

Published

Harbor — The Skills Operating System for Claude Code. Automatic skill detection, subagent swarms, meta-harness security, and 90%+ token reduction.

Readme

Harbor is the intelligent meta-harness that turns Claude Code into an autonomous, self-improving agent swarm.

Automatically detect, install, and inject the perfect Claude Skills. Coordinate subagent swarms. Enforce security with a Ruflo-inspired meta-harness. Reduce token usage by 90%+.

npm version Stars License: MIT Node

GitHub: github.com/tiger3homs/harbor


Why Harbor?

Claude Code is powerful, but it has three major problems:

  1. Skills are passive — Users must manually run npx skills add ... every time
  2. Context bloat — Tool outputs and history explode token usage
  3. No coordination — No built-in way to run multiple specialized agents

Harbor solves all three with a single, elegant system.


Key Features

🧠 Automatic Skill Intelligence

  • Detects intent from natural language
  • Installs missing skills automatically via npx skills
  • Injects full SKILL.md content into Claude’s context in real time
  • 20+ built-in skill patterns (playwright, api-docs, security, docker, etc.)

🐝 Subagent Swarms

  • Spawn specialized subagents with dedicated skills
  • Parallel execution with consensus modes (raft, byzantine, gossip)
  • Self-healing swarm coordination (inspired by Ruflo)

🔒 Meta-Harness Security

  • Ruflo-style manifest fingerprinting
  • Automatic API key & secret redaction
  • MCP governance policies
  • Swarm health monitoring

⚡ 90%+ Token Reduction

  • Headroom + Caveman compression stack
  • Layered memory retrieval (search → timeline → full)
  • Reversible CCR compression

🛠️ Structured Workflows

  • Mandatory /plan/act with architect/editor split
  • Interactive TUI (harbor skills --tui)
  • Docker-ready with one-command deployment

Quick Start

# Install globally
npm install -g harbor

# Start the daemon
harbor start

# Launch the beautiful TUI
harbor skills --tui

Or with Docker:

docker-compose up -d

How It Works

graph TD
    A[User Message] --> B[Harbor Intent Detector]
    B --> C{Skill Match?}
    C -->|Yes| D[Auto-Install + Inject SKILL.md]
    C -->|No| E[Proceed Normally]
    D --> F[Claude Code with Skill Loaded]
    F --> G[Subagent Swarm Coordination]
    G --> H[Meta-Harness Security Layer]

Core Capabilities

| Capability | Description | Token Savings | |------------------------------|--------------------------------------------------|---------------| | Skill Detection & Injection | Automatic SKILL.md activation | High | | Subagent Orchestration | Parallel specialized agents | Very High | | Meta-Harness + Redaction | Ruflo-style security & swarm management | — | | Multi-layer Compression | Headroom + Caveman + CCR | 60–95% | | Progressive Memory | Claude-Mem style layered retrieval | ~10× | | Structured Plan/Act | caveman-code style workflows | — |


API Highlights

# Detect and activate skills automatically
POST /skills/detect          { "task": "write e2e tests for checkout" }

# Spawn subagents
POST /subagents/spawn        { "skill": "playwright-cli", "task": "..." }

# Check swarm health
GET  /harness/status

# Redact sensitive data
POST /harness/redact

Deployment

Harbor ships with first-class Docker support:

docker build -t harbor .
docker run -p 37701:37701 harbor

See deploy/README.md for Railway, Render, Fly.io, Kubernetes, and PM2 instructions.


Comparison

| Tool | Skill Auto-Detection | Subagent Swarms | Meta-Harness | Token Reduction | Security | |-------------------------|----------------------|------------------|--------------|------------------|----------| | Harbor | ✅ Yes | ✅ Yes | ✅ Yes | ✅ 90%+ | ✅ Ruflo | | Claude Code (vanilla) | ❌ Manual | ❌ No | ❌ No | ❌ None | Basic | | Cursor / Windsurf | Partial | Limited | No | Partial | Basic | | Other CLI agents | No | No | No | Varies | None |


Roadmap

  • [ ] Real-time skill injection into running Claude sessions
  • [ ] Vector memory + semantic RAG
  • [ ] Full YAML recipe engine
  • [ ] Visual swarm dashboard (TUI + web)
  • [ ] Claude Code Marketplace plugin

Built With

Harbor combines the best ideas from:


Contributing

We welcome contributions! See CONTRIBUTING.md.


License

MIT © tiger3homs


Links


Harbor — Give Claude Code its own operating system.