Lesson
5
AI rules
Log in to watch a video walkthrough of this lesson
Log in

By default AI tools will write the most average code, with a little extra guidance it can be much more expressive—to the benefit of your authors.
Log in to mark your progress for each Lesson and Task
So far, Cursor’s code has just used the defaults it has found within its corpus of understanding. It will then write the most average implementation of the Sanity Studio configuration API.
See the documentation for more guidance on Best practices for AI-enhanced Sanity development
While functional, it's far from the most feature-complete, best-practice example of a Sanity Studio. Fortunately, a number of years ago, I wrote a guide called The Opinionated Guide to Sanity Studio. Before now, a developer would have to keep these opinionated code styles in mind and effectively editorialize the way they write configuration code.
Now, we can automate it.
Cursor has the concept of "Rules," which can be added to a project, referenced in a prompt and will adjust the results to comply.
See Cursor's Documentation documentation for more details about Rules.
We have made a subset of the “opinionated guide” available in the Cursor rules format to add it to your project.
Cursor rules are stored as a single plain text file. They're often structured as Markdown.
Add this
sanity-opinionated.mdc
file to your project at .cursor/rules/sanity-opinionated.mdc
The schema type files that came with the Studio and those that we have created since don't follow the opinionated guidance. They don't express the full potential of the Sanity Studio document authoring experience.
Let's get the agent to refactor the schema type files using the rules we've added to the project.
Open a new Chat in “Agent” mode and speak something like the following prompt
Using @sanity-opinionated.mdc refactor the schema type files imported into @index.ts
Once complete, you should note significant changes to the way the schema types are configured.
Two notable examples are:
- all document types and objects have icons and previews in lists
- fields are now arranged in field groups.
You can now imagine how by entering prompts you could continue to expand and refactor the content model—while still maintaining best practices throughout.
The same way you can reference files and rules with @
in chat also allows you to reference URLs, such as the Sanity documentation. If you're not getting satisfactory results from a model when trying to interact with some part of Sanity's API, you may benefit from pointing it at accurate, up to date information.
This is typically because models have a "cutoff date," which may be well behind the current APIs. A common example of this causing confusion with Sanity is that the "Desk" tool was renamed "Structure" in May 2024. But your AI generated code probably still tries to import functions and Types from sanity/desk
.
So if you were creating configuration for the structure tool, you may wish to reference a documentation page like the Structure Builder cheat sheet.
You may also wish to add the entire Sanity documentation to Cursor's context by using the @Docs command. Learn more on Cursor's documentation.
These rules also contain guidance for generating placeholder content, which is helpful during development. Let's make some in the next lesson.
You have 2 uncompleted tasks in this lesson
0 of 2