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

@ecc-hgy/ae

v0.5.0

Published

Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works.

Readme

Agentic Engineering

npm version license

Agentic Engineering is a lightweight personal software lifecycle method: SDD records what to build, TDD drives how to prove it works. It is delivered as a zero-dependency npm CLI plus agent skills for multiple AI coding platforms.

How It Works

   (one-time)  ─────▶  S0 Bootstrap · ae setup → ae init
                            │
   (each request) ──▶  Router · is this request a *need*?
                            │
                ┌──── no ────┴──── yes ────┐
                ▼                           ▼
           just do it                enter S1 Main Loop
       (Q&A / quick fix /                   │
        throwaway script)                   ├─ A. Need:   align → PRD → design → todo → TDD → verify
                                            └─ B. Accept: accept → debug → fix → reverify → sediment
                                                          │
                                                          ▼  (rules proven useful)
                                                     S2 Evolution

   Legend:  SDD = align→PRD→design→todo   ·   TDD = TDD→verify, fix→reverify
   State:   spec/ = what to build (persistent) · INDEX.md = need@node · handoff.md = session snapshot

A router (the using-agentic-engineering skill) gates each non-trivial request: a need enters the SDD+TDD loop, everything else is just done. Questions, quick fixes, and throwaway scripts never pay the ceremony.

Quick Start

cd /your/project
npx @ecc-hgy/ae setup
npx @ecc-hgy/ae init "one-line project goal"

ae setup installs reusable method assets into the AI coding platforms you select. In interactive terminals it prompts for platforms and preselects detected local platform directories. In scripts or CI, pass platforms explicitly:

npx @ecc-hgy/ae setup --platform claude,codex

ae init creates the platform-neutral project skeleton and renders entry files. Project-specific rules live directly in AGENTS.md.

CLI

ae setup
ae setup --platform claude,codex,cursor
ae init "one-line project goal"
ae --help
ae --version

Both commands are idempotent. They create missing files, skip existing files, and never overwrite existing entry files. There is no --force mode.

ae init requires ae setup to have run first. This keeps asset installation explicit before skeleton creation.

Single Source Of Truth

  • AGENTS.md is the canonical project instructions file.
  • CLAUDE.md is a short pointer to AGENTS.md; do not maintain a separate copy there.
  • ae init renders AGENTS.md nearly blank (title + goal); add your own rules and sections as the project grows — no imposed format.

Platform Scope

Current target platforms:

| Platform | ID | Skills directory | |----------|----|------------------| | Claude Code | claude | .claude/skills/ | | Codex | codex | .codex/skills/ | | Windsurf | windsurf | .windsurf/skills/ | | GitHub Copilot | github-copilot | .github/skills/ | | Kilo Code | kilocode | .kilocode/skills/ | | Kimi Code | kimicode | .kimi-code/skills/ | | CodeBuddy | codebuddy | .codebuddy/skills/ | | Qoder | qoder | .qoder/skills/ | | Trae | trae | .trae/skills/ | | Cursor | cursor | .cursor/skills/ | | OpenCode | opencode | .opencode/skills/ | | Antigravity | antigravity | .agents/skills/ | | Gemini CLI | gemini | .gemini/skills/ | | Qwen Code | qwen | .qwen/skills/ | | Kiro | kiro | .kiro/skills/ |

The first implementation is project-scoped only. It does not generate platform-specific entry rule files such as .cursorrules, GEMINI.md, or Copilot instructions.

Method Overview

| Scenario | Purpose | Main output | |----------|---------|-------------| | S0 Bootstrap | Initialize project structure and entry files | spec/, AGENTS.md, CLAUDE.md, handoff.md | | S1A Need | Turn an idea into spec, design, tasks, code, and verification | prd.md, design.md, todo.md, tested code | | S1B Acceptance | Let user acceptance drive debug, fix, re-verification, and sedimentation | issues/<topic>.md, PRD/design/ADR updates | | S2 Evolution | Promote repeated working habits into reusable method assets | rule or skill proposals |

The two hard gates are:

  • No aligned requirement, no prd.md.
  • No aligned expected behavior, no bug fix.

Skills

| Skill | Role | |-------|------| | using-agentic-engineering | Router: at the start of a non-trivial change, decides whether it enters the SDD+TDD loop and dispatches to the right node skill. | | brainstorming | Coarse requirement alignment before writing PRD. | | grill-me | Fine-grained questioning for interface, field, parameter, or expected-state ambiguity. | | to-prd | Writes spec/needs/<need-name>/prd.md. | | writing-plans | Writes spec/needs/<need-name>/design.md. | | to-issues | Breaks design into todo.md vertical slices. | | tdd | Drives A5 development and B5 bug fixes by red-green-refactor. | | verification-before-completion | Requires fresh real-path evidence before completion claims. | | diagnose | Builds a reproducible feedback loop and identifies root cause. | | review | Reviews against standards and spec, then routes findings into PRD, design, ADR, or S2 candidates. | | handoff | Writes the latest session snapshot to handoff.md. | | improve-codebase-architecture | User-triggered architecture deepening review. | | zoom-out | User-triggered higher-level codebase map. | | karpathy-guidelines | Always-on coding discipline during A5/B5: think before coding, simplicity first, surgical changes, goal-driven execution. |

Documentation

Repository Layout

bin/        npm executable entry
src/        zero-dependency CLI implementation
skills/     Selected Agentic Engineering skills
templates/  Entry file templates
docs/       Methodology docs (framework, scenarios, spec framework)
方案/        Design & decision records (issues, roadmap, skill candidates, archive)
tests/      node:test coverage for CLI behavior

Roadmap

Completed:

  • v0.2: split CLI into setup + init and remove slash command assets.
  • v0.3: remove rules injection; make AGENTS.md the single source of truth and CLAUDE.md a pointer.

Next:

  1. Design ae update for skill/template upgrades.
  2. Implement ae index-rebuild.
  3. Add CI and Windows path validation before broader distribution.

Limits

ae index-rebuild and ae update are referenced by the roadmap but not implemented yet. Publishing to npm still requires npm login, scope validation, and npm publish --access public.