Remove cursor target and add plugin metadata

This commit is contained in:
ericzakariasson
2026-02-13 12:14:48 -05:00
parent b42163f1c0
commit e469ab0cc0
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>
}