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

@redv/owner

v0.1.1

Published

Resumable Loop and Pipeline vibe coding for Claude Code and Codex

Readme

Owner

中文文档

Owner is a resumable vibe-coding workflow for Claude Code and Codex. It turns an AI coding request into a persisted, guarded lifecycle with requirement shaping, implementation, evidence-backed verification, bounded repair, recovery, and archive.

Owner provides two independent workflows:

  • Loop: Shape → Build ↔ Verify → Archive. A self-contained runtime for strong autonomous models. It does not depend on OpenSpec or Superpowers.
  • Pipeline: Open → Design → Build → Verify → Archive. OpenSpec owns WHAT, Superpowers owns design/TDD/debug/review methods, and Owner owns orchestration, guards, recovery, and archive.

Supported hosts:

Owner is distributed under the MIT License. See LICENSE.

Requirements

  • Node.js 22+
  • npm or pnpm
  • Git
  • Claude Code or Codex
  • Network access for Pipeline dependencies (OpenSpec and Superpowers)

Install from npm

npm install @redv/owner
npx owner --version

You can also clone the TAN-cyber repository and build locally:

git clone https://github.com/TAN-cyber/owner.git
cd owner
corepack enable
pnpm install
pnpm build
npm link

Installing the CLI does not modify a host configuration. Owner writes Skills, Rules, and Hooks only after the user explicitly runs npx owner init.

Initialize

Codex with both workflows:

npx owner init /path/to/project \
  --scope project \
  --platform codex \
  --workflow both

Claude Code with Loop:

npx owner init /path/to/project \
  --scope project \
  --platform claude \
  --workflow loop

Global installation is explicit:

npx owner init --scope global --platform codex --workflow both
npx owner init --scope global --platform claude --workflow both

--platform accepts only claude or codex.

Host paths

| Host | Project Skills | User Skills | Rules/Hooks | |---|---|---|---| | Claude Code | .claude/skills/ | ~/.claude/skills/ | .claude/rules/, .claude/settings.local.json | | Codex | .agents/skills/ | ~/.agents/skills/ | .codex/rules/, .codex/hooks.json |

Codex paths follow the official Skills documentation.

Use

Claude Code:

/owner implement order cancellation with idempotent refunds

Codex:

$owner implement order cancellation with idempotent refunds

The unified entry runs:

npx owner workflow resolve . --activate --json

It loads exactly one of owner-loop or owner-pipeline from .owner/config.yaml. It never switches workflows based on task size or model judgment.

Core commands

npx owner status [project] --json
npx owner resume-probe [project] --utterance "continue yesterday's task" --json
npx owner doctor [project] --json

npx owner loop new <change> --json
npx owner loop status [change] --details --json
npx owner loop next <change> [required inputs] --json
npx owner loop archive <change> --preview --json

npx owner state init <change> full --isolation current
npx owner state next <change>
npx owner guard <change> <phase> --apply
npx owner handoff <change> design --write
npx owner archive <change> --dry-run

Loop portable artifacts live under docs/owner/; local locks, logs, receipts, and transactions live under .owner/runtime/loop/. Pipeline state lives in docs/openspec/changes/<change>/.owner.yaml by default.

Contributing

Development, verification, and release instructions are maintained in CONTRIBUTING.md.

Boundaries

  • A fresh Verifier reduces self-confirmation bias but is not a correctness proof.
  • Owner cannot verify a requirement that was never captured in acceptance/specs.
  • Unsynced code cannot be recovered from portable state alone.
  • A passing Verify result does not authorize push, PR, or merge.
  • Pipeline installs third-party OpenSpec and Superpowers packages.

License

MIT. See LICENSE.