Skill其实就是分类学。 * { margin: 0; padding: 0; outline: 0; } body { font-family: “PingFang SC”, system-ui, -apple-system, BlinkMacSystemFont, “Helvetica Neue”, “Hiragino Sans GB”, “Microsoft YaHei UI”, “Microsoft YaHei”, Arial, sans-serif; line-height: 1.6; } .__page_content__ { max-width: 667px; margin: 0 auto; padding: 20px; text-size-adjust: 100%; color: rgba(0, 0, 0, 0.9); padding-bottom: 64px; } .title { user-select: text; font-size: 22px; line-height: 1.4; margin-bottom: 14px; font-weight: 500; } .__meta__ { color: rgba(0, 0, 0, 0.3); font-size: 15px; line-height: 20px; hyphens: auto; word-break: break-word; margin-bottom: 50px; } .__meta__ .nick_name { color: 576B95; } .__meta__ .copyright { color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.05); padding: 0 4px; margin: 0 10px 10px 0; } blockquote.source { padding: 10px; margin: 30px 0; border-left: 5px solid ccc; color: #333; font-style: italic; word-wrap: break-word; } blockquote.source a { cursor: pointer; text-decoration: underline; } .item_show_type_0 > section { margin-top: 0; margin-bottom: 24px; } a { color: 576B95; text-decoration: none; cursor: default; } .text_content { margin-bottom: 50px; user-select: text; font-size: 17px; white-space: pre-wrap; word-wrap: break-word; line-height: 28px; hyphens: auto; } .picture_content .picture_item { margin-bottom: 30px; } .picture_content .picture_item .picture_item_label { text-align: center; } img { max-width: 100%; } .pay_subscribe_notice { margin: 30px 0; padding: 20px; background: fffbe6; border: 1px solid ffe58f; border-radius: 8px; } .pay_subscribe_badge { display: inline-block; padding: 4px 12px; background: faad14; color: fff; border-radius: 4px; font-size: 14px; font-weight: 500; margin-bottom: 12px; } .pay_subscribe_desc { font-size: 15px; line-height: 1.8; color: rgba(0, 0, 0, 0.7); margin-bottom: 12px; } .pay_subscribe_hint { font-size: 13px; color: rgba(0, 0, 0, 0.4); } .__bottom-bar__ { display: flex; justify-content: space-between; align-items: center; position: fixed; bottom: 0; left: 0; right: 0; height: 64px; padding: 8px 20px; background: white; box-sizing: border-box; border-top: 1px solid rgba(0, 0, 0, 0.2); } .__bottom-bar__ .left { display: flex; align-items: center; font-size: 15px; white-space: nowrap; } .__bottom-bar__ .right { display: flex; } .__bottom-bar__ .sns_opr_btn { display: flex; align-items: center; user-select: none; background: transparent; border: 0; color: rgba(0, 0, 0, 0.9); font-size: 14px; } .__bottom-bar__ .sns_opr_btn:not(:last-child) { margin-right: 16px; } .__bottom-bar__ .sns_opr_btn > img { margin-right: 4px; }
Skill其实就是分类学。
原创 数字生命卡兹克 数字生命卡兹克 2026-04-16 10:08 北京
最近也不知道为啥,看到大家对skill的热情高涨到了一种有点离谱的程度。
感觉万物都可以蒸馏,万物都可以封装成skill。
我看了好几个朋友的skill库,有的装了六七十个,最离谱的甚至都破百了。
昨天正好发了Harness的文章后,提到了我觉得skill就是分类学这个事,那一段出乎意料的被很多朋友转发。
所以我就再展开说一下。
一个好的skill,我觉得他的核心就两个词:
分类和触发。
一个多月前Claude还更新过一次他们的Skills生成器,我当时还专门写过一篇,新版本最重要的动作,就是怎么用反馈去不断优化一个skill的触发条件。
skill怎么触发、能不能正确触发、触发以后能干什么,才是最核心的事。
之前有一篇论文发过实验数据,就是当Skills数量在20个以下时,准确率保持在90%以上,几乎不会错。超过30个准确率就不行了。到了200个的时候,准确率就剩20%了,而且速度极慢,Token消耗还爆炸。
跟我自己体感差不多,我自己的的Skills常年保持在30个以下。
我举个自己的例子,我之前想把NanoBanana的API封装成能被Agnet调用的skill,因为我平时有很多生图的需求,比如公众号封面图、小红书封面图、PPT配图等等。
那这些应该每一个需求单独做一个skill,还是应该合成一个skill呢?
我的做法就是只有一个图片生成的Skill,这个skill内部写了我的几个主流场景,在Agent触发这个skill后,根据我的上下文进行二次分析,再调用内部具体的分支画图场景,同时也能用这个skill,覆盖我其他的通用生图需求。
这其实就是分类学的核心理念。
从来不是只分的越细越好,是找到最合适的颗粒度。
界、门、纲、目、科、属、种,生物学就是如此,一层一层穿透下去。
你要是把前面全抹了,只给你留个种,你可以想象一下这个世界有多灾难。
封面图和PPT配图之间的差异,不值得在最顶层各自占一个独立的skill,它们只是图片生成这个类别内部的变异。
但图片生成和服务器管理之间的差异,那是真的大到需要各自占一个独立的skill。
我自己判断一个skill值不值得存在,标准就三条:
1. 它对应的场景有没有明确的边界。
2. 它对应的场景是不是会高频复现。
3. 它能不能归属进已有的skill里。
以及,奥卡姆剃刀原则,如无必要,勿增实体。
翻译过来就是,你用不到的skill你就别装。
但最重要的,还是需要你设计自己的分类系统,哪些是CLAUDE.md能处理的,哪些是skill该处理的。
分类学如此。
你的skill,也应如此。
数字生命卡兹克
 阅读 赞  分享 ‘%3E %3Cg transform=‘translate(0 -2.349)‘%3E %3Cpath d=‘M0 2.349h24v24H0z’/%3E %3Cpath fill=‘%23576B95’ d=‘M16.45 7.68c-.954 0-1.94.362-2.77 1.113l-1.676 1.676-1.853-1.838a3.787 3.787 0 0 0-2.63-.971 3.785 3.785 0 0 0-2.596 1.112 3.786 3.786 0 0 0-1.113 2.687c0 .97.368 1.938 1.105 2.679l7.082 6.527 7.226-6.678a3.787 3.787 0 0 0 .962-2.618 3.785 3.785 0 0 0-1.112-2.597A3.687 3.687 0 0 0 16.45 7.68zm3.473.243a4.985 4.985 0 0 1 1.464 3.418 4.98 4.98 0 0 1-1.29 3.47l-.017.02-7.47 6.903a.9.9 0 0 1-1.22 0l-7.305-6.73-.008-.01a4.986 4.986 0 0 1-1.465-3.535c0-1.279.488-2.56 1.465-3.536A4.985 4.985 0 0 1 7.494 6.46c1.24-.029 2.49.4 3.472 1.29l.01.01L12 8.774l.851-.85.01-.01c1.046-.951 2.322-1.434 3.59-1.434 1.273 0 2.52.49 3.472 1.442z’/%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/svg%3E) 推荐 ’ fill=‘%23000’ fill-opacity=’.9’/%3E%3C/svg%3E) 留言