@every-env/compound-plugin 0.2.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.github/workflows/ci.yml +1 -1
  3. package/.github/workflows/deploy-docs.yml +3 -3
  4. package/.github/workflows/publish.yml +37 -0
  5. package/README.md +12 -3
  6. package/docs/index.html +13 -13
  7. package/docs/pages/changelog.html +39 -0
  8. package/docs/plans/2026-02-08-feat-convert-local-md-settings-for-opencode-codex-plan.md +143 -0
  9. package/docs/plans/2026-02-08-feat-simplify-plugin-settings-plan.md +195 -0
  10. package/docs/plans/2026-02-08-refactor-reduce-plugin-context-token-usage-plan.md +212 -0
  11. package/docs/plans/2026-02-09-refactor-dspy-ruby-skill-update-plan.md +104 -0
  12. package/docs/plans/2026-02-12-feat-add-cursor-cli-target-provider-plan.md +306 -0
  13. package/docs/specs/cursor.md +85 -0
  14. package/package.json +1 -1
  15. package/plugins/compound-engineering/.claude-plugin/plugin.json +2 -2
  16. package/plugins/compound-engineering/CHANGELOG.md +64 -0
  17. package/plugins/compound-engineering/README.md +5 -3
  18. package/plugins/compound-engineering/agents/design/design-implementation-reviewer.md +16 -1
  19. package/plugins/compound-engineering/agents/design/design-iterator.md +28 -1
  20. package/plugins/compound-engineering/agents/design/figma-design-sync.md +19 -1
  21. package/plugins/compound-engineering/agents/docs/ankane-readme-writer.md +16 -1
  22. package/plugins/compound-engineering/agents/research/best-practices-researcher.md +16 -1
  23. package/plugins/compound-engineering/agents/research/framework-docs-researcher.md +16 -1
  24. package/plugins/compound-engineering/agents/research/git-history-analyzer.md +16 -1
  25. package/plugins/compound-engineering/agents/research/learnings-researcher.md +22 -1
  26. package/plugins/compound-engineering/agents/research/repo-research-analyst.md +22 -1
  27. package/plugins/compound-engineering/agents/review/agent-native-reviewer.md +16 -1
  28. package/plugins/compound-engineering/agents/review/architecture-strategist.md +16 -1
  29. package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +16 -1
  30. package/plugins/compound-engineering/agents/review/data-integrity-guardian.md +16 -1
  31. package/plugins/compound-engineering/agents/review/data-migration-expert.md +16 -1
  32. package/plugins/compound-engineering/agents/review/deployment-verification-agent.md +16 -1
  33. package/plugins/compound-engineering/agents/review/dhh-rails-reviewer.md +22 -1
  34. package/plugins/compound-engineering/agents/review/julik-frontend-races-reviewer.md +20 -21
  35. package/plugins/compound-engineering/agents/review/kieran-python-reviewer.md +30 -1
  36. package/plugins/compound-engineering/agents/review/kieran-rails-reviewer.md +30 -1
  37. package/plugins/compound-engineering/agents/review/kieran-typescript-reviewer.md +30 -1
  38. package/plugins/compound-engineering/agents/review/pattern-recognition-specialist.md +16 -1
  39. package/plugins/compound-engineering/agents/review/performance-oracle.md +28 -1
  40. package/plugins/compound-engineering/agents/review/schema-drift-detector.md +16 -1
  41. package/plugins/compound-engineering/agents/review/security-sentinel.md +22 -1
  42. package/plugins/compound-engineering/agents/workflow/bug-reproduction-validator.md +16 -1
  43. package/plugins/compound-engineering/agents/workflow/every-style-editor.md +1 -1
  44. package/plugins/compound-engineering/agents/workflow/pr-comment-resolver.md +16 -1
  45. package/plugins/compound-engineering/agents/workflow/spec-flow-analyzer.md +22 -1
  46. package/plugins/compound-engineering/commands/agent-native-audit.md +1 -0
  47. package/plugins/compound-engineering/commands/changelog.md +1 -0
  48. package/plugins/compound-engineering/commands/create-agent-skill.md +1 -0
  49. package/plugins/compound-engineering/commands/deploy-docs.md +1 -0
  50. package/plugins/compound-engineering/commands/generate_command.md +1 -0
  51. package/plugins/compound-engineering/commands/heal-skill.md +1 -0
  52. package/plugins/compound-engineering/commands/lfg.md +1 -0
  53. package/plugins/compound-engineering/commands/report-bug.md +1 -0
  54. package/plugins/compound-engineering/commands/reproduce-bug.md +1 -0
  55. package/plugins/compound-engineering/commands/resolve_parallel.md +1 -0
  56. package/plugins/compound-engineering/commands/slfg.md +1 -0
  57. package/plugins/compound-engineering/commands/{xcode-test.md → test-xcode.md} +2 -1
  58. package/plugins/compound-engineering/commands/triage.md +1 -0
  59. package/plugins/compound-engineering/commands/workflows/brainstorm.md +6 -1
  60. package/plugins/compound-engineering/commands/workflows/compound.md +1 -0
  61. package/plugins/compound-engineering/commands/workflows/review.md +23 -21
  62. package/plugins/compound-engineering/commands/workflows/work.md +29 -15
  63. package/plugins/compound-engineering/skills/compound-docs/SKILL.md +1 -0
  64. package/plugins/compound-engineering/skills/dspy-ruby/SKILL.md +539 -396
  65. package/plugins/compound-engineering/skills/dspy-ruby/assets/config-template.rb +159 -331
  66. package/plugins/compound-engineering/skills/dspy-ruby/assets/module-template.rb +210 -236
  67. package/plugins/compound-engineering/skills/dspy-ruby/assets/signature-template.rb +173 -95
  68. package/plugins/compound-engineering/skills/dspy-ruby/references/core-concepts.md +552 -143
  69. package/plugins/compound-engineering/skills/dspy-ruby/references/observability.md +366 -0
  70. package/plugins/compound-engineering/skills/dspy-ruby/references/optimization.md +440 -460
  71. package/plugins/compound-engineering/skills/dspy-ruby/references/providers.md +305 -225
  72. package/plugins/compound-engineering/skills/dspy-ruby/references/toolsets.md +502 -0
  73. package/plugins/compound-engineering/skills/file-todos/SKILL.md +1 -0
  74. package/plugins/compound-engineering/skills/orchestrating-swarms/SKILL.md +1 -0
  75. package/plugins/compound-engineering/skills/setup/SKILL.md +168 -0
  76. package/plugins/compound-engineering/skills/skill-creator/SKILL.md +1 -0
  77. package/src/commands/convert.ts +10 -5
  78. package/src/commands/install.ts +10 -5
  79. package/src/converters/claude-to-codex.ts +9 -3
  80. package/src/converters/claude-to-cursor.ts +166 -0
  81. package/src/converters/claude-to-droid.ts +174 -0
  82. package/src/converters/claude-to-opencode.ts +9 -2
  83. package/src/parsers/claude.ts +4 -0
  84. package/src/targets/cursor.ts +48 -0
  85. package/src/targets/droid.ts +50 -0
  86. package/src/targets/index.ts +18 -0
  87. package/src/types/claude.ts +2 -0
  88. package/src/types/cursor.ts +29 -0
  89. package/src/types/droid.ts +20 -0
  90. package/tests/claude-parser.test.ts +24 -2
  91. package/tests/codex-converter.test.ts +100 -0
  92. package/tests/converter.test.ts +76 -0
  93. package/tests/cursor-converter.test.ts +347 -0
  94. package/tests/cursor-writer.test.ts +137 -0
  95. package/tests/droid-converter.test.ts +277 -0
  96. package/tests/droid-writer.test.ts +100 -0
  97. package/tests/fixtures/sample-plugin/commands/disabled-command.md +7 -0
  98. package/tests/fixtures/sample-plugin/skills/disabled-skill/SKILL.md +7 -0
  99. package/plugins/compound-engineering/commands/technical_review.md +0 -7
  100. /package/{plugins/compound-engineering → .claude}/commands/release-docs.md +0 -0
