frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: AI productivity gains – do you fire devs or build better products?

88•Bleiglanz•19h ago•156 comments

Skills are quietly becoming the unit of agent knowledge

6•latand6•19h ago•2 comments

What would you do if you have AI software that may be transformers alternative?

2•adinhitlore•4h ago•1 comments

Ask HN: How much are you spending on AI coding at work?

3•habosa•4h ago•3 comments

Ask HN: How to get free/cheap Claude and AWS credits

3•jacAtSea•7h ago•3 comments

Ask HN: How do you handle peer-to-peer discovery on iOS without a server?

6•redgridtactical•9h ago•5 comments

Tell HN: MS365 upgrade silently to 25 licenses, tried to charge me $1,035

19•davidstarkjava•23h ago•7 comments

SparkVSR: Video Super-Resolution You Can Control with Keyframes

2•steveharing1•10h ago•0 comments

Anyone know how long it will take to re-start Qatar's helium plants?

8•megamike•1d ago•4 comments

Tell HN: H&R Block tax software installs a TLS backdoor

140•yifanlu•2d ago•10 comments

Spotify playing ads for paid subscribers

147•IncandescentGas•4d ago•127 comments

Ask HN: what’s your favorite line in your Claude/agents.md files?

14•khasan222•1d ago•7 comments

I got laid off and realized how broken tech hiring is

9•nirvanist•14h ago•30 comments

Anchor: Hardware-based authentication using SanDisk USB devices

4•rewant•3d ago•1 comments

Structural Friction: A metric for human coordination cost

5•davidvartanian•2d ago•0 comments

Ask HN: How are you securing LLM code agents?

3•woz_•17h ago•4 comments

Ask HN: Why isn't the NSA categorized as an APT?

5•TheOpenSourcer•1d ago•8 comments

Ask HN: What do you look for in your first 10 hires?

28•neilk17•3d ago•34 comments

Ask HN: How do you deal with people who trust LLMs?

153•basilikum•4d ago•201 comments

Ask HN: Is vibe coding a new mandatory job requirement?

37•newswangerd•5d ago•75 comments

European municipalities leak citizen data to US companies

11•sam_lowry_•3d ago•5 comments

Ask HN: Is operational memory a missing layer in AI agent architecture?

5•varunrrai•2d ago•0 comments

I built a game where you argue consumer rights against AI bots

8•dragonmann•3d ago•3 comments

Ask HN: Have you cancelled any software subscriptions because AI replaced them?

10•maxim_bg•3d ago•14 comments

TTal – CLI that turns Claude Code into a multi-agent software factory

6•neilbb•4d ago•4 comments

Ask HN: The new wave of AI agent sandboxes?

12•ATechGuy•3d ago•5 comments

Ask HN: What features does a chip require to beat Nvidia in the AI race?

6•caloricflow•2d ago•13 comments

Ask HN: How to Find a Job in the UK

9•0x3444ac53•3d ago•10 comments

You've reached the end!

Open in hackernews

Skills are quietly becoming the unit of agent knowledge

6•latand6•19h ago
In the last few months agent skills went from a niche Claude Code feature to something every major runtime supports. Anthropic has an official skills repo. OpenAI shipped skills in Codex with a built-in skill-creator. Karpathy talks about "everything is skill issue" and describes writing skills as curricula for agents [1]. The format is converging: a folder with a SKILL.md, optional scripts, optional reference files.

What changed is that the models got good enough to follow written instructions reliably. A skill is just a tested workflow in markdown that the agent reads and follows instead of improvising. You can also bundle scripts that the agent runs during the workflow, which covers what most people use lightweight MCP servers for, except the agent can read the script source and extend it.

Karpathy talks about an "economy of agents" and says we should stop writing HTML docs for humans and start writing markdown docs for agents [1]. Anthropic just shipped a skill-creator that benchmarks whether a skill still works after model updates. There are already tens of thousands of community skills on GitHub.

Distribution still feels early. Most useful skills are tiny. A markdown file, maybe one script. Useful enough to keep reusing, but not something anyone turns into a proper GitHub repo with a README and install instructions. So they stay on one machine.

I have been writing skills for my own agents for a while and I keep running into this. The format works. Moving them between machines or handing one to someone else does not.

Curious if others are hitting the same wall or if there are approaches I am missing.

[1] https://www.youtube.com/watch?v=kwSVtQ7dziU (Karpathy on No Briars podcast, skills discussion around 1:03:40)

Comments

manzanarama•10h ago
What do you think about checking the skills directly into the repo where they are useful?
latand6•8h ago
Yeah, that's the default way to approach it, but the cognitive load is still a problem. Manually reviewing every single skill I might need just for one task is tedious. GitHub stars won't give you any useful signal. I actually started building a product that solves this.