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

推荐订阅源

J
Java Code Geeks
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
量子位
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
H
Help Net Security
The Cloudflare Blog
U
Unit 42

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 Introducing: Sanity Agent Skills | 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
v0 Builder Challenge: The winners | Sanity
Knut Melvær · 2026-01-27 · via Sanity.io

The v0 × Sanity Builder Challenge ran January 8-22. We asked developers to build apps where structured content powers a feature users actually care about. Not blogs. Not portfolios. Features that only work because the content has shape: types, relationships, queryable fields.

The constraint: build exclusively through v0's chat interface, with Sanity's MCP server handling the content infrastructure. No manual code editing.

Here's the projects that impressed us the most.

The winners

🥇 Gold ($1,500): HiPP Product Finder

Triplesense GmbH (App · v0 Chat)

The winning entry came from a team working with a real client: HiPP, the baby food company. They built a guided product finder that walks parents through age, dietary needs, and product preferences, then surfaces relevant recommendations.

The structured content does the heavy lifting here. Each product in Sanity carries age ranges, dietary flags, and category tags. The UI doesn't just display products; it queries them. Select '6+ months' and 'dairy-free' and the options narrow automatically. That filtering logic lives in the content model, not hardcoded in the frontend.

Built on HiPP's existing Sanity content from the UK market. Real client, real products, real constraints.

A split screen showing a development interface on the left discussing a "Product Finder" feature, and a HIPP ORGANIC baby food website on the right displaying products and a "Start Product Finder" button.

🥈 Silver ($1,000): Annual Calendar 2026

@RaillyHugo (App · v0 Chat)

A personal calendar that doubles as a coding life tracker. The standout feature: GitHub contribution-style heat maps integrated with a year-view calendar. Click any day to see detailed stats, notes, and photos.

The content model connects events to tags, and tags to colors and categories. That's what makes the heat map work. The visualization isn't just pretty; it's driven by structured relationships between calendar entries. Events link to projects, projects have status, status maps to color intensity. The whole thing supports Google Calendar sync.

It's the kind of tool a developer builds for themselves. That authenticity shows.

GitHub Year View calendar showing green contribution squares with a welcome pop-up.

🥉 Bronze ($500): StructureOS

Ryan Murray (App · v0 Chat)

The most ambitious content model in the challenge. StructureOS treats Sanity as a 'programmable content graph': 38 entities (people, places, topics, organizations) connected by 24 relationships, with AI-generated insights derived automatically through queries.

Instead of manually curating pages and links, the system derives them from meaning. It's a glimpse at what content infrastructure looks like when you stop thinking in pages and start thinking in relationships.

A dark mode dashboard for a "Content Intelligence Layer" showing metrics for entities, relationships, content, and AI insights, along with entity distribution.

Honorable mentions

Restaurant Menu Intelligence

@thespadhiyar (App · v0 Chat)

108 dishes. Each one tagged with dietary restrictions (vegetarian, Jain, vegan), spice levels on a 1-5 scale, and allergen warnings. The MCP server ingested the full menu and made it queryable: 'Show me mild dishes without nuts that are Jain-friendly.'

This isn't a menu. It's a decision-support tool for diners with restrictions who are tired of flagging down waiters to ask about ingredients. The content model does the work.

Crafting Knowledge

Vincent Florio (App · v0 Chat)

The wildest concept in the challenge: a Minecraft-inspired interface for learning. You drag concept cards onto a 'crafting table' and the system shows how ideas combine. Drop 'recursion' and 'data structures' together, get an explanation of tree traversal.

Vincent reported getting the core mechanic working in essentially one MCP interaction. The content model (concepts, relationships, combination rules) was clear in his head before he started typing. Sometimes the fastest path is knowing exactly what you want.

What we learned

Structured content enables features that flat content can't. HiPP's product finder doesn't work with a list of product descriptions. It needs age ranges, dietary flags, categories as queryable fields. The Restaurant Menu needs spice levels as numbers, not adjectives. StructureOS needs entity types and relationship definitions. The winning entries all treated content as data first, display second.

The content model is the feature. In every winning submission, the interesting functionality emerged from how content was structured, not from frontend code. Filter products by dietary needs? That's a GROQ query against structured fields. Visualize coding activity as a heat map? That's calendar entries linked to tags linked to colors. Derive page relationships from meaning? That's a knowledge graph in Sanity.

MCP made the content modeling accessible. Developers described what they wanted ('I need a field for spice level, 1-5') and the agent translated that into working Sanity schemas. The submissions that pushed hardest on content modeling (StructureOS with 38 entity types, Restaurant Menu with its dietary metadata) got there through conversation, not documentation.

That's the bet with this workflow: if the AI handles the implementation details, developers can focus on what their content should do.

Thanks to everyone who submitted, we’ll reach out to the winners via email. The Sanity MCP server is available now if you want to try this workflow yourself.

Learn more about the Sanity MCP server