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

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
The Quiet Standardization of AI Agent Skills
Samuellrose · 2026-04-23 · via Hacker News - Newest: "AI"

Published: April 23, 2026

The Quiet Standardization of AI Agent Skills

Anthropic, OpenAI, Google, GitHub, and a growing list of independent developers have all converged on the same file format for customizing AI agent behavior — without any formal standards body, working group, or coordination.

The format is called SKILL.md. Originally created by Anthropic for Claude Code, it has been independently adopted by Codex CLI, Gemini CLI, GitHub Copilot, Cursor, OpenClaw, and 20+ other agents. The same file works across all of them without modification.

How it happened

In early 2025, Anthropic shipped Claude Code with a simple customization mechanism: drop a markdown file called SKILL.md into a directory, and the agent reads it as instructions for a specific task. YAML frontmatter with a name and description. Markdown body with instructions. That's the whole format.

It was not designed as a standard. It solved a specific problem: users wanted to teach their agent recurring workflows without repeating themselves every session.

Then OpenClaw implemented the same format. Then Codex CLI. Then Cursor. Then Gemini CLI. Each implementation was independent — teams read Anthropic's format, found it sufficient, and adopted it rather than inventing something new.

This is unusual. Developer tool ecosystems almost never converge without a formal spec process or a charismatic evangelist pushing adoption. SKILL.md spread because there's nothing to argue about. It's a markdown file with a few YAML fields.

Why this matters

The format war that didn't happen. Compare with YAML vs TOML vs JSON, Terraform vs Pulumi vs CloudFormation, or GGUF vs ONNX vs SafeTensors. Every adjacent space has competing formats. SKILL.md won by being first and simple enough that building an alternative wasn't worth the effort.

Genuine portability. A skill written for Claude Code works in OpenClaw, Codex CLI, Cursor, and Gemini CLI. The instructions are plain English, so there's no agent-specific API to abstract over. Copy the folder, it works.

An interesting question about agent intelligence. If the difference between a mediocre code review and a thorough one is a 20-line markdown file, how much of what we attribute to model capability is actually just better prompting?

The limitations

Discovery is fuzzy — skills activate based on natural language matching, and the agent sometimes loads the wrong one. There's no versioning or dependency management. Cross-agent features (Claude Code's context forking, Codex CLI's openai.yaml sidecar) don't translate.

And there's no trust layer. GitHub has hundreds of thousands of SKILL.md files with no verification. Researchers have already found skills with hidden prompt injection and data exfiltration patterns.

Where this is going

The ecosystem is at the "npm circa 2012" stage. The format exists and adoption is growing, but the infrastructure (discovery, trust, distribution) is still being built.

Things I'm watching: MCP integration letting agents pull skills on demand instead of reading local files. Skill composition (one skill invoking another). And a formal specification — 20+ agents have adopted the format but there's still no spec beyond Anthropic's docs.

Disclosure: I built Agensi, a curated marketplace for SKILL.md skills with security scanning. So I'm biased on the distribution question. But the convergence itself is what I find genuinely interesting.


The SKILL.md format reference is at agensi.io/learn/skill-md-format-reference. A curated skill catalog is at agensi.io/skills.

Related Articles