Top AI Agent Standards to Know in 2026 Three open standards are converging in 2026 to give AI agents consistent, structured context: AGENTS.md (a universal context file stewarded by the Linux Foundation's Agentic AI Foundation), Agent Skills (reusable, portable capabilities originally developed at Anthropic), and DESIGN.md (a Google Labs format for encoding visual identity systems). These file-based, human-readable standards address fragmentation across tools like Cursor, Claude, and GitHub Copilot, with AGENTS.md adopted in over 60,000 repositories and Agent Skills supported by 30+ tools including OpenAI Codex and VS Code. Protocols tell agents how to connect. Standards tell them what to know. As the agent ecosystem matures, a second layer of convergence is emerging: open formats that give agents consistent, structured context — about projects, capabilities, and design systems. Unlike protocols which define communication between systems , these standards are file-based, human-readable, and version-controlled alongside your code. Here are the three standards shaping how agents are informed and extended in 2026. agentsmd/agents.md | Agentic AI Foundation Linux Foundation | MIT The universal context file for AI coding agents. Where a README explains a project to humans, AGENTS.md explains it to agents: build commands, test commands, code style conventions, testing frameworks, architectural decisions, and anything else an agent needs to work effectively in the codebase. Plain Markdown, no required schema, no tooling to install — any agent that reads it benefits immediately. The problem it solves is fragmentation. Before AGENTS.md, every tool was reading different files, or nothing. Cursor read .cursorrules . Claude read CLAUDE.md . Most agents read whatever they found and hoped for the best. AGENTS.md gives a single, predictable location for agent-specific context without bloating the human README with instructions no human needs. Adopted by OpenAI Codex, Cursor, GitHub Copilot, and others — reported across 60,000+ open-source repositories as of mid-2026. Governance moved to the Agentic AI Foundation AAIF under the Linux Foundation, the same body that now stewards MCP. Avoiding vendor lock-in: The pragmatic pattern many teams use is to write AGENTS.md as the canonical source of truth, then in tool-specific files like CLAUDE.md or .cursorrules simply instruct the agent to read AGENTS.md . One file to maintain, every tool benefits. If a tool stops being used, nothing is lost. agentskills.io | Open standard | MIT Where AGENTS.md tells agents what a project is, Agent Skills tell agents how to do something — and crucially, that capability travels with the agent across any project. A skill is a folder containing a SKILL.md file with two required YAML fields name and description and a Markdown body with instructions. Optional assets like scripts, templates, and reference files live alongside it. The distinction matters: AGENTS.md is project-scoped context. Agent Skills are reusable, portable capabilities — domain expertise, team-specific workflows, and repeatable procedures that agents load on demand. A skill for writing commit messages, one for generating migration scripts, one for running the company's deployment checklist: each is self-contained, version-controlled, and usable in any compatible agent. Originally developed at Anthropic and released as an open standard in late 2025, it has since been adopted by Claude Code, OpenAI Codex, Cursor, VS Code, and reported 30+ other tools. Partners including Atlassian, Figma, Stripe, and Notion published skills at launch. The format is intentionally minimal. Two required fields and a Markdown body — simple enough to implement in an afternoon. No protocol negotiation, no runtime dependencies, no auth flows. The open format is what makes marketplaces possible. Because a skill is just a folder with a Markdown file, anyone can publish one and any compatible agent can consume it. skills.sh https://skills.sh by Vercel is the most active registry today, hosting skills from Anthropic, GitHub, OpenAI, and the community — installable with a single npx skills add