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

@archon-claw/skills

v0.4.4

Published

Claude Code skills for archon-claw workspace

Downloads

982

Readme

@archon-claw/skills

Archon Claw 内置 skills 集合,提供 MCP Server 让 AI 工具直接查询开发文档。

使用方式

.mcp.json(Claude Code)或项目 MCP 配置中添加:

{
  "mcpServers": {
    "archon-claw-skills": {
      "command": "npx",
      "args": ["@archon-claw/skills", "mcp"]
    }
  }
}

启动后,AI 工具会看到以下 MCP tools,每个 tool 对应一个 skill 文档:

| Tool | 描述 | |------|------| | create_project | 从零创建 archon-claw 项目仓库 | | create_agent | 创建新 agent 配置目录 | | create_skill | 创建 agent skill | | create_tool | 创建 agent tool 定义 | | create_tool_impl | 创建 tool 实现 | | create_tool_test | 创建 tool 测试 | | create_tool_ui | 创建自定义 tool UI | | create_dataset | 创建 dataset 文件 | | create_model_config | 创建 model.json 配置 | | create_system_prompt | 创建 system-prompt.md | | create_mcp_config | 创建 MCP 服务器配置 | | create_eval_case | 创建评估用例 | | create_eval_judge | 创建评估 judge |

AI 调用任意 tool 即可获取对应 skill 的完整指南。

工作原理

  • 每个 skill 存储在 skills/<name>/SKILL.md,包含 YAML frontmatter(name、description)和 markdown body
  • archon-claw-skills mcp 启动一个 stdio MCP Server,将每个 skill 注册为一个 tool
  • Tool 名称 = skill name(-_),描述 = frontmatter description,调用返回完整 body

Programmatic API

import { loadAllSkills, loadSkillsForTarget } from "@archon-claw/skills";

const all = loadAllSkills();
const mcpSkills = loadSkillsForTarget("mcp");

License

MIT