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

@zherphy/ai-standards-mcp

v1.2.0

Published

MCP server to initialize AI development standards into any project

Downloads

291

Readme

@zherphy/ai-standards-mcp

MCP server for initializing AI development standards in any project. Provides init_project and validate_setup tools for Claude Code agents.

Installation

Add to Claude Code once, use in any project:

claude mcp add ai-standards -- npx -y @zherphy/ai-standards-mcp

Tools

init_project

Initializes AI development standards in the current project:

  • Creates CLAUDE.md (AI agent behavior guide)
  • Creates AGENTS.md (skills documentation)
  • Creates .ai/skills/ with 6 skills:
    • project-init — auto-load context on session start
    • task-prompt-generator — standardize task prompts
    • workflow-enforcer — enforce TDD workflow
    • code-review-validation — trigger code review agent
    • code-style-constraints — universal code style rules
    • unit-test-generation-java — Java/Spring Boot TDD
  • Creates .ai/agents/roles/ (test-writer, code-implementer, debugger, code-reviewer)
  • Creates .ai/prompts/, .ai/workflow/, .ai/architect/ and more
  • Creates .githooks/ (pre-commit, pre-push, commit-msg, post-merge)

Parameters (all optional, auto-detected from project files):

| Parameter | Description | |-----------|-------------| | projectDir | Target directory (default: current working directory) | | projectName | Project name (auto-detected from go.mod/package.json) | | techStack | go / node / java / python | | buildCmd | Build command | | testCmd | Test command | | lintCmd | Lint command | | teamName | Team name (default: "项目开发组") |

Invocation examples:

# Natural language
帮我初始化 AI 开发规范

# Direct tool call (auto-detects tech stack)
使用 init_project 工具初始化当前项目

# With explicit parameters
调用 init_project,参数:techStack=go, teamName=backend-team

# Full parameter override
调用 init_project,参数:
  projectName=myapp
  techStack=java
  buildCmd=mvn clean install
  testCmd=mvn test
  lintCmd=mvn checkstyle:check
  teamName=后端组

validate_setup

Checks completeness of AI standards configuration:

✅ CLAUDE.md                                      存在
✅ AGENTS.md                                      存在
✅ .ai/skills/task-prompt-generator/skill.md      存在
❌ .githooks/pre-commit                           缺失

发现 1 项问题,建议重新运行 init_project 修复。

Invocation examples:

# Natural language
检查当前项目的 AI 开发规范是否完整

# Direct tool call
调用 validate_setup 工具检查规范完整性

# With explicit directory
调用 validate_setup,参数:projectDir=/path/to/project

How it works

Templates are bundled inside this npm package. When you run npx -y @zherphy/ai-standards-mcp, npm always fetches the latest version — so your templates stay up to date automatically.

License

MIT