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

acp-method

v1.0.5

Published

Standardize your AI coding environment by automatically initializing agent rules, workflows, and skills.

Readme

The Context Problem

The problem with modern AI coding isn't the intelligence of the model; it is the context it lacks. You start a new project, and the AI immediately forgets your architectural standards, testing protocols, and design principles. You find yourself copy-pasting the same instructions, over and over, hoping the AI respects them this time.

Agent Init fixes this. One command and your workspace is standardized with the latest AI context protocols. No more hallucinations because you forgot to tell the agent about your "I/O Isolation" rule. It injects a comprehensive .agent directory into your project, defining the rules of engagement before you write a single line of code.

The Universal Method

We believe in tools that work everywhere, not just inside a specific editor. The CLI tool is the fastest way to standardize any repository.

npx acp-method install

When you run this command, the system pulls the latest architectural standards from our central repository and structures them into your workspace. It handles network failures gracefully and ensures your environment is ready for high-level AI collaboration immediately.

Note: This tool checks for the latest standards every time it runs, ensuring your project never drifts from the best practices.

Core Capabilities

Agent Init is designed to be invisible when you don't need it and indispensable when you do.

Instant Scaffolding The tool automatically generates the .agent directory structures for Rules, Workflows, and Skills. This isn't just a file dump; it is a structured knowledge base that your AI agent consumes to understand how you write code.

Centralized Synchronization Your local rules are synchronized with the absolute latest standards. If a new security mandate is released or a testing protocol is updated, a single command brings your project to the bleeding edge.

Resilience Built with offline fallback capabilities. Development doesn't stop just because the internet does. If the central repository is unreachable, the system automatically uses a bundled, high-quality backup of the standards.

Editor Integration While the CLI works everywhere, we provide deep integration for VS Code. The extension can automatically generate .cursorrules (if needed) to point directly to the generated context, creating a seamless bridge between your editor and the AI context.

VS Code Extension

For those who prefer a GUI approach, the VS Code extension offers the same power accessible directly from the Command Palette (Ctrl+Shift+P / Cmd+Shift+P).

Initialize Standards Restores or creates the full .agent structure. This is the recommended first step for any new project.

Repair Standards Scans your existing configuration for missing or corrupted files. If it finds discrepancies, it repairs them without overwriting your custom modifications where possible.

Configuration

You can customize the behavior of Agent Init through your .vscode/settings.json:

| Setting | Default | Description | | :--- | :--- | :--- | | agentInit.autoInit | false | Automatically initialize standards on new projects without asking. | | agentInit.checkOnStartup | true | Check if standards are valid every time you open a folder. | | agentInit.watchForDrift | false | Actively monitor the .agent directory for changes and warn on deletion. |

Directory Structure

When properly initialized, your project will contain the following structure:

.
├── .agent/
│   ├── rules/          # The Constitution: coding standards and mandates
│   ├── workflows/      # Standard Operating Procedures (e.g., debug flows)
│   └── skills/         # Specialized Capabilities (e.g., frontend design)
└── .cursorrules        # The bridge connecting AI to your rules

Contributing

This standard is living and breathing. If you find a better way to structure code or a rule that needs refinement, open a Pull Request.