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

portable-agent-workflows

v0.1.0

Published

Portable, harness-agnostic agent workflows with shared skills, durable artifacts, review gates, and native integrations.

Readme

Portable Agent Workflows

Portable Agent Workflows is a harness-agnostic workflow layer for coding agents. It defines a shared vocabulary, portable skills, adapter mappings, persistent artifacts, and generated native entrypoints so Codex, OpenCode, Claude Code, Cursor, and similar harnesses can follow the same workflow model without sharing tool names or hidden chat state.

Origins

This model combines the strongest ideas from obra/superpowers and DasDigitaleMomentum/opencode-processing-skills: explicit skill workflows, durable planning artifacts, review gates, handovers, and harness-specific adapters. It does not copy either system directly; it defines a clean agent-work-v1 domain model that can be used across Codex, OpenCode, Claude Code, Cursor, and future harnesses.

What This Repository Is

  • A portable workflow and artifact model for coding agents.
  • A set of harness-agnostic skills under .agent-work/skills/.
  • A generated integration layer for Codex, Claude Code, and Cursor.
  • A governance-backed reference repository for agent-work-v1.

What This Repository Is Not

  • It is not a runtime library or global installer.
  • It is not tied to one agent harness.
  • It does not mutate GitHub repository settings automatically.

Public Project Status

Portable Agent Workflows is a public, MIT-licensed, open-source reference model. It is ready for evaluation, issues, and focused pull requests that improve the agent-work-v1 model, documentation, validation, or generated harness entrypoints. The GitHub Community Profile is complete: README, license, contributing guide, Code of Conduct, issue template, pull request template, and contributor content reporting are in place.

The main reader path is this README, then docs/overview.md, then the .agent-work/ source artifacts. docs/superpowers/ records design and planning history; it is kept for transparency, not as the primary product documentation path.

Enterprise Readiness

Quality Gates

uv run python tools/generate_harness_integrations.py --check
uv run pytest tests/ -v
uv run ruff check tests/ tools/
uv run ruff format --check tests/ tools/
uv run python tools/check_markdown_links.py
git diff --check

What Is Included

  • .agent-work/glossary.md defines the agent-work-v1 domain model.
  • .agent-work/adapters/ maps neutral roles and capabilities to Codex, OpenCode, Claude Code, and Cursor.
  • .agent-work/skills/ contains the eleven V1 portable skills.
  • .agent-work/plans/portable-agent-work-example/ demonstrates the full artifact lifecycle.
  • AGENTS.md, CLAUDE.md, .claude/commands/, and .cursor/rules/ are generated native harness entrypoints.
  • docs/superpowers/ records design and planning history for major changes.
  • tools/generate_harness_integrations.py regenerates native harness files from .agent-work/.
  • tools/check_markdown_links.py validates local Markdown links.
  • tests/ validates model structure, generated files, and enterprise foundation artifacts.
  • docs/ documents architecture, governance, reference material, modules, and features.

Core Ideas

  • Skills describe behavior.
  • Artifacts store durable state.
  • Roles define responsibility.
  • Capabilities define what a harness can do.
  • Adapters translate neutral intent into concrete harness execution.
  • Later agents should be able to continue from files, not hidden chat context.

Quickstart

Install project-local workflow files into another repository:

npx portable-agent-workflows init

For non-interactive installs, select harnesses explicitly:

npx portable-agent-workflows init --harness codex,claude,cursor,opencode --yes
npx portable-agent-workflows check

See Distribution for safety rules, dry runs, overwrite behavior, and publishing boundaries.

Install development dependencies with uv:

uv sync --dev

Run validation:

uv run python tools/generate_harness_integrations.py --check
uv run pytest tests/ -v
uv run ruff check tests/ tools/
uv run ruff format --check tests/ tools/
uv run python tools/check_markdown_links.py

Supported Harnesses

See the compatibility matrix for current support status.

Documentation

V1 Skills

  • define-domain-model
  • shape-idea
  • shape-spec
  • create-phased-plan
  • verify-implementation-plan
  • execute-work-package
  • review-artifact
  • review-implementation
  • update-work-state
  • create-handover
  • write-portable-skill

Repository Status

This repository is a documentation-and-artifact model. It does not ship a runtime library. The tests validate that the files remain structurally coherent.