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

@delegado/delegate-os

v1.1.1

Published

AI Agent Operating System - Context engineering + BMAD/OpenSpec/HELL Method workflows

Downloads

742

Readme

Delegado OS

"O contexto é poder. A memória é força. A execução é brutal."

AI Agent Operating System — A meta-prompting framework for AI-assisted software development, integrating methodological workflows (BMAD, OpenSpec, GSD) with persistent memory and context engineering.

Supported Agents

| Agent | Status | Installation | |-------|--------|-------------| | Claude Code | ✅ | npm install -g @delegado/os-delegate | | GitHub Codex | ✅ | npm install -g @delegado/os-delegate | | Cursor | ✅ | npm install -g @delegado/os-delegate | | Bun | ✅ | bun install @delegado/os-delegate |

Installation

Via npm (recommended)

npm install -g @delegado/os-delegate

The postinstall script automatically detects and links the skill to Claude Code, Codex, and Cursor skills directories.

Via Bun

bun install -g @delegado/os-delegate

Verification

delegado --version
# Output: delegado-os 1.0.0

Activation in Claude Code

After installation, type:

/delegado

Quick Start

# Interactive menu
delegado

# Activate BMAD workflow
/delegado bmad

# Create proposal
/delegado propose my-feature

# View memory
/delegado memory

Workflows

BMAD (4 Phases)

4-phase method for structured development:

| Phase | Color | Artifacts | |-------|-------|----------| | ANALYSIS | #FF6B6B | proposal.md | | PLANNING | #4ECDC4 | prd.md, specs.md | | SOLUTIONING | #45B7D1 | architecture.md | | IMPLEMENTATION | #96CEB4 | tasks.md, code |

OpenSpec (Spec-Driven)

Spec-driven workflow from concept to implementation:

proposal ──► specs ──► design ──► tasks ──► implement

GSD (Get Shit Done)

Atomic tasks and execution phases:

BRIEFING ──── ANALYSIS ──── DECOMPOSITION ──── EXECUTION ──── VALIDATION

Commands

Workflows

| Command | Description | |---------|-------------| | /delegado bmad | Activate BMAD Method | | /delegado propose [name] | Create proposal | | /delegado specs | Create specifications | | /delegado design | Create design | | /delegado tasks | Generate tasks |

Memory

| Command | Description | |---------|-------------| | /delegado memory | View memory | | /delegado memory:rules | View learned rules | | /delegado learn [rule] | Teach new rule | | /delegado feedback [text] | Register feedback |

Context

| Command | Description | |---------|-------------| | /delegado context | Load context | | /delegado context:save | Save context | | /delegado context:load | Load context |

Package Structure

@delegado/os-delegate/
├── SKILL.md              # Entry point for agents
├── CLAUDE.md            # Instructions for Claude Code
├── delegado.sh          # CLI executable
├── kernel/
│   ├── skills/         # Sub-skills (ANALISE, EXECUCAO, etc.)
│   └── ...
├── workflows/          # BMAD, OpenSpec, GSD
├── subagents/          # Orchestrator
├── memory/             # Persistent memory
└── scripts/
    └── postinstall.js   # Auto-link installer

Configuration

The system looks for configuration in .delegado/config.yaml:

schema: spec-driven
workflows:
  - id: especificacao
  - id: bmad
  - id: fase
defaults:
  pr_size: medium
  coverage: 80
  tdd: true

CLI

# Interactive menu
delegado

# Show version
delegado --version

# Initial setup
delegado setup

# Detect stack
delegado detectar

Public API

For programmatic use:

import { execSync } from 'child_process';

// Check version
execSync('delegado --version', { stdio: 'inherit' });

License

MIT