skilly-cli

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skilly CLI

Skilly CLI

This repo's skills are managed by skilly, a hub at
timschoch/skilly
. Always use the CLI; never install skills by manual copies.
Exception — the user posts a skills.sh URL: that skill lives outside the hub. Hand-pin it with the skills CLI:
npx -y skills add <url> --agent claude-code -y
. It lands in
skills-lock.json
and survives the sync; skilly never touches hand-pins.
  • Add a bundle or single skill:
    npx -y github:timschoch/skilly add <name...>
    — bundle names and what they contain: catalog
  • Remove:
    npx -y github:timschoch/skilly remove <name...>
    — removing a bundle keeps skills still claimed by another bundle
  • Pull the hub's current state:
    npx -y github:timschoch/skilly update
Every verb ends with its own commit, push, and PR — do not commit or push for it. On
main
it branches to
chore/skilly-setup
by itself.
Never hand-edit skilly-owned files — the nightly sync wipes and rewrites them:
  • .claude/skills/
    and
    .agents/skills/
    (installed skills)
  • .claude/rules/<name>-*.md
    (installed router rules)
  • .skilly.json
    ,
    skills-lock.json
A change to a skill belongs in its source repo (see
skills-lock.json
for the source), a repo-local rule in
CLAUDE.md
.
本仓库的技能由skilly(托管于
timschoch/skilly
的hub)管理。请始终使用CLI操作;切勿通过手动复制的方式安装技能。
例外情况——若用户提供skills.sh链接:该技能托管于hub之外。请使用skills CLI手动固定它:
npx -y skills add <url> --agent claude-code -y
。它会被添加到
skills-lock.json
中,且在同步时不会被覆盖;skilly不会触碰手动固定的技能。
  • 添加技能包或单个技能:
    npx -y github:timschoch/skilly add <name...>
    —— 技能包名称及其包含内容请查看:catalog
  • 移除技能:
    npx -y github:timschoch/skilly remove <name...>
    —— 移除技能包时,仍被其他技能包引用的技能会被保留
  • 拉取hub的最新状态:
    npx -y github:timschoch/skilly update
每个操作都会自动完成提交、推送并创建PR —— 无需手动执行提交或推送。在
main
分支上,它会自动创建
chore/skilly-setup
分支。
切勿手动编辑skilly管理的文件 —— 夜间同步会清除并重新写入这些文件:
  • .claude/skills/
    .agents/skills/
    (已安装的技能)
  • .claude/rules/<name>-*.md
    (已安装的路由规则)
  • .skilly.json
    skills-lock.json
对技能的修改应提交至其源仓库(可查看
skills-lock.json
获取源地址),仓库本地规则请写入
CLAUDE.md