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

aegis-sdd

v1.3.0

Published

Aegis — Secure Software Design Documents framework for Claude Code

Readme

Aegis — Secure Software Design Documents

A framework for generating structured software design documents with embedded security. Works as a standalone spec (tool-agnostic) and as a Claude Code skill.

What it does

Aegis generates up to 5 artifacts from your project docs:

  1. requirements.md — What the system must do (functional + security requirements)
  2. design.md — How it will be built (architecture, data models, correctness properties)
  3. ui-design.md — What the interface looks and feels like (design system, component specs, page layouts) (optional — for projects with a frontend/UI)
  4. tasks.md — Implementation plan (ordered tasks with traceability)
  5. tests.md — TDD test specs + RED test files (all tests fail before implementation)

Every artifact has bidirectional traceability. Every project gets full security coverage regardless of documentation level.

Security is non-negotiable

Aegis embeds a universal security baseline (OWASP-aligned) that is injected automatically:

  • Requirements: Security requirements auto-added based on project characteristics
  • Design: Security correctness properties auto-injected
  • Tests: Security tests auto-generated

You choose the formalism level (light, standard, formal) for your docs. Security is always FULL.

Install

npx aegis-sdd

The installer asks where to install:

  • Global (~/.claude/commands/aegis.md + ~/.claude/aegis/) — available in all your projects
  • Local (.claude/commands/aegis.md + .claude/aegis/) — this project only

Or skip the prompt with flags:

npx aegis-sdd --global    # all projects
npx aegis-sdd --local     # current project only

Requires Claude Code installed.

Usage

In any project with Claude Code:

/aegis:init          → Configure project (level, language, stack, inputs)
/aegis:requirements  → Generate requirements.md
/aegis:design        → Generate design.md
/aegis:ui-design     → Generate ui-design.md (frontend/UI design specification)
/aegis:tasks         → Generate tasks.md
/aegis:tests         → Generate tests.md + RED test files
/aegis:validate      → Full validation report (coverage, security audit, gaps)
/aegis:update        → Update an artifact + check downstream impact
/aegis:status        → Show current state and next steps

Three formalism levels

| Level | When to use | Requirements format | |-------|------------|-------------------| | Light | Scripts, POCs, simple tools | Feature list + bullet criteria | | Standard | SaaS, apps, APIs | User stories + acceptance criteria | | Formal | Fintech, healthcare, critical systems | SHALL/WHEN/IF + glossary |

Security coverage is identical across all levels.

Stack agnostic

Aegis works with any stack. It auto-detects your project's language and framework:

Node.js/TypeScript, Python, Go, Rust, Java, PHP, HTML/CSS/JS, and more.

Framework layer (tool-agnostic)

The aegis/framework/ directory contains the standalone specification:

  • SPEC.md — The formal framework specification
  • levels/ — Formalism level definitions
  • templates/ — Artifact templates (15 templates: 5 artifacts x 3 levels)
  • security/ — SECURITY_UNIVERSAL.md + security requirements/properties YAML
  • validation/ — Validation rules and coverage matrix docs
  • i18n/ — English and Portuguese Brazilian labels
  • inputs/ — Recommended input doc types and templates

This layer can be used with any LLM or manually, without Claude Code.

License

MIT