Skills are mostly snake oil, the way people use them (the aspiration to download kung foo from a celebrity). There was a time when maybe it mattered (last year), but with good repos and good prompts today's agents can find exactly what they need without any skills. "Skills" as developer macros can be useful, but at most those are things shared with the team (in the repo), not something you download from the internet.…
>but with good repos and good prompts I think waaay more people struggle with this than HN would have you believe. In the real world, not everyone is a software dev with a developer mindset to using these tools. Normal people essentially type the equivalent of "Make me X!" and complain when the model assumes anything in their underspecified mess of a prompt. There are skills like grill-me that can potentially help th…
Ask HN: How do you manage skills files?
251–260 of 294 posts
Re: Ask HN: How do you manage skills files?
#252Earlier quoted context omitted.
People always say this about the evals, but I find it hard to have a practical implementation of such a thing where you won’t end up spending 100x the amount of time on the evals than building the skill itself. Like, ok, I have a debugging skill, now how do I make evals except for the most trivial things?
I am starting to wonder if I am doing something wrong: I ignore evals and instead I just try new models or new harnesses (or tweak my own harnesses) by solving problems I want to solve in any case; I just use new tools and form my own subjective opinions of them.
The idea would be that if you already know what you want from an autonomous system, you don't need to verify manually every time and instead just run these tests to see if there's any regression of any kind. Generally I recommend structure output and evals that are just a plain assertion, if possible. Cheaper, faster, deterministic assertions.
Does that make more sense?
Re: Ask HN: How do you manage skills files?
#253I don’t find skills. I write my own skills based on things I do frequently and repeatably. I keep them version controlled locally and in GitHub, and I symlink that folder to my various agent skill folders so they all stay up to date. I feel like downloading a bunch of skills is another one of those useless collections people make purely because they have infinite options. It’s like those collections of thousands of b…
Re: Ask HN: How do you manage skills files?
#254Have your agent make a plugin marketplace -- mine is here (feel free to crib): https://github.com/photostructure/coding-skills Be sure to increment unofficial plugin versions when you make edits: codex's auto-update works reasonably well, claude not so much, but when asked, both can fix their own config. And like others have said, imho the skills that are incanted as macros are much more reliably useful. I use my tec…
Here’s the spec I used for my skills repo:
https://claude.ai/public/artifacts/d37077a6-2cdd-4961-b504-b...
Re: Ask HN: How do you manage skills files?
#255I don’t find skills. I write my own skills based on things I do frequently and repeatably. I keep them version controlled locally and in GitHub, and I symlink that folder to my various agent skill folders so they all stay up to date. I feel like downloading a bunch of skills is another one of those useless collections people make purely because they have infinite options. It’s like those collections of thousands of b…
At work I'll occasionally repurpose a skill that someone else has shared as a starting point, but those skills are already somewhat customized to the environment I operate in.
I have all of my skills maintain a single table in a markdown file with a description of each skill, when it last ran, exceptions it encountered, and when it was last edited.
Re: Ask HN: How do you manage skills files?
#256Re: Ask HN: How do you manage skills files?
#257- I don't find skills, I create them - Keep them organised in software repos that you install with symlinks for all coding harnesses that you have. Progressive disclosure based on the frontmatter does the rest. - I make sure they work with AI evals. Think of them like integration tests to prove behaviour. They're useful to optimize your flows. I try to make my skills be mostly a translation between natural language a…
What about skills that you need across projects?
Think ~/.codex/skills/Same for ~/.Claude or any other tool that supports skills.
Re: Ask HN: How do you manage skills files?
#258Re: Ask HN: How do you manage skills files?
#259Earlier quoted context omitted.
This has been my experience (with downloaded skills), and currently my workflow is almost 100% skill driven. Every feature I build uses a skill that does the following: 1. Read a ticket and get context on the task. The ticket was probably written by another agent after a conversation with myself about what is happening/needs to happen, etc. 2. Plan the task, asking for clarification where needed 3. Pressure test the…
What does your prompting look like for step 3 - pressure test the plans?
It goes on to describe what counts as a claim, how to verify the claims, and how to respond. It responds to each claim with verified, unverified, or contradicted.
The skeptic agent has been the most high value thing I've added to the workflow.