@every-env/compound-plugin 0.9.0 → 0.12.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 (87) hide show
  1. package/.claude-plugin/marketplace.json +3 -3
  2. package/AGENTS.md +5 -1
  3. package/CHANGELOG.md +42 -0
  4. package/CLAUDE.md +3 -3
  5. package/README.md +49 -15
  6. package/docs/plans/2026-02-14-feat-auto-detect-install-and-gemini-sync-plan.md +360 -0
  7. package/docs/plans/2026-02-25-feat-windsurf-global-scope-support-plan.md +627 -0
  8. package/docs/plans/2026-03-01-feat-ce-command-aliases-backwards-compatible-deprecation-plan.md +261 -0
  9. package/docs/plans/feature_opencode-commands-as-md-and-config-merge.md +574 -0
  10. package/docs/solutions/adding-converter-target-providers.md +692 -0
  11. package/docs/solutions/plugin-versioning-requirements.md +3 -3
  12. package/docs/specs/windsurf.md +477 -0
  13. package/package.json +1 -1
  14. package/plans/landing-page-launchkit-refresh.md +2 -2
  15. package/plugins/compound-engineering/.claude-plugin/plugin.json +2 -2
  16. package/plugins/compound-engineering/CHANGELOG.md +72 -1
  17. package/plugins/compound-engineering/CLAUDE.md +9 -7
  18. package/plugins/compound-engineering/README.md +10 -7
  19. package/plugins/compound-engineering/agents/research/git-history-analyzer.md +1 -1
  20. package/plugins/compound-engineering/agents/research/learnings-researcher.md +1 -1
  21. package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +1 -1
  22. package/plugins/compound-engineering/commands/ce/brainstorm.md +145 -0
  23. package/plugins/compound-engineering/commands/ce/compound.md +240 -0
  24. package/plugins/compound-engineering/commands/ce/plan.md +636 -0
  25. package/plugins/compound-engineering/commands/ce/review.md +525 -0
  26. package/plugins/compound-engineering/commands/ce/work.md +470 -0
  27. package/plugins/compound-engineering/commands/create-agent-skill.md +1 -1
  28. package/plugins/compound-engineering/commands/deepen-plan.md +6 -6
  29. package/plugins/compound-engineering/commands/deploy-docs.md +1 -1
  30. package/plugins/compound-engineering/commands/feature-video.md +15 -6
  31. package/plugins/compound-engineering/commands/heal-skill.md +1 -1
  32. package/plugins/compound-engineering/commands/lfg.md +3 -3
  33. package/plugins/compound-engineering/commands/slfg.md +3 -3
  34. package/plugins/compound-engineering/commands/test-xcode.md +2 -2
  35. package/plugins/compound-engineering/commands/workflows/brainstorm.md +4 -123
  36. package/plugins/compound-engineering/commands/workflows/compound.md +4 -234
  37. package/plugins/compound-engineering/commands/workflows/plan.md +4 -562
  38. package/plugins/compound-engineering/commands/workflows/review.md +4 -522
  39. package/plugins/compound-engineering/commands/workflows/work.md +4 -448
  40. package/plugins/compound-engineering/skills/brainstorming/SKILL.md +3 -3
  41. package/plugins/compound-engineering/skills/document-review/SKILL.md +1 -1
  42. package/plugins/compound-engineering/skills/file-todos/SKILL.md +1 -1
  43. package/plugins/compound-engineering/skills/git-worktree/SKILL.md +5 -5
  44. package/plugins/compound-engineering/skills/proof/SKILL.md +185 -0
  45. package/plugins/compound-engineering/skills/resolve-pr-parallel/SKILL.md +1 -1
  46. package/plugins/compound-engineering/skills/setup/SKILL.md +2 -2
  47. package/src/commands/convert.ts +101 -24
  48. package/src/commands/install.ts +102 -45
  49. package/src/commands/sync.ts +58 -38
  50. package/src/converters/claude-to-openclaw.ts +240 -0
  51. package/src/converters/claude-to-opencode.ts +12 -10
  52. package/src/converters/claude-to-qwen.ts +238 -0
  53. package/src/converters/claude-to-windsurf.ts +205 -0
  54. package/src/sync/gemini.ts +76 -0
  55. package/src/targets/index.ts +60 -1
  56. package/src/targets/openclaw.ts +96 -0
  57. package/src/targets/opencode.ts +76 -10
  58. package/src/targets/qwen.ts +64 -0
  59. package/src/targets/windsurf.ts +104 -0
  60. package/src/types/openclaw.ts +52 -0
  61. package/src/types/opencode.ts +7 -8
  62. package/src/types/qwen.ts +48 -0
  63. package/src/types/windsurf.ts +34 -0
  64. package/src/utils/detect-tools.ts +46 -0
  65. package/src/utils/files.ts +7 -0
  66. package/src/utils/resolve-output.ts +50 -0
  67. package/src/utils/secrets.ts +24 -0
  68. package/tests/cli.test.ts +78 -0
  69. package/tests/converter.test.ts +43 -10
  70. package/tests/detect-tools.test.ts +96 -0
  71. package/tests/openclaw-converter.test.ts +200 -0
  72. package/tests/opencode-writer.test.ts +142 -5
  73. package/tests/qwen-converter.test.ts +238 -0
  74. package/tests/resolve-output.test.ts +131 -0
  75. package/tests/sync-gemini.test.ts +106 -0
  76. package/tests/windsurf-converter.test.ts +573 -0
  77. package/tests/windsurf-writer.test.ts +359 -0
  78. package/docs/css/docs.css +0 -675
  79. package/docs/css/style.css +0 -2886
  80. package/docs/index.html +0 -1046
  81. package/docs/js/main.js +0 -225
  82. package/docs/pages/agents.html +0 -649
  83. package/docs/pages/changelog.html +0 -534
  84. package/docs/pages/commands.html +0 -523
  85. package/docs/pages/getting-started.html +0 -582
  86. package/docs/pages/mcp-servers.html +0 -409
  87. package/docs/pages/skills.html +0 -611
