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

@haaaiawd/anws

v2.3.0

Published

Anws — A spec-driven workflow framework for AI-assisted development. Empowers prompt engineers to build production-ready software through structured PRD → Architecture → Task decomposition. Works with Claude Code, GitHub Copilot, Cursor, Windsurf, and any

Readme

License: MIT Version Targets

English | 中文


Anws

Anws is a spec-driven workflow framework for AI-assisted development across modern AI IDEs and coding tools.

It helps teams build production-ready software through a disciplined path:

PRD -> Architecture -> ADR -> Tasks -> Review -> Code -> Upgrade

Anws enforces design-first principles, preserves context in files, and prevents architectural drift across multi-tool AI coding workflows.

TL;DR: a design-first workflow framework for AI coding tools that turns vibe coding into production-oriented engineering.

ANWS

  • Axiom — principle before implementation
  • Nexus — connection before fragmentation
  • Weave — coherence before accumulation
  • Sovereignty — human judgment before automation

Why Anws Exists

Many so-called spec systems are good at one thing: generating documents up front. That is not the hard part. The hard part is keeping implementation, verification, review, and upgrades aligned with those documents after the initial planning pass.

That is where AI coding usually breaks down:

  • docs and code drift apart until nobody is sure which one is the real source of truth
  • a new session loses context and starts guessing about boundaries, trade-offs, and task state
  • code starts before requirements and interfaces are stable, so rework becomes inevitable
  • automation increases speed, but review discipline and evidence quality quietly drop
  • template upgrades become risky because existing projects cannot absorb new rules cleanly

Anws is not just a system for writing specs. It is a framework for keeping design, execution, verification, review, and upgrade tied together.

  • Documents are operating state, not attachments
    • PRD, Architecture, ADR, System Design, 05A_TASKS.md, 05B_VERIFICATION_PLAN.md, and AGENTS.md are part of the workflow runtime, not disposable planning notes.
  • Highly documented, but for control rather than ceremony
    • Design, task, and verification are separated on purpose so task ownership, validation responsibility, and evidence output stay traceable.
  • Automation stays fast without becoming sloppy
    • /forge AUTO speeds delivery up, but it does not bypass challenge pressure, code review, validation gates, or evidence closure.
  • It orchestrates verification, not only implementation
    • 05A owns execution flow and 05B owns verification planning. E2E, for example, is declared as a trigger assumption during planning and executed later in /forge, instead of being hand-waved as “already tested.”
  • Upgrades are controlled, not overwrite-driven
    • Templates, projections, and AGENTS.md have explicit update semantics, so existing projects can evolve without being effectively reinstalled from scratch.

Quick Start

Install via npm

npm install -g @haaaiawd/anws
cd your-project
anws init
  • Requirement
    • Node.js >= 18
  • Install behavior
    • anws init installs one or more target projections into their native folders
    • example: anws init --target windsurf,opencode

Update an Existing Project

cd your-project
anws update
  • Update flags
    • anws update --check and anws update --target are removed; run anws update once to refresh all matched targets
  • State source
    • anws update reads .anws/install-lock.json
    • if the lock is missing or invalid, it falls back to directory scan
    • if lock drift is detected, directory scan becomes the effective source for the current update
    • a real anws update can rebuild .anws/install-lock.json from detected targets when fallback is active
  • AGENTS.md behavior
    • marker-based file -> update stable sections, preserve AUTO block
    • recognized legacy file -> migrate into new marker-based structure
    • unrecognized legacy file -> warn and preserve unchanged
  • Legacy migration
    • if a project still has .agent/, the CLI can guide migration to .agents/
    • after successful migration, interactive mode can also ask whether to delete the old .agent/
  • Upgrade record
    • every successful update refreshes .anws/changelog/
    • target state is written back to .anws/install-lock.json

Feature demos

What using Anws looks like in practice: architecture-first /genesis, human-in-the-loop requirement alignment, and skill orchestration.

Deep Thinking & Architecture Design

Interactive Requirement Alignment

Autonomous Skill Invocation


Philosophy

1. Docs first—specs keep you in command
PRD, architecture, tasks, and design land in the repo before code does—so the project doesn’t drift in aimless “vibe runs.” Scope and progress live in .anws/, 05A_TASKS.md, 05B_VERIFICATION_PLAN.md, and AGENTS.md: you stay in control of the system, not whichever chat window is open.

2. Full autonomy inside the rails
/forge AUTO is delegation with checkpoints: keep moving inside agreed contracts. Code review, e2e-testing-guide, and the rest of the template gates keep runs auditable and bounded. When a wave is executing, it’s reasonable to walk away—coffee, a walk—because confidence comes from the spec and gates, not from staring at the model.

Iteration is the product
/challenge isn’t a one-time rubber stamp; it’s repeated adversarial passes. Good products and clear ideas are sharpened over cycles—same as real shipping: each round pulls design, tasks, and implementation back into alignment.


Recommended Workflow

Use Anws as a lifecycle, not just a folder pack.

| Command | Purpose | Input | Output | | ----------------- | --------------------------------------------------------------------------- | --------------------- | ------------------------ | | /quickstart | Route the user through the correct workflow path | Auto-detected state | Full orchestration | | /genesis | Start from zero with PRD and architecture | Vague idea | PRD, architecture, ADRs | | /probe | Analyze a legacy codebase before change | Existing code | Risk report | | /design-system | Design one system in depth | Architecture overview | System design doc | | /challenge | Review design, tasks, and implementation fidelity with adversarial pressure | Docs / tasks / code | Challenge report | | /blueprint | Break architecture into executable work | PRD + architecture | 05A_TASKS.md + 05B_VERIFICATION_PLAN.md | | /forge | Turn approved tasks into code with challenge-report and contract gates | Tasks + review state | Working implementation | | /change | In-version task/contract tweaks (controlled expansion: few new tasks) | Small scoped change | Updated task/design docs | | /explore | Research ambiguous or strategic topics | Topic | Exploration report | | /craft | Create workflows, skills, and prompts | Creation request | Reusable assets | | /upgrade | Route post-update upgrade work | Update changelog | Change or genesis path |


Contributing

Contributions are welcome. Before opening a PR, make sure changes align with the spec-driven workflow and the target projection model.


License

MIT © 2026


Made for architects who code, and AIs who think.

Good architecture isn't written. It's designed.