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

claudius-core

v0.13.1

Published

Autonomous orchestration layer for Claude Code

Readme

Claudius

Autonomous orchestration layer for Claude Code.

Claudius sits on top of CC's native features (agent teams, hooks, skills, MCP, persistent memory, worktree isolation) to maximize autonomous potential across any project — round-the-clock autonomous work, minimal human intervention, within human-set constraints.

Setup

git clone https://github.com/SharadKumar/claudius.git
cd claudius
bun install
bun run build

Load as Plugin

# Run Claude Code with Claudius loaded from your local checkout
claude --plugin-dir /path/to/claudius

CLI

npx claudius-core init    # Scaffold .claudius/ config in a target project
claudius daemon install    # Install heartbeat as login service

Usage

/build #42           # Implement ready work item #42
/build               # Pick next ready issue

/backlog #8          # Decompose spec epic into work items
/backlog "add cache" # Capture ad-hoc work item
/review              # Code review current changes
/reflect             # Session retro → memory

/pulse               # Status: recent work, budget, upcoming
/pulse run           # Trigger one autonomous cycle
/pulse ideate        # Brainstorm improvements, create issues

Releases

Versioned releases are available on GitHub Releases. Each release includes a changelog and a claudius-vX.Y.Z.tar.gz plugin bundle you can load directly.

# Pin to a specific version
VERSION=0.1.0
curl -L https://github.com/SharadKumar/claudius/releases/download/v${VERSION}/claudius-v${VERSION}.tar.gz \
  | tar -xz -C ~/claudius-v${VERSION}
claude --plugin-dir ~/claudius-v${VERSION}

Architecture

Engagement Layer (terminal / chat-sdk)
    ↓
Orchestration Layer (3 agents, 8 skills, 4 hooks, 2 rules)
    ↓
Tracking Layer (GitHub CLI)
    ↓
Execution Layer (Claude Code native)
    ↓
Deploy Layer (Vercel / Fly.io)

Project Structure

All plugin components live under .claude/ — single source of truth for both the plugin system and claudius init:

.claude/
  agents/          # manager, builder, reviewer
  skills/          # product, solution, spec, backlog, build, pulse, reflect, review
  hooks/           # guardian, cost-watch, context-inject, etc.
  commands/        # slash command definitions
  rules/           # workflow, autonomy, continuity
  settings.json    # hooks wiring
.claude-plugin/
  plugin.json      # explicit paths to all components
  marketplace.json
.claudius/
  config.yaml      # per-project config (scaffolded by init)
  personality.md
  jobs/            # scheduled job definitions
src/
  templates/       # config templates for claudius init

Agents

| Agent | Role | Model | |-------|------|-------| | Orchestrator | Routes work, spawns teams | sonnet | | Builder | TDD implementation | sonnet | | Reviewer | Quality gate | opus |

Configuration

Create .claudius/config.yaml in your project:

engage: terminal
deploy: vercel

commands:
  test: bun test
  lint: bun run lint
  build: bun run build

autonomy:
  budgetCapUsd: 50
  autoMerge: false

heartbeat:
  enabled: true
  intervalMinutes: 15
  activeHours: { start: "09:00", end: "22:00" }

Heartbeat Daemon

Always-on autonomous development:

claudius daemon install    # Auto-start on login
claudius daemon start      # Manual start
claudius daemon status     # Stats

Each pulse cycle: check constraints → pick ready issue → implement → review → PR → sleep.

Development

bun install
bun run build
bun test
bun run lint

License

MIT