← All summaries

Anthropic, OpenAI, and Microsoft Just Agreed on One File Format. It Changes Everything.

AI News & Strategy Daily · Nate B Jones · March 30, 2026 · Original

Most important take away

Skills (simple markdown files with metadata and methodology instructions) have evolved from personal productivity tools into an open, cross-platform infrastructure standard now supported by Anthropic, OpenAI, and Microsoft. The critical shift is that agents, not humans, are now the primary callers of skills, which means you need to design, test, and version skills with agent-first composability and contract-based outputs in mind. If you invest in building and refining skills now, they compound over time in a way that copy-paste prompts never will.

Summary

Actionable insights and career advice:

  • Start building skills today, even if you are non-technical. Pick a task you do one to three times a week, describe it to your preferred AI, and ask it to help you create a skill markdown file from your past conversations and workflows.
  • Invest 80% of your effort in the description field. A vague description like “helps with competitive analysis” will fail. Name the artifact types produced, include trigger phrases, and state the expected output format. Keep the description on a single line — a line break will cause the LLM to ignore everything after it.
  • Keep skills lean — aim for under 100-150 lines. A short, reliable skill outperforms a long one with competing instructions. Include reasoning and frameworks (not just linear steps), specify output format explicitly, document edge cases, and provide one good example.
  • Design skills as agent-callable contracts. Frame the output as a declarative agreement: what the skill produces, what it does not, and what the next agent or step in the pipeline should expect. Build for composability so outputs hand off cleanly downstream.
  • Quantitatively test your skills. Maintain a test suite, version your skills, and measure results across iterations. Wording changes can unpredictably shift LLM behavior, so treat skill tuning like an empirical process.
  • Use deterministic scripts for hard-wired behavior. Skills are plain English and best for general-purpose reasoning. When you need guaranteed behavior, reach for scripting — that is not a weakness, it is good engineering judgment.
  • Think in three tiers for team deployment. Tier 1: org-wide standards (brand voice, templates). Tier 2: methodology skills capturing senior practitioner craft knowledge — these are high-alpha and should be extracted from experts’ heads. Tier 3: personal workflow skills — but store them accessibly, not buried on your laptop, so others can use them when you are unavailable.
  • Career leverage: open-source your skills work. Publishing high-quality, domain-specific skills functions like an open-source portfolio — it demonstrates expertise and can lead to hiring opportunities, similar to how open-source engineering projects attract acqui-hires.
  • Skills compound; prompts do not. Every refinement you make to a skill persists and improves future runs. Prompts evaporate after the conversation ends. Shift your practice from prompt iteration to skill iteration.

Chapter Summaries

  1. Introduction & Why Skills Matter Now — Nate frames the video as a catch-up on how skills have evolved since Anthropic launched them in October. He previews the key changes and announces a community skills repository.

  2. Four Big Shifts Since October — (1) Skills moved from personal config to organizational infrastructure, provisioned across teams. (2) Agents, not humans, are now the primary callers. (3) Skills are not developer-only — they apply across all business functions. (4) Skills are now a cross-industry open standard adopted by Anthropic, OpenAI, and Microsoft.

  3. What a Skill Actually Is — A skill is a folder with a skill.md file containing metadata (especially a description) and methodology instructions in plain English. That is the entire primitive.

  4. Production Patterns: The Specialist Stack — Developers drop skill packs into projects so agents in tools like Cursor can autonomously build features. A real estate operator built 50,000+ lines of skills across 50 repos covering rent rolls, comps, cash flow, and team handoffs. Orchestrator skills can route incoming requests to sub-agents.

  5. Skills vs. Prompts: Why Skills Compound — People who have been building skills for six months are compounding improvements; people who have been prompting are still copy-pasting. Skills benefit from ecosystem investment and personal refinement over time.

  6. How to Build a Skill That Works — Practical construction advice: nail the description (single line, specific triggers), include reasoning not just steps, specify output format, document edge cases, provide an example, and keep it lean.

  7. Agent-First Skill Design — Descriptions become routing signals. Outputs should be framed as contracts. Composability is essential for multi-step agent workflows. Use deterministic scripts when you need hard guarantees.

  8. Team Skill Strategy: Three Tiers — Tier 1 (org-wide standards), Tier 2 (methodology/craft skills from senior practitioners), and Tier 3 (personal workflow skills). Each tier has different deployment and governance considerations.

  9. Community Skills Repository & Closing Advice — Nate announces a domain-specific skills section within the Open Brain GitHub repo, organized by workflow type with an agent-readability bar. He closes with tiered advice for beginners, intermediate builders, and enterprise teams, emphasizing that skills are the persistent, compounding layer that frees you from prompt copy-paste.