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

@trycedar/argus

v0.7.0

Published

Argus — Git-native proactive AI agent organization framework CLI.

Readme

Argus

npm version CI License: MIT Node TypeScript

A Git-native agentic organization framework where a human CEO directs proactive role agents that create tasks, produce artifacts, request approvals, and help build software products. Codename: Argus.

Vision

Proactive AI is not multi-agent chat. It is a local-first company workspace where agents participate proactively in software development.

  • The human is the CEO.
  • Agents have roles, responsibilities, permissions, and wake triggers.
  • Memory lives in version-controlled Markdown artifacts.
  • Tasks are Markdown files with structured frontmatter.
  • Human approvals flow through an inbox.
  • Events are appended to an audit log.
  • Codex is the default AI provider for v0.

Documentation

Using argus:

  • 📘 User Guide — install, the 60-second tour, full CLI reference, how cycles work, troubleshooting. Read this first if you're a human driving argus.
  • 🤖 Agent Guide — the same material distilled for AI coding assistants (pi, Claude Code, Cursor, Codex) helping a human use argus.

Contributing to argus: see AGENTS.md and the design docs below — that's a different audience with different rules.

Current status

@trycedar/[email protected] — dogfood release. The CLI binary is argus. Workspaces from 0.1.x auto-migrate on first run.

Design docs:

Dogfood workspace

This repo includes the initial Proactive AI workspace structure:

.argus/
company/
tasks/
artifacts/
comments/
inbox/
events/
agents/

The workspace tracks the development of Proactive AI itself.

Development harness

This repo uses pi-project-template conventions:

  • AGENTS.md — hard rules for agents
  • docs/memory/ — short/long-term shared memory
  • docs/plans/ — active plans
  • docs/records/ — completed records
  • docs/decisions/ — ADRs
  • docs/log.md — append-only change log
  • .github/workflows/codex.yml — Codex issue pickup workflow
  • scripts/validate.sh — merge validation contract

Install

From source:

pnpm install
pnpm build
pnpm link --global
argus --help

After npm publication:

npm install -g @trycedar/argus
argus --help

Quickstart

npm install -g @trycedar/argus
argus init my-company
cd my-company
git init && git add -A && git commit -m "init: argus workspace"

argus ceo "Build a CRM for solo financial advisors. Find the smallest MVP."
argus run --no-ai                # free probe — what would wake?
argus run --once --max-agents 1  # one real cycle, single agent
argus tasks; argus inbox
git log --oneline

For the full CLI reference, the cycle / wake / validate / freshness / cost model, and troubleshooting, see the User Guide.

Validation

./scripts/validate.sh --check