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

@teamix-evo/skills

v0.3.0

Published

Skills (AI IDE capabilities) for Teamix Evo

Readme

@teamix-evo/skills

Skills (AI IDE 自动技能) for Teamix Evo. 同源支持 QoderClaude Code

包结构

packages/skills/
├── manifest.json          # 顶层声明:枚举所有 skill
├── _data.json             # 模板共享数据(可选)
├── _template/             # 新建 skill 时的脚手架模板
│   └── SKILL.md.hbs
├── skills/                # 每个 skill 一个子目录
│   └── teamix-evo-manage/
│       └── SKILL.md       # 入口文件(同源 Qoder + Claude)
└── scripts/
    ├── validate-skills.ts
    └── scaffold-skill.ts

协议要点

  • 每个 skill 必须有 SKILL.md,frontmatter 至少包含 name + description
  • description 是 AI 触发依据,请明确写出"何时该激活"。
  • 默认 updateStrategy: managed,并使用 managed regions 让升级保留用户自定义部分。
  • 安装后 SKILL.md 同时落到所选 IDE 路径:
    • Qoder:.qoder/skills/<name>/SKILL.md~/.qoder/skills/<name>/SKILL.md
    • Claude:.claude/skills/<name>/SKILL.md~/.claude/skills/<name>/SKILL.md

研发态命令

# 校验 manifest + 资源完整性
pnpm --filter @teamix-evo/skills validate

# 新建 skill(脚手架)
pnpm --filter @teamix-evo/skills scaffold:skill

消费态命令(CLI)

teamix-evo skills 子命令族管理(source-mirror 模型见 ADR 0013):

teamix-evo skills add                # 全量装入 manifest 内所有 skill
teamix-evo skills add <name...>      # 增量:仅装入指定 skill(可多个)
teamix-evo skills list               # 列出全部 skill(默认:已装✓ / 未装○)
teamix-evo skills update             # 升级到最新版(managed 策略保留你的自定义)
teamix-evo skills sync [name...]     # 源 → IDE 镜像(漂移恢复用)
teamix-evo skills doctor             # 检测源 / 镜像漂移
teamix-evo skills uninstall          # 卸载(源 + 镜像 + lock)

全局装机(--scope global

# 一行装到 ~/.qoder/skills/ 与 ~/.claude/skills/,元数据落到 ~/.teamix-evo-global/
npx teamix-evo@latest skills add teamix-evo-manage --scope global --ide claude,qoder -y

# 后续维护(update / uninstall 等)需 cd 到全局元数据根
cd ~/.teamix-evo-global && npx teamix-evo skills update