@@ -0,0 +1,477 @@
1
+ # Windsurf Editor Global Configuration Guide
2
+
3
+ > **Purpose**: Technical reference for programmatically creating and managing Windsurf's global Skills, Workflows, and Rules.
4
+ >
5
+ > **Source**: Official Windsurf documentation at [docs.windsurf.com](https://docs.windsurf.com) + local file analysis.
6
+ >
7
+ > **Last Updated**: February 2026
8
+
9
+ ---
10
+
11
+ ## Table of Contents
12
+
13
+ 1. [Overview](#overview)
14
+ 2. [Base Directory Structure](#base-directory-structure)
15
+ 3. [Skills](#skills)
16
+ 4. [Workflows](#workflows)
17
+ 5. [Rules](#rules)
18
+ 6. [Memories](#memories)
19
+ 7. [System-Level Configuration (Enterprise)](#system-level-configuration-enterprise)
20
+ 8. [Programmatic Creation Reference](#programmatic-creation-reference)
21
+ 9. [Best Practices](#best-practices)
22
+
23
+ ---
24
+
25
+ ## Overview
26
+
27
+ Windsurf provides three main customization mechanisms:
28
+
29
+ | Feature | Purpose | Invocation |
30
+ |---------|---------|------------|
31
+ | **Skills** | Complex multi-step tasks with supporting resources | Automatic (progressive disclosure) or `@skill-name` |
32
+ | **Workflows** | Reusable step-by-step procedures | Slash command `/workflow-name` |
33
+ | **Rules** | Behavioral guidelines and preferences | Trigger-based (always-on, glob, manual, or model decision) |
34
+
35
+ All three support both **workspace-level** (project-specific) and **global** (user-wide) scopes.
36
+
37
+ ---
38
+
39
+ ## Base Directory Structure
40
+
41
+ ### Global Configuration Root
42
+
43
+ | OS | Path |
44
+ |----|------|
45
+ | **Windows** | `C:\Users\{USERNAME}\.codeium\windsurf\` |
46
+ | **macOS** | `~/.codeium/windsurf/` |
47
+ | **Linux** | `~/.codeium/windsurf/` |
48
+
49
+ ### Directory Layout
50
+
51
+ ```
52
+ ~/.codeium/windsurf/
53
+ ├── skills/ # Global skills (directories)
54
+ │ └── {skill-name}/
55
+ │ └── SKILL.md
56
+ ├── global_workflows/ # Global workflows (flat .md files)
57
+ │ └── {workflow-name}.md
58
+ ├── rules/ # Global rules (flat .md files)
59
+ │ └── {rule-name}.md
60
+ ├── memories/
61
+ │ ├── global_rules.md # Always-on global rules (plain text)
62
+ │ └── *.pb # Auto-generated memories (protobuf)
63
+ ├── mcp_config.json # MCP server configuration
64
+ └── user_settings.pb # User settings (protobuf)
65
+ ```
66
+
67
+ ---
68
+
69
+ ## Skills
70
+
71
+ Skills bundle instructions with supporting resources for complex, multi-step tasks. Cascade uses **progressive disclosure** to automatically invoke skills when relevant.
72
+
73
+ ### Storage Locations
74
+
75
+ | Scope | Location |
76
+ |-------|----------|
77
+ | **Global** | `~/.codeium/windsurf/skills/{skill-name}/SKILL.md` |
78
+ | **Workspace** | `.windsurf/skills/{skill-name}/SKILL.md` |
79
+
80
+ ### Directory Structure
81
+
82
+ Each skill is a **directory** (not a single file) containing:
83
+
84
+ ```
85
+ {skill-name}/
86
+ ├── SKILL.md # Required: Main skill definition
87
+ ├── references/ # Optional: Reference documentation
88
+ ├── assets/ # Optional: Images, diagrams, etc.
89
+ ├── scripts/ # Optional: Helper scripts
90
+ └── {any-other-files} # Optional: Templates, configs, etc.
91
+ ```
92
+
93
+ ### SKILL.md Format
94
+
95
+ ```markdown
96
+ ---
97
+ name: skill-name
98
+ description: Brief description shown to model to help it decide when to invoke the skill
99
+ ---
100
+
101
+ # Skill Title
102
+
103
+ Instructions for the skill go here in markdown format.
104
+
105
+ ## Section 1
106
+ Step-by-step guidance...
107
+
108
+ ## Section 2
109
+ Reference supporting files using relative paths:
110
+ - See [deployment-checklist.md](./deployment-checklist.md)
111
+ - Run script: [deploy.sh](./scripts/deploy.sh)
112
+ ```
113
+
114
+ ### Required YAML Frontmatter Fields
115
+
116
+ | Field | Required | Description |
117
+ |-------|----------|-------------|
118
+ | `name` | **Yes** | Unique identifier (lowercase letters, numbers, hyphens only). Must match directory name. |
119
+ | `description` | **Yes** | Explains what the skill does and when to use it. Critical for automatic invocation. |
120
+
121
+ ### Naming Convention
122
+
123
+ - Use **lowercase-kebab-case**: `deploy-to-staging`, `code-review`, `setup-dev-environment`
124
+ - Name must match the directory name exactly
125
+
126
+ ### Invocation Methods
127
+
128
+ 1. **Automatic**: Cascade automatically invokes when request matches skill description
129
+ 2. **Manual**: Type `@skill-name` in Cascade input
130
+
131
+ ### Example: Complete Skill
132
+
133
+ ```
134
+ ~/.codeium/windsurf/skills/deploy-to-production/
135
+ ├── SKILL.md
136
+ ├── deployment-checklist.md
137
+ ├── rollback-procedure.md
138
+ └── config-template.yaml
139
+ ```
140
+
141
+ **SKILL.md:**
142
+ ```markdown
143
+ ---
144
+ name: deploy-to-production
145
+ description: Guides the deployment process to production with safety checks. Use when deploying to prod, releasing, or pushing to production environment.
146
+ ---
147
+
148
+ ## Pre-deployment Checklist
149
+ 1. Run all tests
150
+ 2. Check for uncommitted changes
151
+ 3. Verify environment variables
152
+
153
+ ## Deployment Steps
154
+ Follow these steps to deploy safely...
155
+
156
+ See [deployment-checklist.md](./deployment-checklist.md) for full checklist.
157
+ See [rollback-procedure.md](./rollback-procedure.md) if issues occur.
158
+ ```
159
+
160
+ ---
161
+
162
+ ## Workflows
163
+
164
+ Workflows define step-by-step procedures invoked via slash commands. They guide Cascade through repetitive tasks.
165
+
166
+ ### Storage Locations
167
+
168
+ | Scope | Location |
169
+ |-------|----------|
170
+ | **Global** | `~/.codeium/windsurf/global_workflows/{workflow-name}.md` |
171
+ | **Workspace** | `.windsurf/workflows/{workflow-name}.md` |
172
+
173
+ ### File Format
174
+
175
+ Workflows are **single markdown files** (not directories):
176
+
177
+ ```markdown
178
+ ---
179
+ description: Short description of what the workflow does
180
+ ---
181
+
182
+ # Workflow Title
183
+
184
+ > Arguments: [optional arguments description]
185
+
186
+ Step-by-step instructions in markdown.
187
+
188
+ 1. First step
189
+ 2. Second step
190
+ 3. Third step
191
+ ```
192
+
193
+ ### Required YAML Frontmatter Fields
194
+
195
+ | Field | Required | Description |
196
+ |-------|----------|-------------|
197
+ | `description` | **Yes** | Short title/description shown in UI |
198
+
199
+ ### Invocation
200
+
201
+ - Slash command: `/workflow-name`
202
+ - Filename becomes the command (e.g., `deploy.md` → `/deploy`)
203
+
204
+ ### Constraints
205
+
206
+ - **Character limit**: 12,000 characters per workflow file
207
+ - Workflows can call other workflows: Include instructions like "Call `/other-workflow`"
208
+
209
+ ### Example: Complete Workflow
210
+
211
+ **File**: `~/.codeium/windsurf/global_workflows/address-pr-comments.md`
212
+
213
+ ```markdown
214
+ ---
215
+ description: Address all PR review comments systematically
216
+ ---
217
+
218
+ # Address PR Comments
219
+
220
+ > Arguments: [PR number]
221
+
222
+ 1. Check out the PR branch: `gh pr checkout [id]`
223
+
224
+ 2. Get comments on PR:
225
+ ```bash
226
+ gh api --paginate repos/[owner]/[repo]/pulls/[id]/comments | jq '.[] | {user: .user.login, body, path, line}'
227
+ ```
228
+
229
+ 3. For EACH comment:
230
+ a. Print: "(index). From [user] on [file]:[lines] — [body]"
231
+ b. Analyze the file and line range
232
+ c. If unclear, ask for clarification
233
+ d. Make the change before moving to next comment
234
+
235
+ 4. Summarize what was done and which comments need attention
236
+ ```
237
+
238
+ ---
239
+
240
+ ## Rules
241
+
242
+ Rules provide persistent behavioral guidelines that influence how Cascade responds.
243
+
244
+ ### Storage Locations
245
+
246
+ | Scope | Location |
247
+ |-------|----------|
248
+ | **Global** | `~/.codeium/windsurf/rules/{rule-name}.md` |
249
+ | **Workspace** | `.windsurf/rules/{rule-name}.md` |
250
+
251
+ ### File Format
252
+
253
+ Rules are **single markdown files**:
254
+
255
+ ```markdown
256
+ ---
257
+ description: When to use this rule
258
+ trigger: activation_mode
259
+ globs: ["*.py", "src/**/*.ts"]
260
+ ---
261
+
262
+ Rule instructions in markdown format.
263
+
264
+ - Guideline 1
265
+ - Guideline 2
266
+ - Guideline 3
267
+ ```
268
+
269
+ ### YAML Frontmatter Fields
270
+
271
+ | Field | Required | Description |
272
+ |-------|----------|-------------|
273
+ | `description` | **Yes** | Describes when to use the rule |
274
+ | `trigger` | Optional | Activation mode (see below) |
275
+ | `globs` | Optional | File patterns for glob trigger |
276
+
277
+ ### Activation Modes (trigger field)
278
+
279
+ | Mode | Value | Description |
280
+ |------|-------|-------------|
281
+ | **Manual** | `manual` | Activated via `@mention` in Cascade input |
282
+ | **Always On** | `always` | Always applied to every conversation |
283
+ | **Model Decision** | `model_decision` | Model decides based on description |
284
+ | **Glob** | `glob` | Applied when working with files matching pattern |
285
+
286
+ ### Constraints
287
+
288
+ - **Character limit**: 12,000 characters per rule file
289
+
290
+ ### Example: Complete Rule
291
+
292
+ **File**: `~/.codeium/windsurf/rules/python-style.md`
293
+
294
+ ```markdown
295
+ ---
296
+ description: Python coding standards and style guidelines. Use when writing or reviewing Python code.
297
+ trigger: glob
298
+ globs: ["*.py", "**/*.py"]
299
+ ---
300
+
301
+ # Python Coding Guidelines
302
+
303
+ - Use type hints for all function parameters and return values
304
+ - Follow PEP 8 style guide
305
+ - Use early returns when possible
306
+ - Always add docstrings to public functions and classes
307
+ - Prefer f-strings over .format() or % formatting
308
+ - Use pathlib instead of os.path for file operations
309
+ ```
310
+
311
+ ---
312
+
313
+ ## Memories
314
+
315
+ ### Global Rules (Always-On)
316
+
317
+ **Location**: `~/.codeium/windsurf/memories/global_rules.md`
318
+
319
+ This is a special file for rules that **always apply** to all conversations. Unlike rules in the `rules/` directory, this file:
320
+
321
+ - Does **not** require YAML frontmatter
322
+ - Is plain text/markdown
323
+ - Is always active (no trigger configuration)
324
+
325
+ **Format:**
326
+ ```markdown
327
+ Plain text rules that always apply to all conversations.
328
+
329
+ - Rule 1
330
+ - Rule 2
331
+ - Rule 3
332
+ ```
333
+
334
+ ### Auto-Generated Memories
335
+
336
+ Cascade automatically creates memories during conversations, stored as `.pb` (protobuf) files in `~/.codeium/windsurf/memories/`. These are managed by Windsurf and should not be manually edited.
337
+
338
+ ---
339
+
340
+ ## System-Level Configuration (Enterprise)
341
+
342
+ Enterprise organizations can deploy system-level configurations that apply globally and cannot be modified by end users.
343
+
344
+ ### System-Level Paths
345
+
346
+ | Type | Windows | macOS | Linux/WSL |
347
+ |------|---------|-------|-----------|
348
+ | **Rules** | `C:\ProgramData\Windsurf\rules\*.md` | `/Library/Application Support/Windsurf/rules/*.md` | `/etc/windsurf/rules/*.md` |
349
+ | **Workflows** | `C:\ProgramData\Windsurf\workflows\*.md` | `/Library/Application Support/Windsurf/workflows/*.md` | `/etc/windsurf/workflows/*.md` |
350
+
351
+ ### Precedence Order
352
+
353
+ When items with the same name exist at multiple levels:
354
+
355
+ 1. **System** (highest priority) - Organization-wide, deployed by IT
356
+ 2. **Workspace** - Project-specific in `.windsurf/`
357
+ 3. **Global** - User-defined in `~/.codeium/windsurf/`
358
+ 4. **Built-in** - Default items provided by Windsurf
359
+
360
+ ---
361
+
362
+ ## Programmatic Creation Reference
363
+
364
+ ### Quick Reference Table
365
+
366
+ | Type | Path Pattern | Format | Key Fields |
367
+ |------|--------------|--------|------------|
368
+ | **Skill** | `skills/{name}/SKILL.md` | YAML frontmatter + markdown | `name`, `description` |
369
+ | **Workflow** | `global_workflows/{name}.md` (global) or `workflows/{name}.md` (workspace) | YAML frontmatter + markdown | `description` |
370
+ | **Rule** | `rules/{name}.md` | YAML frontmatter + markdown | `description`, `trigger`, `globs` |
371
+ | **Global Rules** | `memories/global_rules.md` | Plain text/markdown | None |
372
+
373
+ ### Minimal Templates
374
+
375
+ #### Skill (SKILL.md)
376
+ ```markdown
377
+ ---
378
+ name: my-skill
379
+ description: What this skill does and when to use it
380
+ ---
381
+
382
+ Instructions here.
383
+ ```
384
+
385
+ #### Workflow
386
+ ```markdown
387
+ ---
388
+ description: What this workflow does
389
+ ---
390
+
391
+ 1. Step one
392
+ 2. Step two
393
+ ```
394
+
395
+ #### Rule
396
+ ```markdown
397
+ ---
398
+ description: When this rule applies
399
+ trigger: model_decision
400
+ ---
401
+
402
+ - Guideline one
403
+ - Guideline two
404
+ ```
405
+
406
+ ### Validation Checklist
407
+
408
+ When programmatically creating items:
409
+
410
+ - [ ] **Skills**: Directory exists with `SKILL.md` inside
411
+ - [ ] **Skills**: `name` field matches directory name exactly
412
+ - [ ] **Skills**: Name uses only lowercase letters, numbers, hyphens
413
+ - [ ] **Workflows/Rules**: File is `.md` extension
414
+ - [ ] **All**: YAML frontmatter uses `---` delimiters
415
+ - [ ] **All**: `description` field is present and meaningful
416
+ - [ ] **All**: File size under 12,000 characters (workflows/rules)
417
+
418
+ ---
419
+
420
+ ## Best Practices
421
+
422
+ ### Writing Effective Descriptions
423
+
424
+ The `description` field is critical for automatic invocation. Be specific:
425
+
426
+ **Good:**
427
+ ```yaml
428
+ description: Guides deployment to staging environment with pre-flight checks. Use when deploying to staging, testing releases, or preparing for production.
429
+ ```
430
+
431
+ **Bad:**
432
+ ```yaml
433
+ description: Deployment stuff
434
+ ```
435
+
436
+ ### Formatting Guidelines
437
+
438
+ - Use bullet points and numbered lists (easier for Cascade to follow)
439
+ - Use markdown headers to organize sections
440
+ - Keep rules concise and specific
441
+ - Avoid generic rules like "write good code" (already built-in)
442
+
443
+ ### XML Tags for Grouping
444
+
445
+ XML tags can effectively group related rules:
446
+
447
+ ```markdown
448
+ <coding_guidelines>
449
+ - Use early returns when possible
450
+ - Always add documentation for new functions
451
+ - Prefer composition over inheritance
452
+ </coding_guidelines>
453
+
454
+ <testing_requirements>
455
+ - Write unit tests for all public methods
456
+ - Maintain 80% code coverage
457
+ </testing_requirements>
458
+ ```
459
+
460
+ ### Skills vs Rules vs Workflows
461
+
462
+ | Use Case | Recommended |
463
+ |----------|-------------|
464
+ | Multi-step procedure with supporting files | **Skill** |
465
+ | Repeatable CLI/automation sequence | **Workflow** |
466
+ | Coding style preferences | **Rule** |
467
+ | Project conventions | **Rule** |
468
+ | Deployment procedure | **Skill** or **Workflow** |
469
+ | Code review checklist | **Skill** |
470
+
471
+ ---
472
+
473
+ ## Additional Resources
474
+
475
+ - **Official Documentation**: [docs.windsurf.com](https://docs.windsurf.com)
476
+ - **Skills Specification**: [agentskills.io](https://agentskills.io/home)
477
+ - **Rule Templates**: [windsurf.com/editor/directory](https://windsurf.com/editor/directory)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "0.9.0",
3
+ "version": "0.12.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -275,5 +275,5 @@ Review and enhance the `/docs/index.html` landing page using LaunchKit elements
275
275
 
276
276
  - LaunchKit Template: https://launchkit.evilmartians.io/
277
277
  - Pragmatic Writing Skill: `~/.claude/skills/pragmatic-writing-skill/SKILL.md`
278
- - Current Landing Page: `/Users/kieranklaassen/every-marketplace/docs/index.html`
279
- - Style CSS: `/Users/kieranklaassen/every-marketplace/docs/css/style.css`
278
+ - Current Landing Page: `/Users/kieranklaassen/compound-engineering-plugin/docs/index.html`
279
+ - Style CSS: `/Users/kieranklaassen/compound-engineering-plugin/docs/css/style.css`
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "compound-engineering",
3
- "version": "2.35.0",
4
- "description": "AI-powered development tools. 29 agents, 22 commands, 19 skills, 1 MCP server for code review, research, design, and workflow automation.",
3
+ "version": "2.38.0",
4
+ "description": "AI-powered development tools. 29 agents, 22 commands, 20 skills, 1 MCP server for code review, research, design, and workflow automation.",
5
5
  "author": {
6
6
  "name": "Kieran Klaassen",
7
7
  "email": "kieran@every.to",
@@ -5,6 +5,77 @@ All notable changes to the compound-engineering plugin will be documented in thi
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.38.0] - 2026-03-01
9
+
10
+ ### Changed
11
+ - `workflows:plan`, `workflows:work`, `workflows:review`, `workflows:brainstorm`, `workflows:compound` renamed to `ce:plan`, `ce:work`, `ce:review`, `ce:brainstorm`, `ce:compound` for clarity — the `ce:` prefix unambiguously identifies these as compound-engineering commands
12
+
13
+ ### Deprecated
14
+ - `workflows:*` commands — all five remain functional as aliases that forward to their `ce:*` equivalents with a deprecation notice. Will be removed in a future version.
15
+
16
+ ---
17
+
18
+ ## [2.37.2] - 2026-03-01
19
+
20
+ ### Added
21
+
22
+ - **CLI: auto-detect install targets** — `bunx @every-env/compound-plugin install compound-engineering --to all` auto-detects installed AI coding tools and installs to all of them in one command. ([#191](https://github.com/EveryInc/compound-engineering-plugin/pull/191))
23
+ - **CLI: Gemini sync** — `sync --target gemini` symlinks personal skills to `.gemini/skills/` and merges MCP servers into `.gemini/settings.json`. ([#191](https://github.com/EveryInc/compound-engineering-plugin/pull/191))
24
+ - **CLI: sync defaults to `--target all`** — Running `sync` with no target now syncs to all detected tools automatically. ([#191](https://github.com/EveryInc/compound-engineering-plugin/pull/191))
25
+
26
+ ---
27
+
28
+ ## [2.37.1] - 2026-03-01
29
+
30
+ ### Fixed
31
+
32
+ - **`/workflows:review` rendering** — Fixed broken markdown output: "Next Steps" items 3 & 4 and Severity Breakdown no longer leak outside the Summary Report template, section numbering fixed (was jumping 5→7, now correct), removed orphaned fenced code block delimiters that caused the entire End-to-End Testing section to render as a code block, and fixed unclosed quoted string in section 1. ([#214](https://github.com/EveryInc/compound-engineering-plugin/pull/214)) — thanks [@XSAM](https://github.com/XSAM)!
33
+ - **`.worktrees` gitignore** — Added `.worktrees/` to `.gitignore` to prevent worktree directories created by the `git-worktree` skill from being tracked. ([#213](https://github.com/EveryInc/compound-engineering-plugin/pull/213)) — thanks [@XSAM](https://github.com/XSAM)!
34
+
35
+ ---
36
+
37
+ ## [2.37.0] - 2026-03-01
38
+
39
+ ### Added
40
+
41
+ - **`proof` skill** — Create, edit, comment on, and share markdown documents via Proof's web API and local bridge. Supports document creation, track-changes suggestions, comments, and bulk rewrites. No authentication required for creating shared documents.
42
+ - **Optional Proof sharing in `/workflows:brainstorm`** — "Share to Proof" is now a menu option in Phase 4 handoff, letting you upload the brainstorm document when you want to, rather than automatically on every run.
43
+ - **Optional Proof sharing in `/workflows:plan`** — "Share to Proof" is now a menu option in Post-Generation Options, letting you upload the plan file on demand rather than automatically.
44
+
45
+ ---
46
+
47
+ ## [2.36.0] - 2026-03-01
48
+
49
+ ### Added
50
+
51
+ - **OpenClaw install target** — `bunx @every-env/compound-plugin install compound-engineering --to openclaw` now installs the plugin to OpenClaw's extensions directory. ([#217](https://github.com/EveryInc/compound-engineering-plugin/pull/217)) — thanks [@TrendpilotAI](https://github.com/TrendpilotAI)!
52
+ - **Qwen Code install target** — `bunx @every-env/compound-plugin install compound-engineering --to qwen` now installs the plugin to Qwen Code's extensions directory. ([#220](https://github.com/EveryInc/compound-engineering-plugin/pull/220)) — thanks [@rlam3](https://github.com/rlam3)!
53
+ - **Windsurf install target** — `bunx @every-env/compound-plugin install compound-engineering --to windsurf` converts plugins to Windsurf format. Agents become Windsurf skills, commands become flat workflows, and MCP servers write to `mcp_config.json`. Defaults to global scope (`~/.codeium/windsurf/`); use `--scope workspace` for project-level output. ([#202](https://github.com/EveryInc/compound-engineering-plugin/pull/202)) — thanks [@rburnham52](https://github.com/rburnham52)!
54
+
55
+ ### Fixed
56
+
57
+ - **`create-agent-skill` / `heal-skill` YAML crash** — `argument-hint` values containing special characters now properly quoted to prevent YAML parse errors in the Claude Code TUI. ([#219](https://github.com/EveryInc/compound-engineering-plugin/pull/219)) — thanks [@solon](https://github.com/solon)!
58
+ - **`resolve-pr-parallel` skill name** — Renamed from `resolve_pr_parallel` (underscore) to `resolve-pr-parallel` (hyphen) to match the standard naming convention. ([#202](https://github.com/EveryInc/compound-engineering-plugin/pull/202)) — thanks [@rburnham52](https://github.com/rburnham52)!
59
+
60
+ ---
61
+
62
+ ## [2.35.2] - 2026-02-20
63
+
64
+ ### Changed
65
+
66
+ - **`/workflows:plan` brainstorm integration** — When plan finds a brainstorm document, it now heavily references it throughout. Added `origin:` frontmatter field to plan templates, brainstorm cross-check in final review, and "Sources" section at the bottom of all three plan templates (MINIMAL, MORE, A LOT). Brainstorm decisions are carried forward with explicit references (`see brainstorm: <path>`) and a mandatory scan before finalizing ensures nothing is dropped.
67
+
68
+ ---
69
+
70
+ ## [2.35.1] - 2026-02-18
71
+
72
+ ### Changed
73
+
74
+ - **`/workflows:work` system-wide test check** — Added "System-Wide Test Check" to the task execution loop. Before marking a task done, forces five questions: what callbacks/middleware fire when this runs? Do tests exercise the real chain or just mocked isolation? Can failure leave orphaned state? What other interfaces need the same change? Do error strategies align across layers? Includes skip criteria for leaf-node changes. Also added integration test guidance to the "Test Continuously" section.
75
+ - **`/workflows:plan` system-wide impact templates** — Added "System-Wide Impact" section to MORE and A LOT plan templates (interaction graph, error propagation, state lifecycle, API surface parity, integration test scenarios) as lightweight prompts to flag risks during planning.
76
+
77
+ ---
78
+
8
79
  ## [2.35.0] - 2026-02-17
9
80
 
10
81
  ### Fixed
@@ -83,7 +154,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
83
154
  - All 29 agent descriptions trimmed from ~1,400 to ~180 chars avg (examples moved to agent body)
84
155
  - 18 manual commands marked `disable-model-invocation: true` (side-effect commands like `/lfg`, `/deploy-docs`, `/triage`, etc.)
85
156
  - 6 manual skills marked `disable-model-invocation: true` (`orchestrating-swarms`, `git-worktree`, `skill-creator`, `compound-docs`, `file-todos`, `resolve-pr-parallel`)
86
- - **git-worktree**: Remove confirmation prompt for worktree creation ([@Sam Xie](https://github.com/samxie))
157
+ - **git-worktree**: Remove confirmation prompt for worktree creation ([@Sam Xie](https://github.com/XSAM))
87
158
  - **Prevent subagents from writing intermediary files** in compound workflow ([@Trevin Chow](https://github.com/trevin))
88
159
 
89
160
  ### Fixed
@@ -35,7 +35,8 @@ agents/
35
35
  └── docs/ # Documentation agents
36
36
 
37
37
  commands/
38
- ├── workflows/ # Core workflow commands (workflows:plan, workflows:review, etc.)
38
+ ├── ce/ # Core workflow commands (ce:plan, ce:review, etc.)
39
+ ├── workflows/ # Deprecated aliases for ce:* commands
39
40
  └── *.md # Utility commands
40
41
 
41
42
  skills/
@@ -44,13 +45,14 @@ skills/
44
45
 
45
46
  ## Command Naming Convention
46
47
 
47
- **Workflow commands** use `workflows:` prefix to avoid collisions with built-in commands:
48
- - `/workflows:plan` - Create implementation plans
49
- - `/workflows:review` - Run comprehensive code reviews
50
- - `/workflows:work` - Execute work items systematically
51
- - `/workflows:compound` - Document solved problems
48
+ **Workflow commands** use `ce:` prefix to unambiguously identify them as compound-engineering commands:
49
+ - `/ce:plan` - Create implementation plans
50
+ - `/ce:review` - Run comprehensive code reviews
51
+ - `/ce:work` - Execute work items systematically
52
+ - `/ce:compound` - Document solved problems
53
+ - `/ce:brainstorm` - Explore requirements and approaches before planning
52
54
 
53
- **Why `workflows:`?** Claude Code has built-in `/plan` and `/review` commands. Using `name: workflows:plan` in frontmatter creates a unique `/workflows:plan` command with no collision.
55
+ **Why `ce:`?** Claude Code has built-in `/plan` and `/review` commands. The `ce:` namespace (short for compound-engineering) makes it immediately clear these commands belong to this plugin. The legacy `workflows:` prefix is still supported as deprecated aliases that forward to the `ce:*` equivalents.
54
56
 
55
57
  ## Skill Compliance Checklist
56
58
 
@@ -8,7 +8,7 @@ AI-powered development tools that get smarter with every use. Make each unit of
8
8
  |-----------|-------|
9
9
  | Agents | 29 |
10
10
  | Commands | 22 |
11
- | Skills | 19 |
11
+ | Skills | 20 |
12
12
  | MCP Servers | 1 |
13
13
 
14
14
  ## Agents
@@ -73,15 +73,17 @@ Agents are organized into categories for easier discovery.
73
73
 
74
74
  ### Workflow Commands
75
75
 
76
- Core workflow commands use `workflows:` prefix to avoid collisions with built-in commands:
76
+ Core workflow commands use `ce:` prefix to unambiguously identify them as compound-engineering commands:
77
77
 
78
78
  | Command | Description |
79
79
  |---------|-------------|
80
- | `/workflows:brainstorm` | Explore requirements and approaches before planning |
81
- | `/workflows:plan` | Create implementation plans |
82
- | `/workflows:review` | Run comprehensive code reviews |
83
- | `/workflows:work` | Execute work items systematically |
84
- | `/workflows:compound` | Document solved problems to compound team knowledge |
80
+ | `/ce:brainstorm` | Explore requirements and approaches before planning |
81
+ | `/ce:plan` | Create implementation plans |
82
+ | `/ce:review` | Run comprehensive code reviews |
83
+ | `/ce:work` | Execute work items systematically |
84
+ | `/ce:compound` | Document solved problems to compound team knowledge |
85
+
86
+ > **Deprecated aliases:** `/workflows:plan`, `/workflows:work`, `/workflows:review`, `/workflows:brainstorm`, `/workflows:compound` still work but show a deprecation warning. Use `ce:*` equivalents.
85
87
 
86
88
  ### Utility Commands
87
89
 
@@ -134,6 +136,7 @@ Core workflow commands use `workflows:` prefix to avoid collisions with built-in
134
136
  | `every-style-editor` | Review copy for Every's style guide compliance |
135
137
  | `file-todos` | File-based todo tracking system |
136
138
  | `git-worktree` | Manage Git worktrees for parallel development |
139
+ | `proof` | Create, edit, and share documents via Proof collaborative editor |
137
140
  | `resolve-pr-parallel` | Resolve PR review comments in parallel |
138
141
  | `setup` | Configure which review agents run for your project |
139
142
 
@@ -56,4 +56,4 @@ When analyzing, consider:
56
56
 
57
57
  Your insights should help developers understand not just what the code does, but why it evolved to its current state, informing better decisions for future changes.
58
58
 
59
- Note that files in `docs/plans/` and `docs/solutions/` are compound-engineering pipeline artifacts created by `/workflows:plan`. They are intentional, permanent living documents — do not recommend their removal or characterize them as unnecessary.
59
+ Note that files in `docs/plans/` and `docs/solutions/` are compound-engineering pipeline artifacts created by `/ce:plan`. They are intentional, permanent living documents — do not recommend their removal or characterize them as unnecessary.
@@ -257,7 +257,7 @@ Structure your findings as:
257
257
  ## Integration Points
258
258
 
259
259
  This agent is designed to be invoked by:
260
- - `/workflows:plan` - To inform planning with institutional knowledge
260
+ - `/ce:plan` - To inform planning with institutional knowledge
261
261
  - `/deepen-plan` - To add depth with relevant learnings
262
262
  - Manual invocation before starting work on a feature
263
263