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

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
The GitHub Blog
The GitHub Blog
博客园_首页
博客园 - 叶小钗
腾讯CDC
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
D
Docker

Sanity.io

A Board Game agent built using Sanity Context and Vercel's AI SDK | Sanity Build a prototype with Claude Code that your whole team can edit | Sanity What’s New - May 2026 | Sanity I built a London pub guide with v0 and the Sanity MCP in six hours. Here's what I learned. | Sanity Build a conference concierge with Agent Context and Anthropic | Sanity Build a content-aware Telegram agent with Vercel AI SDK and Chat SDK | Sanity How I used Agent API to generate photos for my family’s recipes | Sanity What’s New April - 2026 | Sanity Better context, better matches: An AI love story (for dogs) | Sanity How to write for an agent | Sanity Content Agent, meet Slack: AI content operations in your workflow | Sanity Structure powers intelligence | Sanity Your agent needs better content. Here's how to give it. | Sanity How to serve content to agents (a field guide) | Sanity Sanity TypeGen GA: Automatic TypeScript types for content and GROQ | Sanity Sanity is now available on the Vercel Marketplace | Sanity The logo soup problem (and how to solve it) | Sanity Content Releases: From scattered updates to coordinated publishing | Sanity What's New - February 2026 | Sanity How we solved the agent memory problem | Sanity v0 Builder Challenge: The winners | Sanity Content Agent: Days of work in one conversation | Sanity Our Sanity Values | Sanity Open Source Pledge 2025: Stepping up when it matters | Sanity v0 builder challenge: $3000 in prizes | Sanity Why AI Breaks Without Structured Content Operations | Sanity What’s New January - 2026 | Sanity BFCM 2025: What teams built when infrastructure stopped being the problem | Sanity How AI shaped holiday shopping and what it means for content in 2026 | Sanity Sanity Studio v5: Embracing React 19 | Sanity
Introducing: Sanity Agent Skills | Sanity
Jon Eide Johnsen · 2026-01-27 · via Sanity.io

Sanity is a flexible platform with a lot of depth. AI agents are great at writing Sanity code that works, but that flexibility means there are often multiple ways to do things — and agents don't always pick the optimal approach. A GROQ query might work but fetch more data than you need. A studio might miss Visual Editing configuration. Portable Text might render without proper custom components.

Today we're releasing Agent Skills for Sanity – a collection of best practices that teach your AI agent how to build with Sanity correctly.

What's inside

We've packaged the collective experience from Sanity's engineering, support, and customer solutions teams into four skill packages:

SkillWhat it covers
sanity-best-practicesGROQ performance, schema patterns, Visual Editing, Portable Text, images, page builders, Studio customization, TypeGen, localization, migrations
content-modeling-best-practicesStructured content principles, separation of concerns, future-proofing, naming conventions
seo-aeo-best-practicesEEAT signals, Core Web Vitals, structured data, AI answer optimization
content-experimentation-best-practicesA/B testing patterns, personalization, feature flags with content

The Sanity skill alone contains 25+ rules across 10 categories. Each rule follows a consistent format: explain the problem, show the wrong way, show the right way.

For example, the skill can help your coding agent to:

  • Optimize slow GROQ queries: Rules like "Avoid Joins in Filters" teach agents to use _ref comparisons instead of -> in filter expressions – a common mistake that doesn't surface until your dataset grows
  • Set up Visual Editing correctly: Agents learn to configure studioUrl, strip out stega strings from OpenGraph image content, and wire up the Presentation tool
  • Build page builders that scale: When to use inline objects vs. references, how to structure preview configurations, proper array key handling
  • Handle Portable Text properly: Custom component patterns, link rendering, and avoiding common serialization mistakes
  • Write safe migrations: Using defineMigration from sanity/migrate instead of raw client patches, with idempotent filter patterns

How agents use these rules

This repo follows the Agent Skills format – an open standard for packaging knowledge for AI agents. The format works with Claude Code, Cursor, GitHub Copilot, VS Code, Codex, OpenCode, and several other AI development tools.

Agent Skills are folders of instructions and examples that agents discover and reference on demand. Think of them as documentation written for machines. Instead of hoping an agent learned the right patterns from training data, you give it explicit rules to follow.

When you install the skill, your agent gets all the rules. It references them when writing GROQ queries, creating schemas, or setting up Visual Editing. The agent treats the rules as the source of truth rather than improvising.

Why we built this

Our support team answers the same questions weekly. Our solutions engineers see the same schema mistakes across projects. Our docs contain this knowledge, but agents don't always find the right page at the right time.

Common issues we see:

  • GROQ queries that work but don't scale
  • Schemas missing hotspot on images (cropping breaks)
  • Page builders using references when objects would be simpler
  • Visual Editing setups missing studioUrl or proper stega cleaning
  • Array items without stable _key values
  • Field deletions that orphan production data

We packaged what we know into a format agents can use directly. Now when you ask your agent to "add a page builder to my schema," it knows to use inline objects for content blocks, add preview configuration, and set up proper array validation.

Beyond Sanity-specific patterns

Content modeling, SEO, and experimentation aren't Sanity-specific – but they're areas where agents often miss the mark. We included best practices for:

  • Content modeling: Why your blueHighlightBox field name will haunt you when design changes. How to separate content from presentation. When to use references vs. embedding.
  • SEO and AEO: What actually moves Core Web Vitals (LCP, INP, CLS). How to structure content for AI answer engines. EEAT signals that matter.
  • Content experimentation: Running A/B tests on content without code deploys. Personalization patterns that don't create maintenance nightmares.

These skills have Sanity-specific implementation notes where relevant, but the principles apply broadly.

How this fits with the Sanity MCP server

If you're using the Sanity MCP server, your agent can already create and deploy schemas, as well as querying, creating and updating content. The MCP server also exposes a set of agent rules through the list_sanity_rules and get_sanity_rules tools.

Agent skills work slightly differently. They're portable packages that live in your codebase and work across any tool that supports the Agent Skills standard. The agent sees available skills and loads them when relevant to the task – no server connection needed.

Use MCP when you need your agent to interact with your Sanity projects. Use skills when you want best practices that travel with your repo.

Get started

The repo is live at github.com/sanity-io/agent-toolkit.

Install with Vercel's skills CLI:

Using Claude Code? Install as a plugin:

Try it on your next Sanity project. Let us know what rules are missing or what you'd like to see – drop feedback in our Discord community.

The Sanity agent skills are available now for all projects. Combined with the Sanity MCP server, your AI agent has everything it needs to build with Sanity correctly.