惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I stopped collecting random agent skills and started ...
张文超 · 2026-05-18 · via DEV Community

张文超

Most people do not have a skill discovery problem for very long.

After a few days with Claude Code, Codex, Cursor, or other agent tools, the problem changes.

You find a few useful skills on GitHub. You install some. You bookmark others. Then your setup turns into a pile of disconnected commands, repos, and half-remembered SKILL.md files.

That is where I started too.

The missing piece was not "more skills". It was a better way to organize skills around repeatable work.

The real problem: skills without workflow context

A single skill can be useful on its own.

But in real work, skills usually come in groups:

  • research + synthesis + writing
  • SEO analysis + content planning + localization
  • design review + image generation + asset upload
  • bug triage + reproduction + code review

If those groups only live in your memory, you keep rebuilding the same workflow every week.

That is why I started thinking in collections instead of one-off installs.

1. Save skills by job, not by hype

The easiest mistake is collecting skills because they look impressive.

A better filter is:

"Would I install this again for a specific job?"

If the answer is yes, put it into a workflow bucket.

For example:

  • content workflow
  • landing page workflow
  • image workflow
  • code review workflow
  • growth workflow

That makes a skill directory much more useful, because you are no longer asking "What is popular?" You are asking "What helps with this job?"

Agent Skills Finder home directory overview

2. Evaluate the skill before you add it to a workflow

I also stopped saving skills based on repo names alone.

Before a skill goes into one of my workflow collections, I want to inspect:

  • what the skill actually promises to do
  • whether the SKILL.md is specific or vague
  • whether the file tree suggests real implementation or just a thin wrapper
  • whether the install command is clear
  • whether there are any comments, ratings, or other signals worth checking

That is why I like directories that let me inspect the skill before I install it. Lately I have been using Agent Skills Finder collections as the place where I group candidate skills by workflow after checking the details first.

It is still a discovery and evaluation layer, not a security audit. I still review third-party code and instructions before enabling anything in a real workspace.

Agent Skills Finder detail page for install and file inspection

3. Keep the collection small enough to be reusable

The goal is not to create a giant archive.

The goal is to create small, reusable sets that match the way you actually work.

I have found that 3 to 7 skills per collection is usually enough.

More than that, and the collection becomes a wishlist instead of a workflow.

A useful collection should answer one practical question:

"If I need to do this job tomorrow, which skills would I reach for first?"

4. Write one sentence for why each skill belongs there

This sounds minor, but it matters.

If you cannot explain why a skill belongs in a collection, it probably does not belong there yet.

A one-line note is often enough:

  • "Use this to inspect repo structure before editing."
  • "Use this for draft generation after keyword clustering."
  • "Use this after code review to create release notes."

That short explanation becomes the bridge between a list of skills and a workflow that someone else can actually reuse.

5. Revisit collections after real usage, not right after discovery

The best time to refine a workflow collection is after you used it in actual work.

That is when you notice:

  • which skills overlap too much
  • which ones look good but are never actually used
  • which missing step keeps forcing you back to manual work
  • which skill deserves to move into a different collection

This is also why I no longer treat discovery as the finish line.

Discovery is only step one. Reuse is the real test.

Final thought

For agent tooling, the hard part is not finding one more skill.

The hard part is turning a scattered set of installs into a workflow you can repeat, share, and improve.

Once I started organizing skills as collections tied to real jobs, the whole setup became much easier to use.