resolve merge conflict: use native Cursor plugin install, add Copilot sync

This commit is contained in:
Kieran Klaassen
2026-02-17 10:24:58 -08:00
12 changed files with 93 additions and 906 deletions

View File

@@ -1,29 +0,0 @@
export type CursorRule = {
name: string
content: string
}
export type CursorCommand = {
name: string
content: string
}
export type CursorSkillDir = {
name: string
sourceDir: string
}
export type CursorMcpServer = {
command?: string
args?: string[]
env?: Record<string, string>
url?: string
headers?: Record<string, string>
}
export type CursorBundle = {
rules: CursorRule[]
commands: CursorCommand[]
skillDirs: CursorSkillDir[]
mcpServers?: Record<string, CursorMcpServer>
}