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

@speedsol/codex-standards

v1.0.0

Published

SpeedSol Standards for Codex CLI — .NET enterprise governance: code review, security, architecture, workflow and debug agents with embedded company rules

Readme

@speedsol/codex-standards

SpeedSol Standards for Codex CLI — .NET enterprise governance embedded as AGENTS.md.

Equivalent to the standards-development Claude Code plugin, but designed for OpenAI Codex CLI. Does not affect Claude Code.

Installation

npm install -g @speedsol/codex-standards

Usage

In any project where you want Codex to apply SpeedSol standards:

cd my-dotnet-project
codex-standards init

This creates:

  • AGENTS.md — loaded automatically by Codex CLI on every run
  • memory/project-context.md — accumulated project knowledge
  • memory/team-log.md — team audit trail

Commands

| Command | Description | |---|---| | codex-standards init | Copy AGENTS.md and memory templates to current project | | codex-standards validate | Check that all required files are present | | codex-standards update | Overwrite AGENTS.md with the latest package version |

What AGENTS.md Contains

The embedded system prompt enforces all SpeedSol company standards:

  • .NET 9 tech stack — ASP.NET Core, EF Core, Serilog, xUnit, AutoMapper
  • Architecture rules — Controller → Service → Repository → DB (non-negotiable)
  • Naming conventions — PascalCase, camelCase, I-prefix interfaces, Async suffix
  • Logging — ILogger mandatory, no Console.WriteLine
  • Error handling — try/catch in Services only
  • Security policy — no hardcoded secrets, parameterized SQL, JWT/Azure AD
  • Code quality — max 50 lines/function, max 3 nesting levels, DRY

Agent Modes

Codex activates the right mode based on your prompt keywords:

| Trigger | Mode | |---|---| | "review", "revisar", "code quality" | REVIEW | | "security", "seguridad", "audit" | SECURITY | | "architecture", "arquitectura" | ARCHITECTURE | | "debug", "error", "exception", "fix" | DEBUG | | "workflow", "git", "branch", "PR" | WORKFLOW |

Memory Protocol

Codex appends significant findings to:

  • memory/project-context.md — architecture decisions, recurring issues
  • memory/team-log.md — audit trail per session

Keeping Standards Up to Date

When a new version is published:

npm update -g @speedsol/codex-standards
cd my-dotnet-project
codex-standards update

Difference from Claude Code Plugin

| | Claude Code | Codex CLI | |---|---|---| | Install | /plugin install standards-development | npm install -g @speedsol/codex-standards | | Activation | Plugin system (agents, commands, skills) | AGENTS.md in project root | | Memory hooks | PowerShell hooks auto-persist | Manual append by Codex | | Commands | /review, /security, /debug, etc. | Natural language triggers |

Author

Speed Solutions S.A.S. — [email protected]