feat: Add Zed editor rule profile with agent rules and MCP config (#974)

* zed profile

* add changeset

* update changeset
This commit is contained in:
Joe Danziger
2025-07-16 12:13:21 -04:00
committed by Ralph Khreish
parent 6c5e0f97f8
commit b0e09c76ed
9 changed files with 516 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/**
* @typedef {'amp' | 'claude' | 'cline' | 'codex' | 'cursor' | 'gemini' | 'roo' | 'trae' | 'windsurf' | 'vscode'} RulesProfile
* @typedef {'amp' | 'claude' | 'cline' | 'codex' | 'cursor' | 'gemini' | 'roo' | 'trae' | 'windsurf' | 'vscode' | 'zed'} RulesProfile
*/
/**
@@ -20,6 +20,7 @@
* - trae: Trae IDE rules
* - vscode: VS Code with GitHub Copilot integration
* - windsurf: Windsurf IDE rules
* - zed: Zed IDE rules
*
* To add a new rule profile:
* 1. Add the profile name to this array
@@ -36,7 +37,8 @@ export const RULE_PROFILES = [
'roo',
'trae',
'vscode',
'windsurf'
'windsurf',
'zed'
];
/**