@@ -0,0 +1,29 @@
1
+ export type CursorRule = {
2
+ name: string
3
+ content: string
4
+ }
5
+
6
+ export type CursorCommand = {
7
+ name: string
8
+ content: string
9
+ }
10
+
11
+ export type CursorSkillDir = {
12
+ name: string
13
+ sourceDir: string
14
+ }
15
+
16
+ export type CursorMcpServer = {
17
+ command?: string
18
+ args?: string[]
19
+ env?: Record<string, string>
20
+ url?: string
21
+ headers?: Record<string, string>
22
+ }
23
+
24
+ export type CursorBundle = {
25
+ rules: CursorRule[]
26
+ commands: CursorCommand[]
27
+ skillDirs: CursorSkillDir[]
28
+ mcpServers?: Record<string, CursorMcpServer>
29
+ }
@@ -0,0 +1,20 @@
1
+ export type DroidCommandFile = {
2
+ name: string
3
+ content: string
4
+ }
5
+
6
+ export type DroidAgentFile = {
7
+ name: string
8
+ content: string
9
+ }
10
+
11
+ export type DroidSkillDir = {
12
+ name: string
13
+ sourceDir: string
14
+ }
15
+
16
+ export type DroidBundle = {
17
+ commands: DroidCommandFile[]
18
+ droids: DroidAgentFile[]
19
+ skillDirs: DroidSkillDir[]
20
+ }
@@ -15,8 +15,8 @@ describe("loadClaudePlugin", () => {
15
15
 
16
16
  expect(plugin.manifest.name).toBe("compound-engineering")
17
17
  expect(plugin.agents.length).toBe(2)
18
- expect(plugin.commands.length).toBe(6)
19
- expect(plugin.skills.length).toBe(1)
18
+ expect(plugin.commands.length).toBe(7)
19
+ expect(plugin.skills.length).toBe(2)
20
20
  expect(plugin.hooks).toBeDefined()
21
21
  expect(plugin.mcpServers).toBeDefined()
22
22
 
@@ -55,6 +55,28 @@ describe("loadClaudePlugin", () => {
55
55
  expect(plugin.mcpServers?.context7?.url).toBe("https://mcp.context7.com/mcp")
56
56
  })
57
57
 
58
+ test("parses disable-model-invocation from commands", async () => {
59
+ const plugin = await loadClaudePlugin(fixtureRoot)
60
+
61
+ const disabledCommand = plugin.commands.find((command) => command.name === "deploy-docs")
62
+ expect(disabledCommand).toBeDefined()
63
+ expect(disabledCommand?.disableModelInvocation).toBe(true)
64
+
65
+ const normalCommand = plugin.commands.find((command) => command.name === "workflows:review")
66
+ expect(normalCommand?.disableModelInvocation).toBeUndefined()
67
+ })
68
+
69
+ test("parses disable-model-invocation from skills", async () => {
70
+ const plugin = await loadClaudePlugin(fixtureRoot)
71
+
72
+ const disabledSkill = plugin.skills.find((skill) => skill.name === "disabled-skill")
73
+ expect(disabledSkill).toBeDefined()
74
+ expect(disabledSkill?.disableModelInvocation).toBe(true)
75
+
76
+ const normalSkill = plugin.skills.find((skill) => skill.name === "skill-one")
77
+ expect(normalSkill?.disableModelInvocation).toBeUndefined()
78
+ })
79
+
58
80
  test("loads MCP servers from .mcp.json when manifest is empty", async () => {
59
81
  const plugin = await loadClaudePlugin(mcpFixtureRoot)
60
82
  expect(plugin.mcpServers?.remote?.url).toBe("https://example.com/stream")
@@ -172,6 +172,106 @@ Don't confuse with file paths like /tmp/output.md or /dev/null.`,
172
172
  expect(parsed.body).toContain("/dev/null")
173
173
  })
174
174
 
175
+ test("excludes commands with disable-model-invocation from prompts and skills", () => {
176
+ const plugin: ClaudePlugin = {
177
+ ...fixturePlugin,
178
+ commands: [
179
+ {
180
+ name: "normal-command",
181
+ description: "Normal command",
182
+ body: "Normal body.",
183
+ sourcePath: "/tmp/plugin/commands/normal.md",
184
+ },
185
+ {
186
+ name: "disabled-command",
187
+ description: "Disabled command",
188
+ disableModelInvocation: true,
189
+ body: "Disabled body.",
190
+ sourcePath: "/tmp/plugin/commands/disabled.md",
191
+ },
192
+ ],
193
+ agents: [],
194
+ skills: [],
195
+ }
196
+
197
+ const bundle = convertClaudeToCodex(plugin, {
198
+ agentMode: "subagent",
199
+ inferTemperature: false,
200
+ permissions: "none",
201
+ })
202
+
203
+ // Only normal command should produce a prompt
204
+ expect(bundle.prompts).toHaveLength(1)
205
+ expect(bundle.prompts[0].name).toBe("normal-command")
206
+
207
+ // Only normal command should produce a generated skill
208
+ const commandSkills = bundle.generatedSkills.filter((s) => s.name === "normal-command" || s.name === "disabled-command")
209
+ expect(commandSkills).toHaveLength(1)
210
+ expect(commandSkills[0].name).toBe("normal-command")
211
+ })
212
+
213
+ test("rewrites .claude/ paths to .codex/ in command skill bodies", () => {
214
+ const plugin: ClaudePlugin = {
215
+ ...fixturePlugin,
216
+ commands: [
217
+ {
218
+ name: "review",
219
+ description: "Review command",
220
+ body: `Read \`compound-engineering.local.md\` in the project root.
221
+
222
+ If no settings file exists, auto-detect project type.
223
+
224
+ Run \`/compound-engineering-setup\` to create a settings file.`,
225
+ sourcePath: "/tmp/plugin/commands/review.md",
226
+ },
227
+ ],
228
+ agents: [],
229
+ skills: [],
230
+ }
231
+
232
+ const bundle = convertClaudeToCodex(plugin, {
233
+ agentMode: "subagent",
234
+ inferTemperature: false,
235
+ permissions: "none",
236
+ })
237
+
238
+ const commandSkill = bundle.generatedSkills.find((s) => s.name === "review")
239
+ expect(commandSkill).toBeDefined()
240
+ const parsed = parseFrontmatter(commandSkill!.content)
241
+
242
+ // Tool-agnostic path in project root — no rewriting needed
243
+ expect(parsed.body).toContain("compound-engineering.local.md")
244
+ })
245
+
246
+ test("rewrites .claude/ paths in agent skill bodies", () => {
247
+ const plugin: ClaudePlugin = {
248
+ ...fixturePlugin,
249
+ commands: [],
250
+ skills: [],
251
+ agents: [
252
+ {
253
+ name: "config-reader",
254
+ description: "Reads config",
255
+ body: "Read `compound-engineering.local.md` for config.",
256
+ sourcePath: "/tmp/plugin/agents/config-reader.md",
257
+ },
258
+ ],
259
+ }
260
+
261
+ const bundle = convertClaudeToCodex(plugin, {
262
+ agentMode: "subagent",
263
+ inferTemperature: false,
264
+ permissions: "none",
265
+ })
266
+
267
+ const agentSkill = bundle.generatedSkills.find((s) => s.name === "config-reader")
268
+ expect(agentSkill).toBeDefined()
269
+ const parsed = parseFrontmatter(agentSkill!.content)
270
+
271
+ // Tool-agnostic path in project root — no rewriting needed
272
+ expect(parsed.body).toContain("compound-engineering.local.md")
273
+ })
274
+
175
275
  test("truncates generated skill descriptions to Codex limits and single line", () => {
176
276
  const longDescription = `Line one\nLine two ${"a".repeat(2000)}`
177
277
  const plugin: ClaudePlugin = {
@@ -3,6 +3,7 @@ import path from "path"
3
3
  import { loadClaudePlugin } from "../src/parsers/claude"
4
4
  import { convertClaudeToOpenCode } from "../src/converters/claude-to-opencode"
5
5
  import { parseFrontmatter } from "../src/utils/frontmatter"
6
+ import type { ClaudePlugin } from "../src/types/claude"
6
7
 
7
8
  const fixtureRoot = path.join(import.meta.dir, "fixtures", "sample-plugin")
8
9
 
@@ -168,4 +169,79 @@ describe("convertClaudeToOpenCode", () => {
168
169
  const parsed = parseFrontmatter(agentFile!.content)
169
170
  expect(parsed.data.mode).toBe("primary")
170
171
  })
172
+
173
+ test("excludes commands with disable-model-invocation from command map", async () => {
174
+ const plugin = await loadClaudePlugin(fixtureRoot)
175
+ const bundle = convertClaudeToOpenCode(plugin, {
176
+ agentMode: "subagent",
177
+ inferTemperature: false,
178
+ permissions: "none",
179
+ })
180
+
181
+ // deploy-docs has disable-model-invocation: true, should be excluded
182
+ expect(bundle.config.command?.["deploy-docs"]).toBeUndefined()
183
+
184
+ // Normal commands should still be present
185
+ expect(bundle.config.command?.["workflows:review"]).toBeDefined()
186
+ })
187
+
188
+ test("rewrites .claude/ paths to .opencode/ in command bodies", () => {
189
+ const plugin: ClaudePlugin = {
190
+ root: "/tmp/plugin",
191
+ manifest: { name: "fixture", version: "1.0.0" },
192
+ agents: [],
193
+ commands: [
194
+ {
195
+ name: "review",
196
+ description: "Review command",
197
+ body: `Read \`compound-engineering.local.md\` in the project root.
198
+
199
+ If no settings file exists, auto-detect project type.
200
+
201
+ Run \`/compound-engineering-setup\` to create a settings file.`,
202
+ sourcePath: "/tmp/plugin/commands/review.md",
203
+ },
204
+ ],
205
+ skills: [],
206
+ }
207
+
208
+ const bundle = convertClaudeToOpenCode(plugin, {
209
+ agentMode: "subagent",
210
+ inferTemperature: false,
211
+ permissions: "none",
212
+ })
213
+
214
+ const template = bundle.config.command?.["review"]?.template ?? ""
215
+
216
+ // Tool-agnostic path in project root — no rewriting needed
217
+ expect(template).toContain("compound-engineering.local.md")
218
+ })
219
+
220
+ test("rewrites .claude/ paths in agent bodies", () => {
221
+ const plugin: ClaudePlugin = {
222
+ root: "/tmp/plugin",
223
+ manifest: { name: "fixture", version: "1.0.0" },
224
+ agents: [
225
+ {
226
+ name: "test-agent",
227
+ description: "Test agent",
228
+ body: "Read `compound-engineering.local.md` for config.",
229
+ sourcePath: "/tmp/plugin/agents/test-agent.md",
230
+ },
231
+ ],
232
+ commands: [],
233
+ skills: [],
234
+ }
235
+
236
+ const bundle = convertClaudeToOpenCode(plugin, {
237
+ agentMode: "subagent",
238
+ inferTemperature: false,
239
+ permissions: "none",
240
+ })
241
+
242
+ const agentFile = bundle.agents.find((a) => a.name === "test-agent")
243
+ expect(agentFile).toBeDefined()
244
+ // Tool-agnostic path in project root — no rewriting needed
245
+ expect(agentFile!.content).toContain("compound-engineering.local.md")
246
+ })
171
247
  })
@@ -0,0 +1,347 @@
1
+ import { describe, expect, test, spyOn } from "bun:test"
2
+ import { convertClaudeToCursor, transformContentForCursor } from "../src/converters/claude-to-cursor"
3
+ import { parseFrontmatter } from "../src/utils/frontmatter"
4
+ import type { ClaudePlugin } from "../src/types/claude"
5
+
6
+ const fixturePlugin: ClaudePlugin = {
7
+ root: "/tmp/plugin",
8
+ manifest: { name: "fixture", version: "1.0.0" },
9
+ agents: [
10
+ {
11
+ name: "Security Reviewer",
12
+ description: "Security-focused code review agent",
13
+ capabilities: ["Threat modeling", "OWASP"],
14
+ model: "claude-sonnet-4-20250514",
15
+ body: "Focus on vulnerabilities.",
16
+ sourcePath: "/tmp/plugin/agents/security-reviewer.md",
17
+ },
18
+ ],
19
+ commands: [
20
+ {
21
+ name: "workflows:plan",
22
+ description: "Planning command",
23
+ argumentHint: "[FOCUS]",
24
+ model: "inherit",
25
+ allowedTools: ["Read"],
26
+ body: "Plan the work.",
27
+ sourcePath: "/tmp/plugin/commands/workflows/plan.md",
28
+ },
29
+ ],
30
+ skills: [
31
+ {
32
+ name: "existing-skill",
33
+ description: "Existing skill",
34
+ sourceDir: "/tmp/plugin/skills/existing-skill",
35
+ skillPath: "/tmp/plugin/skills/existing-skill/SKILL.md",
36
+ },
37
+ ],
38
+ hooks: undefined,
39
+ mcpServers: undefined,
40
+ }
41
+
42
+ const defaultOptions = {
43
+ agentMode: "subagent" as const,
44
+ inferTemperature: false,
45
+ permissions: "none" as const,
46
+ }
47
+
48
+ describe("convertClaudeToCursor", () => {
49
+ test("converts agents to rules with .mdc frontmatter", () => {
50
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
51
+
52
+ expect(bundle.rules).toHaveLength(1)
53
+ const rule = bundle.rules[0]
54
+ expect(rule.name).toBe("security-reviewer")
55
+
56
+ const parsed = parseFrontmatter(rule.content)
57
+ expect(parsed.data.description).toBe("Security-focused code review agent")
58
+ expect(parsed.data.alwaysApply).toBe(false)
59
+ // globs is omitted (Agent Requested mode doesn't need it)
60
+ expect(parsed.body).toContain("Capabilities")
61
+ expect(parsed.body).toContain("Threat modeling")
62
+ expect(parsed.body).toContain("Focus on vulnerabilities.")
63
+ })
64
+
65
+ test("agent with empty description gets default", () => {
66
+ const plugin: ClaudePlugin = {
67
+ ...fixturePlugin,
68
+ agents: [
69
+ {
70
+ name: "basic-agent",
71
+ body: "Do things.",
72
+ sourcePath: "/tmp/plugin/agents/basic.md",
73
+ },
74
+ ],
75
+ }
76
+
77
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
78
+ const parsed = parseFrontmatter(bundle.rules[0].content)
79
+ expect(parsed.data.description).toBe("Converted from Claude agent basic-agent")
80
+ })
81
+
82
+ test("agent with empty body gets default body", () => {
83
+ const plugin: ClaudePlugin = {
84
+ ...fixturePlugin,
85
+ agents: [
86
+ {
87
+ name: "empty-agent",
88
+ description: "Empty agent",
89
+ body: "",
90
+ sourcePath: "/tmp/plugin/agents/empty.md",
91
+ },
92
+ ],
93
+ }
94
+
95
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
96
+ const parsed = parseFrontmatter(bundle.rules[0].content)
97
+ expect(parsed.body).toContain("Instructions converted from the empty-agent agent.")
98
+ })
99
+
100
+ test("agent capabilities are prepended to body", () => {
101
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
102
+ const parsed = parseFrontmatter(bundle.rules[0].content)
103
+ expect(parsed.body).toMatch(/## Capabilities\n- Threat modeling\n- OWASP/)
104
+ })
105
+
106
+ test("agent model field is silently dropped", () => {
107
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
108
+ const parsed = parseFrontmatter(bundle.rules[0].content)
109
+ expect(parsed.data.model).toBeUndefined()
110
+ })
111
+
112
+ test("flattens namespaced command names", () => {
113
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
114
+
115
+ expect(bundle.commands).toHaveLength(1)
116
+ const command = bundle.commands[0]
117
+ expect(command.name).toBe("plan")
118
+ })
119
+
120
+ test("commands are plain markdown without frontmatter", () => {
121
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
122
+ const command = bundle.commands[0]
123
+
124
+ // Should NOT start with ---
125
+ expect(command.content.startsWith("---")).toBe(false)
126
+ // Should include the description as a comment
127
+ expect(command.content).toContain("<!-- Planning command -->")
128
+ expect(command.content).toContain("Plan the work.")
129
+ })
130
+
131
+ test("command name collision after flattening is deduplicated", () => {
132
+ const plugin: ClaudePlugin = {
133
+ ...fixturePlugin,
134
+ commands: [
135
+ {
136
+ name: "workflows:plan",
137
+ description: "Workflow plan",
138
+ body: "Plan body.",
139
+ sourcePath: "/tmp/plugin/commands/workflows/plan.md",
140
+ },
141
+ {
142
+ name: "plan",
143
+ description: "Top-level plan",
144
+ body: "Top plan body.",
145
+ sourcePath: "/tmp/plugin/commands/plan.md",
146
+ },
147
+ ],
148
+ agents: [],
149
+ skills: [],
150
+ }
151
+
152
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
153
+ const names = bundle.commands.map((c) => c.name)
154
+ expect(names).toEqual(["plan", "plan-2"])
155
+ })
156
+
157
+ test("command with disable-model-invocation is still included", () => {
158
+ const plugin: ClaudePlugin = {
159
+ ...fixturePlugin,
160
+ commands: [
161
+ {
162
+ name: "setup",
163
+ description: "Setup command",
164
+ disableModelInvocation: true,
165
+ body: "Setup body.",
166
+ sourcePath: "/tmp/plugin/commands/setup.md",
167
+ },
168
+ ],
169
+ agents: [],
170
+ skills: [],
171
+ }
172
+
173
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
174
+ expect(bundle.commands).toHaveLength(1)
175
+ expect(bundle.commands[0].name).toBe("setup")
176
+ })
177
+
178
+ test("command allowedTools is silently dropped", () => {
179
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
180
+ const command = bundle.commands[0]
181
+ expect(command.content).not.toContain("allowedTools")
182
+ expect(command.content).not.toContain("Read")
183
+ })
184
+
185
+ test("command with argument-hint gets Arguments section", () => {
186
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
187
+ const command = bundle.commands[0]
188
+ expect(command.content).toContain("## Arguments")
189
+ expect(command.content).toContain("[FOCUS]")
190
+ })
191
+
192
+ test("passes through skill directories", () => {
193
+ const bundle = convertClaudeToCursor(fixturePlugin, defaultOptions)
194
+
195
+ expect(bundle.skillDirs).toHaveLength(1)
196
+ expect(bundle.skillDirs[0].name).toBe("existing-skill")
197
+ expect(bundle.skillDirs[0].sourceDir).toBe("/tmp/plugin/skills/existing-skill")
198
+ })
199
+
200
+ test("converts MCP servers to JSON config", () => {
201
+ const plugin: ClaudePlugin = {
202
+ ...fixturePlugin,
203
+ agents: [],
204
+ commands: [],
205
+ skills: [],
206
+ mcpServers: {
207
+ playwright: {
208
+ command: "npx",
209
+ args: ["-y", "@anthropic/mcp-playwright"],
210
+ env: { DISPLAY: ":0" },
211
+ },
212
+ },
213
+ }
214
+
215
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
216
+ expect(bundle.mcpServers).toBeDefined()
217
+ expect(bundle.mcpServers!.playwright.command).toBe("npx")
218
+ expect(bundle.mcpServers!.playwright.args).toEqual(["-y", "@anthropic/mcp-playwright"])
219
+ expect(bundle.mcpServers!.playwright.env).toEqual({ DISPLAY: ":0" })
220
+ })
221
+
222
+ test("MCP headers pass through for remote servers", () => {
223
+ const plugin: ClaudePlugin = {
224
+ ...fixturePlugin,
225
+ agents: [],
226
+ commands: [],
227
+ skills: [],
228
+ mcpServers: {
229
+ remote: {
230
+ url: "https://mcp.example.com/sse",
231
+ headers: { Authorization: "Bearer token" },
232
+ },
233
+ },
234
+ }
235
+
236
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
237
+ expect(bundle.mcpServers!.remote.url).toBe("https://mcp.example.com/sse")
238
+ expect(bundle.mcpServers!.remote.headers).toEqual({ Authorization: "Bearer token" })
239
+ })
240
+
241
+ test("warns when hooks are present", () => {
242
+ const warnSpy = spyOn(console, "warn").mockImplementation(() => {})
243
+
244
+ const plugin: ClaudePlugin = {
245
+ ...fixturePlugin,
246
+ agents: [],
247
+ commands: [],
248
+ skills: [],
249
+ hooks: {
250
+ hooks: {
251
+ PreToolUse: [{ matcher: "Bash", hooks: [{ type: "command", command: "echo test" }] }],
252
+ },
253
+ },
254
+ }
255
+
256
+ convertClaudeToCursor(plugin, defaultOptions)
257
+ expect(warnSpy).toHaveBeenCalledWith(
258
+ "Warning: Cursor does not support hooks. Hooks were skipped during conversion.",
259
+ )
260
+
261
+ warnSpy.mockRestore()
262
+ })
263
+
264
+ test("no warning when hooks are absent", () => {
265
+ const warnSpy = spyOn(console, "warn").mockImplementation(() => {})
266
+
267
+ convertClaudeToCursor(fixturePlugin, defaultOptions)
268
+ expect(warnSpy).not.toHaveBeenCalled()
269
+
270
+ warnSpy.mockRestore()
271
+ })
272
+
273
+ test("plugin with zero agents produces empty rules array", () => {
274
+ const plugin: ClaudePlugin = {
275
+ ...fixturePlugin,
276
+ agents: [],
277
+ }
278
+
279
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
280
+ expect(bundle.rules).toHaveLength(0)
281
+ })
282
+
283
+ test("plugin with only skills works", () => {
284
+ const plugin: ClaudePlugin = {
285
+ ...fixturePlugin,
286
+ agents: [],
287
+ commands: [],
288
+ }
289
+
290
+ const bundle = convertClaudeToCursor(plugin, defaultOptions)
291
+ expect(bundle.rules).toHaveLength(0)
292
+ expect(bundle.commands).toHaveLength(0)
293
+ expect(bundle.skillDirs).toHaveLength(1)
294
+ })
295
+ })
296
+
297
+ describe("transformContentForCursor", () => {
298
+ test("rewrites .claude/ paths to .cursor/", () => {
299
+ const input = "Read `.claude/compound-engineering.local.md` for config."
300
+ const result = transformContentForCursor(input)
301
+ expect(result).toContain(".cursor/compound-engineering.local.md")
302
+ expect(result).not.toContain(".claude/")
303
+ })
304
+
305
+ test("rewrites ~/.claude/ paths to ~/.cursor/", () => {
306
+ const input = "Global config at ~/.claude/settings.json"
307
+ const result = transformContentForCursor(input)
308
+ expect(result).toContain("~/.cursor/settings.json")
309
+ expect(result).not.toContain("~/.claude/")
310
+ })
311
+
312
+ test("transforms Task agent calls to skill references", () => {
313
+ const input = `Run agents:
314
+
315
+ - Task repo-research-analyst(feature_description)
316
+ - Task learnings-researcher(feature_description)
317
+
318
+ Task best-practices-researcher(topic)`
319
+
320
+ const result = transformContentForCursor(input)
321
+ expect(result).toContain("Use the repo-research-analyst skill to: feature_description")
322
+ expect(result).toContain("Use the learnings-researcher skill to: feature_description")
323
+ expect(result).toContain("Use the best-practices-researcher skill to: topic")
324
+ expect(result).not.toContain("Task repo-research-analyst(")
325
+ })
326
+
327
+ test("flattens slash commands", () => {
328
+ const input = `1. Run /deepen-plan to enhance
329
+ 2. Start /workflows:work to implement
330
+ 3. File at /tmp/output.md`
331
+
332
+ const result = transformContentForCursor(input)
333
+ expect(result).toContain("/deepen-plan")
334
+ expect(result).toContain("/work")
335
+ expect(result).not.toContain("/workflows:work")
336
+ // File paths preserved
337
+ expect(result).toContain("/tmp/output.md")
338
+ })
339
+
340
+ test("transforms @agent references to rule references", () => {
341
+ const input = "Have @security-sentinel and @dhh-rails-reviewer check the code."
342
+ const result = transformContentForCursor(input)
343
+ expect(result).toContain("the security-sentinel rule")
344
+ expect(result).toContain("the dhh-rails-reviewer rule")
345
+ expect(result).not.toContain("@security-sentinel")
346
+ })
347
+ })