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

@provectusinc/awos

v1.2.1

Published

This framework outlines a structured approach to leveraging Large Language Models (LLMs) for high-quality code generation, moving beyond basic prompting to a spec-driven development methodology.

Downloads

517

Readme

Project Banner

Agentic Workflow Operating System

awos[^1] is a framework for spec-driven development that transforms Claude Code from a chat interface into an autonomous engineering department. By creating a structured chain of intent, you enable agents to execute large-scale features independently — ensuring results that are production-ready.

Quick Start

Before You Begin

  • Node.js and npm: Required only for the installer. The agents themselves do not require Node.js.
  • Claude Code: This framework is designed for Claude Code. All examples assume you are using it.

Note on Token Usage: awos feeds large amounts of project context to the AI. Plan your Claude subscription or AWS Bedrock usage accordingly.

Step 1: Install awos

npx @provectusinc/awos

This sets up the .awos/ directory (commands, templates, scripts), the .claude/commands/awos/ wrappers, and the context/ directory where your project documents will live. It also registers the AWOS plugin marketplace in your project settings.

Running on an existing codebase? Start with an AI readiness audit to understand how AI-friendly your project is. Install the plugin with /plugin install awos@awos-marketplace, then run /awos:ai-readiness-audit to get a scored assessment with actionable recommendations for improvement. Learn more

Step 2: Foundation Setup

These commands establish your project's foundation. Run them once at the start, and re-run them as your project evolves — requirements change, architecture decisions get refined, and that's normal.

| Command | What it does | Docs | | -------------------- | --------------------------------------------------------------------------------- | ---------------------------------------- | | /awos:product | Defines the Product — what, why, and for who. | Details | | /awos:roadmap | Builds the Product Roadmap — features and their order. | Details | | /awos:architecture | Defines the System Architecture — stack, DBs, infra. | Details | | /awos:hire | Hires specialist agents — finds, installs skills and MCPs, generates agent files. | Details |

Step 3: Feature Development Cycle

Once your foundation is set, iterate through this cycle for each feature on your roadmap. These commands are designed to be run repeatedly — once per feature.

Tip: Don't hesitate to delete specs after implementation. Completed specs can become outdated and confuse the AI. Your code documentation is the source of truth.

| Command | What it does | Docs | | ----------------- | --------------------------------------------------------------------------------- | ------------------------------------- | | /awos:spec | Creates the Functional Spec — what the feature does for the user. | Details | | /awos:tech | Creates the Technical Spec — how the feature will be built. | Details | | /awos:tasks | Breaks the Tech Spec into a task list for engineers. | Details | | /awos:implement | Runs tasks — delegates coding to sub-agents, tracks progress. | Details | | /awos:verify | Verifies spec completion — checks acceptance criteria, marks Status as Completed. | Details |

When to skip the cycle: Not every change needs a spec. Hotfixes, simple bugfixes, and small edits don't require the full spec workflow — Claude Code's built-in plan mode handles those just fine.

Step 4: You're Awesome

That's it! By following these steps, you can systematically turn your vision into a well-defined and fully implemented product.

The awos Philosophy

The awos framework is built on a simple but powerful idea: AI agents, like human developers, need clear context to do great work. Without a structured plan, even the most advanced LLM can act like a confused intern. awos provides a step-by-step workflow that transforms your vision into a detailed blueprint that AI agents can understand and execute flawlessly.

Read more about the philosophy behind awos

Command Reference

Each command has detailed documentation covering how it works, key behaviors, common misconceptions, and example usage.

Browse all command docs

Testing Strategies

The awos framework is flexible and non-prescriptive when it comes to testing. Teams can adopt the testing approach that best fits their project — whether that's TDD, BDD, integration testing, or a combination of strategies.

Explore testing strategies and customization options

Customizing awos

The awos framework is designed to be both powerful out-of-the-box and highly customizable.

The .awos Folder: Framework Core (Do Not Edit)

All framework service data lives in the .awos/ directory:

  • .awos/commands - Full command prompt instructions
  • .awos/templates - Document templates
  • .awos/scripts - Utility scripts

Warning: Do NOT manually edit files in the .awos/ folder. These files are always overwritten during updates.

The .claude Folder: Your Customization Layer

This is where you customize awos to fit your needs:

  • .claude/commands/awos/{command}.md - Lightweight wrapper files that link to .awos/commands/{command}.md

How to Customize

Example: Customize a Command

Open .claude/commands/awos/implement.md and add your instructions:

---
description: Runs tasks — delegates coding to sub-agents, tracks progress.
---

Refer to the instructions located in this file: .awos/commands/implement.md

+ - Always run tests after implementing each task
+ - Follow the code style guide in docs/style-guide.md

Updating awos

To update awos to the latest version, run the installer again:

npx @provectusinc/awos

What gets updated:

  • Commands in .awos/commands
  • Templates in .awos/templates
  • Scripts in .awos/scripts
  • Commands in .claude/commands/awos

Important: The installer will overwrite existing files in .claude/commands/awos. If you've customized these files, back them up first.


[^1]: The Russian word «авось» (a-VOHS') doesn't have a direct equivalent in English — it's a very culturally loaded concept. It's a mix of hope, chance, and fatalism, often with a sense of "let's do it and maybe it will work out."