Rules
Rules are prompts that can be inserted either automatically at the beginning of each Agent Panel interaction, through .rules files available in your project's file tree, or on-demand, through @-mentioning, via the Rules Library.
Note: Starting in Zed v1.4.0, on-demand rules (and the rules library) have been replaced by Skills. Skills are the recommended way to package reusable agent instructions. Learn more about the rules -> skills migration.
.rules files
Zed supports including .rules files at the root of a project's file tree, and they act as project-level instructions that are auto-included in all of your interactions with the Agent Panel.
Other names for this file are also supported for compatibility with other agents, but note that the first file which matches in this list will be used:
.rules.cursorrules.windsurfrules.clinerules.github/copilot-instructions.mdAGENT.mdAGENTS.mdCLAUDE.mdGEMINI.md
Rules Library
The Rules Library is an interface for writing and managing rules. It's a full editor with syntax highlighting and all standard keybindings.
You can also use the inline assistant right in the rules editor, allowing you to get quick LLM support for writing rules.
Note: Starting in Zed v1.4.0, the rules library has been replaced by Skills. Skills are the recommended way to package reusable agent instructions. Learn more about the rules -> skills migration.
Opening the Rules Library
- Open the Agent Panel.
- Click on the Agent menu (
...) in the top right corner. - Select
Rules...from the dropdown.
You can also open it by running the agent: open rules library action or through the cmd-alt-l|ctrl-alt-l keybinding.
Managing Rules
Once a rules file is selected, you can edit it directly in the built-in editor. Its title can be changed from the editor title bar as well.
Rules can be duplicated, deleted, or added to the default rules using the buttons in the rules editor.
Creating Rules
To create a rule file, simply open the Rules Library and click the + button.
Rules files are stored locally and can be accessed from the library at any time.
For guidance on writing effective rules:
Using Rules
You can @-mention every rule created through the Rules Library. This allows you to quickly reach for reusable prompts, saving the time to type them out every time you need to use them.
Default Rules
All rules in the Rules Library can be set as a default rule, which means they’re automatically inserted into context for every new Agent Panel interaction.
You can set any rule as the default by clicking the paper clip icon button in the top-right of the rule editor in the Rules Library.
Migrating to Skills
As of Zed v1.4.0, your existing Rules are migrated to Skills automatically:
- Non-default Rules become global skills in
~/.agents/skills/, each withdisable-model-invocation: true. They remain user-invocable via/skill-nameor@-mention. - Default Rules are appended to your global
AGENTS.mdfile (~/.config/zed/AGENTS.mdon macOS and Linux,%APPDATA%\Zed\AGENTS.mdon Windows), preserving their behavior of being included in every conversation. - Git Commit prompt customizations are also appended to the global
AGENTS.mdfile.
Lastly, note that all of the content you had available in the Rules Library hasn't been deleted, so downgrading to an earlier version of Zed leaves your Rules intact.