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.16.0

Published

Skills (AI IDE capabilities) for Teamix Evo

Downloads

5,005

Readme

@teamix-evo/skills

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

包结构

packages/skills/
├── manifest.json          # 顶层声明:枚举所有 skill
├── _data.json             # 模板共享数据(可选)
├── _template/             # 新建 skill 时的脚手架模板
│   └── SKILL.md.hbs
├── src/                   # 每个发布的 skill 一个子目录
│   └── teamix-evo-manage/
│       └── SKILL.md       # 入口文件(同源 Qoder + Claude + Codex)
└── 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
    • Codex / ChatGPT:.agents/skills/<name>/SKILL.md~/.agents/skills/<name>/SKILL.md

研发态命令

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

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

消费态命令(CLI)

teamix-evo skills 子命令族管理(npm 包直接渲染到 IDE 镜像,见 ADR 0048):

teamix-evo skills init               # 自举:按 variant + scope 全装符合条件的 skill(ADR 0034)
teamix-evo skills add <name...>      # 增量:仅装入指定 skill(必填,至少一个)
teamix-evo skills list               # 列出全部 skill(默认:已装✓ / 未装○)
teamix-evo skills update [name...] [--dry-run]  # 升级已装 skill(ADR 0035 双闸 + version 短路)
teamix-evo skills sync [name...]     # npm 包 → IDE 镜像(漂移恢复用)
teamix-evo skills doctor             # 检测 IDE 镜像缺失 / 漂移
teamix-evo skills uninstall          # 卸载已知 IDE 镜像 + lock 记录

verb 分工(ADR 0034):init 自举(无 ids)/ add 增量(必填 ids)。skills add 不传 id → commander 报错并输出 help。

scope 过滤(ADR 0033):skills init 跳过 manifest 里 scope 与当前 install scope 不匹配的 entry。entry skill teamix-evo-managescope: "global",因此项目级 init 不会重复装入 —— 它由「全局装机」段一次性装到全局。skills add 显式指名 global-only skill 时仍可装入,但会得到 warning。

全局装机(--scope global

# 一行装到三个 IDE 的用户级 skill 目录,元数据落到 ~/.teamix-evo-global/
npx teamix-evo@latest skills add teamix-evo-manage --scope global --ide qoder,claude,codex -y

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

已有项目补充 Codex mirror:

npx teamix-evo@latest skills sync --ide qoder,claude,codex