Grok 筛选的 12 个 Agent Skills,帮你让 AI 写作更自然、工程更规范、设计更专业。
Grok 研究了 300 多个 GitHub Skills 仓库,筛选出 12 个影响最大的技能。这些技能分为写作去 AI 味、工程流程与纪律、设计品味和认知研究四类。/humanizer、/unslop 和 /no-ai-slop 三个技能专门用于消除 AI 写作痕迹。/agent-skills 和 /superpowers 等技能强制 agent 遵循专业工作流程。/cartographer 和 /last30days 等技能帮助 agent 更好地理解和研究代码库。
12 个值得关注的 Agent Skills Grok 系统性研究了 300 多个 GitHub Skills 开源仓库后,筛出了 12 个对其个人配置影响最大的 Skills,咱们按用途把它分为四...
12 个值得关注的 Agent Skills Grok 系统性研究了 300 多个 GitHub Skills 开源仓库后,筛出了 12 个对其个人配置影响最大的 Skills,咱们按用途把它分为四类。 # 写作去 AI 味(3 个) 1. /humanizer( @blader ) github.com/blader/humaniz… 让写作和改写听起来像人写的。定位是通用"人性化"改写器,偏整体语感。 2. /unslop( @poteto ) github.com/cursor/plugins… 这是三者中规则最具体、最工程化的一个。它维护一份约 30 条的"AI 腔黑名单",比如:滥用破折号、强行凑三点排比、"not just X, but Y" 句式、空洞的收尾("The future looks bright")、谄媚开场("Great question!")、堆砌抽象名词(landscape、tapestry、paradigm)等。它的独到之处是不只做减法——它明确指出"把模式删干净只是完成一半,无菌无个性的文字同样一眼假",所以还要求改写后加入观点、变化句长、保留适度的"不完美"。 3. /no-ai-slop( @petergyang ) github.com/petergyang/no-… 目标与 unslop 重叠,强调"精确、明确像人写的"。Peter Yang 是产品领域的知名作者,这个 skill 更偏产品/内容写作场景。 # 工程流程与纪律(4 个) 4. /agent-skills( @addyosmani ) github.com/addyosmani/age… Addy Osmani 出品的"生产级工程技能"合集。帖子强调的点是"agent 在动手写规格之前先采访你"——即强制 agent 在需求模糊时先提问澄清,而不是自行脑补假设。这是对抗"AI 自作主张"的经典手段。 5. /superpowers(Jesse Vincent / obra) github.com/obra/superpowe… 一套完整的 agentic 开发方法论框架:调试时不许猜(必须先复现、定位根因)、强制遵循专业工作流(先写测试、分阶段验证、代码评审等)。核心理念是把资深工程师的职业习惯固化成 agent 无法跳过的流程。适合想让 agent"像正规军而不是野路子"工作的人。 6. /gstack( @garrytan ) github.com/garrytan/gstack Garry Tan(Y Combinator CEO)公开的自己的完整 Claude Code 配置:23 个有明确立场的工具,分别扮演 CEO、设计师、工程经理、发布经理、文档工程师、QA 等角色。帖子提到的关键价值是"spec、review、QA 剧本,让 agent 无法悄悄改代码"——即通过流程约束保证 agent 的每一步改动都可见、可审。它的意义更多在于"一个高强度使用者的实战配置参考",而不是通用框架。 7. /impeccable( @pbakaus ) github.com/pbakaus/impecc… Paul Bakaus(前 Google,现做 AI 工具)的作品,自称"让 AI 更懂设计的设计语言"。用 61 条规则驱动"检测 → 修复 → 复查"的循环,主要面向 UI/设计质量。和纯提示词不同,它试图把设计审美编码成可检查的规则。 # 设计品味(2 个) 8. /skills( @MengTo ) github.com/MengTo/Skills Meng To 是 Design+Code 创始人,设计教育领域的名人。这套 skills 的目标是让 agent 产出设计系统级别的 UI,而不是"能跑但丑"的界面。 9. /skills( @emilkowalski ) github.com/emilkowalski/s… Emil Kowalski 是业界公认的顶级设计工程师(前 Linear、Vercel 相关圈子,以动效细节闻名)。能经受真实 audit 的设计与动效技能——他的价值在于把"细节品味"(缓动曲线、间距、微交互)这种最难言传的东西写成规则。 # 认知与研究(3 个) 10. /skills( @mattpocockuk ) github.com/mattpocock/ski… Matt Pocock 是 TypeScript 教育领域的头部作者。他的 skills 套件是"S 级工程与生产力",覆盖日常工程实践,适合作为通用底子。 11. /cartographer( @KingBootoshi ) github.com/kingbootoshi/c… 一个思路很清晰的工具:在 agent 开始干活之前,先用并行子 agent 给整个代码库画一张地图(架构、模块关系、关键文件)。解决的是 agent 在大型陌生仓库里"瞎逛"、改错地方的常见问题,思路很实用。 12. /last30days( @mvanhorn ) github.com/mvanhorn/last3… 深度研究类 skill:针对任何话题,跨 Reddit、X、YouTube、Hacker News、Polymarket 等平台检索最近 30 天的讨论。价值在于对抗模型知识截止日和"只看官方文档"的偏差——很多时候真实经验在社群里,而不在文档里。 klöss @kloss_xyz had Grok @Bot study 300+ GitHub repos of skills here are the 12 that influenced my setup: /humanizer by @blader : make your writing and rewrites sound human github.com/blader/humaniz… /unslop by @poteto : removes common AI slop patterns from your writing github.com/cursor/plugins… /no-ai-slop by @petergyang : make your writing more precise and clearly human github.com/petergyang/no-… /agent-skills by @addyosmani : agents that interview you before they invent any specs github.com/addyosmani/age… /skills by @mattpocockuk : a suite of S tier engineering and productivity skills github.com/mattpocock/ski… /skills by @MengTo : prompt S tier design and UIs like a design system github.com/MengTo/Skills /skills by @emilkowalski : design and motion skills that survive real audits github.com/emilkowalski/s… /cartographer by @KingBootoshi : a repo map before your agent wanders github.com/kingbootoshi/c… /superpowers by Jesse Vincent: stop guessing when you debug, agentic skills framework + complete software dev methodology forcing agents to follow professional workflows github.com/obra/superpowe… /gstack by @garrytan : memory improvements + spec, review, and QA playbooks so agents cannot silently edit github.com/garrytan/gstack /impeccable by @pbakaus : detect, fix, and recheck with 61 rules github.com/pbakaus/impecc… /last30days by @mvanhorn : deep research what people said about a topic over the last month github.com/mvanhorn/last3… save these and remix them with your Bot! 🔗 View Quoted Tweet 💬 0 🔄 1 ❤️ 2 👀 556 📊 2 ⚡