@every-env/compound-plugin 0.1.1 → 0.2.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 (54) hide show
  1. package/.claude/commands/triage-prs.md +193 -0
  2. package/.claude-plugin/marketplace.json +2 -2
  3. package/.github/workflows/ci.yml +25 -0
  4. package/README.md +22 -1
  5. package/docs/plans/2026-02-08-feat-pr-triage-and-merge-plan.md +128 -0
  6. package/package.json +1 -1
  7. package/plans/grow-your-own-garden-plugin-architecture.md +1 -1
  8. package/plugins/compound-engineering/.claude-plugin/plugin.json +2 -2
  9. package/plugins/compound-engineering/CHANGELOG.md +32 -0
  10. package/plugins/compound-engineering/CLAUDE.md +3 -4
  11. package/plugins/compound-engineering/README.md +19 -7
  12. package/plugins/compound-engineering/agents/research/git-history-analyzer.md +2 -0
  13. package/plugins/compound-engineering/agents/research/learnings-researcher.md +2 -2
  14. package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +1 -0
  15. package/plugins/compound-engineering/agents/review/schema-drift-detector.md +139 -0
  16. package/plugins/compound-engineering/commands/deepen-plan.md +2 -2
  17. package/plugins/compound-engineering/commands/resolve_todo_parallel.md +2 -0
  18. package/plugins/compound-engineering/commands/slfg.md +31 -0
  19. package/plugins/compound-engineering/commands/technical_review.md +7 -0
  20. package/plugins/compound-engineering/commands/workflows/brainstorm.md +11 -2
  21. package/plugins/compound-engineering/commands/workflows/compound.md +64 -27
  22. package/plugins/compound-engineering/commands/workflows/plan.md +9 -9
  23. package/plugins/compound-engineering/commands/workflows/review.md +12 -0
  24. package/plugins/compound-engineering/commands/workflows/work.md +71 -1
  25. package/plugins/compound-engineering/skills/compound-docs/SKILL.md +8 -8
  26. package/plugins/compound-engineering/skills/compound-docs/assets/critical-pattern-template.md +1 -1
  27. package/plugins/compound-engineering/skills/compound-docs/assets/resolution-template.md +3 -3
  28. package/plugins/compound-engineering/skills/compound-docs/references/yaml-schema.md +1 -1
  29. package/plugins/compound-engineering/skills/create-agent-skills/SKILL.md +168 -192
  30. package/plugins/compound-engineering/skills/create-agent-skills/references/official-spec.md +74 -125
  31. package/plugins/compound-engineering/skills/create-agent-skills/references/skill-structure.md +109 -329
  32. package/plugins/compound-engineering/skills/document-review/SKILL.md +87 -0
  33. package/plugins/compound-engineering/skills/git-worktree/scripts/worktree-manager.sh +2 -10
  34. package/plugins/compound-engineering/skills/orchestrating-swarms/SKILL.md +1717 -0
  35. package/plugins/compound-engineering/skills/resolve-pr-parallel/SKILL.md +89 -0
  36. package/plugins/compound-engineering/skills/resolve-pr-parallel/scripts/get-pr-comments +68 -0
  37. package/plugins/compound-engineering/skills/resolve-pr-parallel/scripts/resolve-pr-thread +23 -0
  38. package/src/commands/sync.ts +84 -0
  39. package/src/converters/claude-to-codex.ts +59 -2
  40. package/src/converters/claude-to-opencode.ts +7 -5
  41. package/src/index.ts +2 -0
  42. package/src/parsers/claude-home.ts +65 -0
  43. package/src/sync/codex.ts +92 -0
  44. package/src/sync/opencode.ts +75 -0
  45. package/src/targets/codex.ts +7 -2
  46. package/src/targets/opencode.ts +6 -1
  47. package/src/types/claude.ts +1 -1
  48. package/src/utils/files.ts +13 -0
  49. package/src/utils/symlink.ts +43 -0
  50. package/tests/codex-converter.test.ts +83 -0
  51. package/tests/codex-writer.test.ts +32 -0
  52. package/tests/opencode-writer.test.ts +32 -0
  53. package/plugins/compound-engineering/commands/plan_review.md +0 -7
  54. package/plugins/compound-engineering/commands/resolve_pr_parallel.md +0 -49
@@ -0,0 +1,193 @@
1
+ ---
2
+ name: triage-prs
3
+ description: Triage all open PRs with parallel agents, label, group, and review one-by-one
4
+ argument-hint: "[optional: repo owner/name or GitHub PRs URL]"
5
+ disable-model-invocation: true
6
+ allowed-tools: Bash(gh *), Bash(git log *)
7
+ ---
8
+
9
+ # Triage Open Pull Requests
10
+
11
+ Review, label, and act on all open PRs for a repository using parallel review agents. Produces a grouped triage report, applies labels, cross-references with issues, and walks through each PR for merge/comment decisions.
12
+
13
+ ## Step 0: Detect Repository
14
+
15
+ Detect repo context:
16
+ - Current repo: !`gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "no repo detected"`
17
+ - Current branch: !`git branch --show-current 2>/dev/null`
18
+
19
+ If `$ARGUMENTS` contains a GitHub URL or `owner/repo`, use that instead. Confirm the repo with the user if ambiguous.
20
+
21
+ ## Step 1: Gather Context (Parallel)
22
+
23
+ Run these in parallel:
24
+
25
+ 1. **List all open PRs:**
26
+ ```bash
27
+ gh pr list --repo OWNER/REPO --state open --limit 50
28
+ ```
29
+
30
+ 2. **List all open issues:**
31
+ ```bash
32
+ gh issue list --repo OWNER/REPO --state open --limit 50
33
+ ```
34
+
35
+ 3. **List existing labels:**
36
+ ```bash
37
+ gh label list --repo OWNER/REPO --limit 50
38
+ ```
39
+
40
+ 4. **Check recent merges** (to detect duplicate/superseded PRs):
41
+ ```bash
42
+ git log --oneline -20 main
43
+ ```
44
+
45
+ ## Step 2: Batch PRs by Theme
46
+
47
+ Group PRs into review batches of 4-6 based on apparent type:
48
+
49
+ - **Bug fixes** - titles with `fix`, `bug`, error descriptions
50
+ - **Features** - titles with `feat`, `add`, new functionality
51
+ - **Documentation** - titles with `docs`, `readme`, terminology
52
+ - **Configuration/Setup** - titles with `config`, `setup`, `install`
53
+ - **Stale/Old** - PRs older than 30 days
54
+
55
+ ## Step 3: Parallel Review (Team of Agents)
56
+
57
+ Spawn one review agent per batch using the Task tool. Each agent should:
58
+
59
+ For each PR in their batch:
60
+ 1. Run `gh pr view --repo OWNER/REPO <number> --json title,body,files,additions,deletions,author,createdAt`
61
+ 2. Run `gh pr diff --repo OWNER/REPO <number>` (pipe to `head -200` for large diffs)
62
+ 3. Determine:
63
+ - **Description:** 1-2 sentence summary of the change
64
+ - **Label:** Which existing repo label fits best
65
+ - **Action:** merge / request changes / close / needs discussion
66
+ - **Related PRs:** Any PRs in this or other batches that touch the same files or feature
67
+ - **Quality notes:** Code quality, test coverage, staleness concerns
68
+
69
+ Instruct each agent to:
70
+ - Flag PRs that touch the same files (potential merge conflicts)
71
+ - Flag PRs that duplicate recently merged work
72
+ - Flag PRs that are part of a group solving the same problem differently
73
+ - Report findings as a markdown table
74
+ - Send findings back via message when done
75
+
76
+ ## Step 4: Cross-Reference Issues
77
+
78
+ After all agents report, match issues to PRs:
79
+
80
+ - Check if any PR title/body mentions `Fixes #X` or `Closes #X`
81
+ - Check if any issue title matches a PR's topic
82
+ - Look for duplicate issues (same bug reported twice)
83
+
84
+ Build a mapping table:
85
+ ```
86
+ | Issue | PR | Relationship |
87
+ |-------|-----|--------------|
88
+ | #158 | #159 | PR fixes issue |
89
+ ```
90
+
91
+ ## Step 5: Identify Themes
92
+
93
+ Group all issues into themes (3-6 themes):
94
+ - Count issues per theme
95
+ - Note which themes have PRs addressing them and which don't
96
+ - Flag themes with competing/overlapping PRs
97
+
98
+ ## Step 6: Compile Triage Report
99
+
100
+ Present a single report with:
101
+
102
+ 1. **Summary stats:** X open PRs, Y open issues, Z themes
103
+ 2. **PR groups** with recommended actions:
104
+ - Group name and related PRs
105
+ - Per-PR: #, title, author, description, label, action
106
+ 3. **Issue-to-PR mapping**
107
+ 4. **Themes across issues**
108
+ 5. **Suggested cleanup:** spam issues, duplicates, stale items
109
+
110
+ ## Step 7: Apply Labels
111
+
112
+ After presenting the report, ask user:
113
+
114
+ > "Apply these labels to all PRs on GitHub?"
115
+
116
+ If yes, run `gh pr edit --repo OWNER/REPO <number> --add-label "<label>"` for each PR.
117
+
118
+ ## Step 8: One-by-One Review
119
+
120
+ Use **AskUserQuestion** to ask:
121
+
122
+ > "Ready to walk through PRs one-by-one for merge/comment decisions?"
123
+
124
+ Then for each PR, ordered by priority (bug fixes first, then docs, then features, then stale):
125
+
126
+ ### Show the PR:
127
+
128
+ ```
129
+ ### PR #<number> - <title>
130
+ Author: <author> | Files: <count> | +<additions>/-<deletions> | <age>
131
+ Label: <label>
132
+
133
+ <1-2 sentence description>
134
+
135
+ Fixes: <linked issues if any>
136
+ Related: <related PRs if any>
137
+ ```
138
+
139
+ Show the diff (trimmed to key changes if large).
140
+
141
+ ### Ask for decision:
142
+
143
+ Use **AskUserQuestion**:
144
+ - **Merge** - Merge this PR now
145
+ - **Comment & skip** - Leave a comment explaining why not merging, keep open
146
+ - **Close** - Close with a comment
147
+ - **Skip** - Move to next without action
148
+
149
+ ### Execute decision:
150
+
151
+ - **Merge:** `gh pr merge --repo OWNER/REPO <number> --squash`
152
+ - If PR fixes an issue, close the issue too
153
+ - **Comment & skip:** `gh pr comment --repo OWNER/REPO <number> --body "<comment>"`
154
+ - Ask user what to say, or generate a grateful + specific comment
155
+ - **Close:** `gh pr close --repo OWNER/REPO <number> --comment "<reason>"`
156
+ - **Skip:** Move on
157
+
158
+ ## Step 9: Post-Merge Cleanup
159
+
160
+ After all PRs are reviewed:
161
+
162
+ 1. **Close resolved issues** that were fixed by merged PRs
163
+ 2. **Close spam/off-topic issues** (confirm with user first)
164
+ 3. **Summary of actions taken:**
165
+ ```
166
+ ## Triage Complete
167
+
168
+ Merged: X PRs
169
+ Commented: Y PRs
170
+ Closed: Z PRs
171
+ Skipped: W PRs
172
+
173
+ Issues closed: A
174
+ Labels applied: B
175
+ ```
176
+
177
+ ## Step 10: Post-Triage Options
178
+
179
+ Use **AskUserQuestion**:
180
+
181
+ 1. **Run `/release-docs`** - Update documentation site if components changed
182
+ 2. **Run `/changelog`** - Generate changelog for merged PRs
183
+ 3. **Commit any local changes** - If version bumps needed
184
+ 4. **Done** - Wrap up
185
+
186
+ ## Important Notes
187
+
188
+ - **DO NOT merge without user approval** for each PR
189
+ - **DO NOT force push or destructive actions**
190
+ - Comments on declined PRs should be grateful and constructive
191
+ - When PRs conflict with each other, note this and suggest merge order
192
+ - When multiple PRs solve the same problem differently, flag for user to pick one
193
+ - Use Haiku model for review agents to save cost (they're doing read-only analysis)
@@ -11,8 +11,8 @@
11
11
  "plugins": [
12
12
  {
13
13
  "name": "compound-engineering",
14
- "description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 28 specialized agents, 24 commands, and 15 skills.",
15
- "version": "2.28.0",
14
+ "description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 29 specialized agents, 25 commands, and 16 skills.",
15
+ "version": "2.30.0",
16
16
  "author": {
17
17
  "name": "Kieran Klaassen",
18
18
  "url": "https://github.com/kieranklaassen",
@@ -0,0 +1,25 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Setup Bun
17
+ uses: oven-sh/setup-bun@v2
18
+ with:
19
+ bun-version: latest
20
+
21
+ - name: Install dependencies
22
+ run: bun install
23
+
24
+ - name: Run tests
25
+ run: bun test
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Compound Marketplace
2
2
 
3
+ [![Build Status](https://github.com/EveryInc/compound-engineering-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/EveryInc/compound-engineering-plugin/actions/workflows/ci.yml)
4
+ [![npm](https://img.shields.io/npm/v/@every-env/compound-plugin)](https://www.npmjs.com/package/@every-env/compound-plugin)
5
+
3
6
  A Claude Code plugin marketplace featuring the **Compound Engineering Plugin** — tools that make each unit of engineering work easier than the last.
4
7
 
5
8
  ## Claude Code Install
@@ -27,10 +30,28 @@ Local dev:
27
30
  bun run src/index.ts install ./plugins/compound-engineering --to opencode
28
31
  ```
29
32
 
30
- OpenCode output is written to `~/.opencode` by default, with `opencode.json` at the root and `agents/`, `skills/`, and `plugins/` alongside it.
33
+ OpenCode output is written to `~/.config/opencode` by default, with `opencode.json` at the root and `agents/`, `skills/`, and `plugins/` alongside it.
31
34
  Both provider targets are experimental and may change as the formats evolve.
32
35
  Codex output is written to `~/.codex/prompts` and `~/.codex/skills`, with each Claude command converted into both a prompt and a skill (the prompt instructs Codex to load the corresponding skill). Generated Codex skill descriptions are truncated to 1024 characters (Codex limit).
33
36
 
37
+ ## Sync Personal Config
38
+
39
+ Sync your personal Claude Code config (`~/.claude/`) to OpenCode or Codex:
40
+
41
+ ```bash
42
+ # Sync skills and MCP servers to OpenCode
43
+ bunx @every-env/compound-plugin sync --target opencode
44
+
45
+ # Sync to Codex
46
+ bunx @every-env/compound-plugin sync --target codex
47
+ ```
48
+
49
+ This syncs:
50
+ - Personal skills from `~/.claude/skills/` (as symlinks)
51
+ - MCP servers from `~/.claude/settings.json`
52
+
53
+ Skills are symlinked (not copied) so changes in Claude Code are reflected immediately.
54
+
34
55
  ## Workflow
35
56
 
36
57
  ```
@@ -0,0 +1,128 @@
1
+ ---
2
+ title: PR Triage, Review & Merge
3
+ type: feat
4
+ date: 2026-02-08
5
+ ---
6
+
7
+ # PR Triage, Review & Merge
8
+
9
+ ## Overview
10
+
11
+ Review all 17 open PRs one-by-one. Merge the ones that look good, leave constructive comments on the ones we won't take (keeping them open for contributors to address). Close duplicates/spam.
12
+
13
+ ## Approach
14
+
15
+ Show the diff for each PR, get a go/no-go, then either merge or comment. PRs are ordered by priority group.
16
+
17
+ ## Group 1: Bug Fixes (high confidence merges)
18
+
19
+ ### PR #159 - fix(git-worktree): detect worktrees where .git is a file
20
+ - **Author:** dalley | **Files:** 1 | **+2/-2**
21
+ - **What:** Changes `-d` to `-e` check in `worktree-manager.sh` so `list` and `cleanup` detect worktrees (`.git` is a file in worktrees, not a dir)
22
+ - **Fixes:** Issue #158
23
+ - **Action:** Review diff → merge
24
+
25
+ ### PR #144 - Remove confirmation prompt when creating git worktrees
26
+ - **Author:** XSAM | **Files:** 1 | **+0/-8**
27
+ - **What:** Removes interactive `read -r` confirmation that breaks Claude's ability to create worktrees
28
+ - **Related:** Same file as #159 (merge #159 first)
29
+ - **Action:** Review diff → merge
30
+
31
+ ### PR #150 - fix(compound): prevent subagents from writing intermediary files
32
+ - **Author:** tmchow | **Files:** 1 | **+64/-27**
33
+ - **What:** Restructures `/workflows:compound` into 2-phase orchestration to prevent subagents from writing temp files
34
+ - **Action:** Review diff → merge
35
+
36
+ ### PR #148 - Fix: resolve_pr_parallel uses non-existent scripts
37
+ - **Author:** ajrobertsonio | **Files:** 1 | **+20/-7**
38
+ - **What:** Replaces references to non-existent `bin/get-pr-comments` with standard `gh` CLI commands
39
+ - **Fixes:** Issues #147, #54
40
+ - **Action:** Review diff → merge
41
+
42
+ ## Group 2: Documentation (clean, low-risk)
43
+
44
+ ### PR #133 - Fix terminology: third person → passive voice
45
+ - **Author:** FauxReal9999 | **Files:** 13 | docs-only
46
+ - **What:** Corrects "third person" to "passive voice" across docs (accurate fix)
47
+ - **Action:** Review diff → merge
48
+
49
+ ### PR #108 - Note new repository URL
50
+ - **Author:** akx | **Files:** 5 | docs-only
51
+ - **What:** Updates URLs from `kieranklaassen/compound-engineering-plugin` to `EveryInc/compound-engineering-plugin`
52
+ - **Action:** Review diff → merge
53
+
54
+ ### PR #113 - docs: add brainstorm command to workflow documentation
55
+ - **Author:** tmchow | docs-only
56
+ - **What:** Adds brainstorming skill and learnings-researcher agent to README, fixes component counts
57
+ - **Action:** Review diff → merge
58
+
59
+ ### PR #80 - docs: Add LSP prioritization guidance
60
+ - **Author:** kevinold | **Files:** 1 | docs-only
61
+ - **What:** Adds docs showing users how to customize agent behavior via project CLAUDE.md to prioritize LSP
62
+ - **Action:** Review diff → merge
63
+
64
+ ## Group 3: Enhancements (likely merge)
65
+
66
+ ### PR #119 - fix: backup existing config files before overwriting
67
+ - **Author:** jzw | **Files:** 5 | **+90/-3** | has tests
68
+ - **What:** Adds `backupFile()` utility to create timestamped backups before overwriting Codex/OpenCode configs
69
+ - **Fixes:** Issue #125
70
+ - **Action:** Review diff → merge
71
+
72
+ ### PR #112 - feat(skills): add document-review skill
73
+ - **Author:** tmchow | enhancement
74
+ - **What:** Adds document-review skill for brainstorm/plan refinement, renames `/plan_review` → `/technical_review`
75
+ - **Note:** Breaking rename - needs review
76
+ - **Action:** Review diff → decide
77
+
78
+ ## Group 4: Needs Discussion (comment and leave open)
79
+
80
+ ### PR #157 - Rewrite workflows:review with context-managed map-reduce
81
+ - **Author:** Drewx-Design | large rewrite
82
+ - **What:** Complete rewrite of review command with file-based map-reduce architecture
83
+ - **Comment:** Acknowledge quality, note it's a big change that needs dedicated review session
84
+
85
+ ### PR #131 - feat: add vmark-mcp plugin
86
+ - **Author:** xiaolai | new plugin
87
+ - **What:** Adds entirely new VMark markdown editor plugin to marketplace
88
+ - **Comment:** Ask for more context on fit with marketplace scope
89
+
90
+ ### PR #124 - feat(commands): add /compound-engineering-setup
91
+ - **Author:** internal | config
92
+ - **What:** Interactive setup command for configuring review agents per project
93
+ - **Comment:** Note overlap with #103, needs unified config strategy
94
+
95
+ ### PR #123 - feat: Add sync command for Claude Code personal config
96
+ - **Author:** terry-li-hm | config
97
+ - **What:** Sync personal Claude config across machines/editors
98
+ - **Comment:** Note overlap with #124 and #103, needs unified config strategy
99
+
100
+ ### PR #103 - Add /compound:configure with persistent user preferences
101
+ - **Author:** aviflombaum | **+36,866** lines
102
+ - **What:** Massive architectural change adding persistent config with build system
103
+ - **Comment:** Too large, suggest breaking into smaller PRs
104
+
105
+ ## Group 5: Close
106
+
107
+ ### PR #122 - [EXPERIMENTAL] add /slfg and /swarm-status
108
+ - **Label:** duplicate
109
+ - **What:** Already merged in v2.30.0 (commit e4ff6a8)
110
+ - **Action:** Comment explaining it's been superseded, close
111
+
112
+ ### PR #68 - Improve all 13 skills to 90%+ grades
113
+ - **Label:** wontfix
114
+ - **What:** Massive stale PR (Jan 6), based on 13 skills when we now have 16+
115
+ - **Action:** Comment thanking contributor, suggest fresh PR against current main, close
116
+
117
+ ## Post-Merge Cleanup
118
+
119
+ After merging:
120
+ - [ ] Close issues fixed by merged PRs (#158, #147, #54, #125)
121
+ - [ ] Close spam issues (#98, #56)
122
+ - [ ] Run `/release-docs` to update documentation site with new component counts
123
+ - [ ] Bump version in plugin.json if needed
124
+
125
+ ## References
126
+
127
+ - PR list: https://github.com/EveryInc/compound-engineering-plugin/pulls
128
+ - Issues: https://github.com/EveryInc/compound-engineering-plugin/issues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  # Grow Your Own Garden: Adaptive Agent Ecosystem
2
2
 
3
- > **Issue:** https://github.com/kieranklaassen/compound-engineering-plugin/issues/20
3
+ > **Issue:** https://github.com/EveryInc/compound-engineering-plugin/issues/20
4
4
 
5
5
  ## The Idea
6
6
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "compound-engineering",
3
- "version": "2.28.0",
4
- "description": "AI-powered development tools. 28 agents, 24 commands, 15 skills, 1 MCP server for code review, research, design, and workflow automation.",
3
+ "version": "2.30.0",
4
+ "description": "AI-powered development tools. 29 agents, 25 commands, 16 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,38 @@ 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.30.0] - 2026-02-05
9
+
10
+ ### Added
11
+
12
+ - **`orchestrating-swarms` skill** - Comprehensive guide to multi-agent orchestration
13
+ - Covers primitives: Agent, Team, Teammate, Leader, Task, Inbox, Message, Backend
14
+ - Documents two spawning methods: subagents vs teammates
15
+ - Explains all 13 TeammateTool operations
16
+ - Includes orchestration patterns: Parallel Specialists, Pipeline, Self-Organizing Swarm
17
+ - Details spawn backends: in-process, tmux, iterm2
18
+ - Provides complete workflow examples
19
+ - **`/slfg` command** - Swarm-enabled variant of `/lfg` that uses swarm mode for parallel execution
20
+
21
+ ### Changed
22
+
23
+ - **`/workflows:work` command** - Added optional Swarm Mode section for parallel execution with coordinated agents
24
+
25
+ ---
26
+
27
+ ## [2.29.0] - 2026-02-04
28
+
29
+ ### Added
30
+
31
+ - **`schema-drift-detector` agent** - Detects unrelated schema.rb changes in PRs
32
+ - Compares schema.rb diff against migrations in the PR
33
+ - Catches columns, indexes, and tables from other branches
34
+ - Prevents accidental inclusion of local database state
35
+ - Provides clear fix instructions (checkout + migrate)
36
+ - Essential pre-merge check for any PR with database changes
37
+
38
+ ---
39
+
8
40
  ## [2.28.0] - 2026-01-21
9
41
 
10
42
  ### Added
@@ -59,7 +59,7 @@ When adding or modifying skills, verify compliance with skill-creator spec:
59
59
  ### YAML Frontmatter (Required)
60
60
 
61
61
  - [ ] `name:` present and matches directory name (lowercase-with-hyphens)
62
- - [ ] `description:` present and uses **third person** ("This skill should be used when..." NOT "Use this skill when...")
62
+ - [ ] `description:` present and describes **what it does and when to use it** (per official spec: "Explains code with diagrams. Use when exploring how code works.")
63
63
 
64
64
  ### Reference Links (Required if references/ exists)
65
65
 
@@ -80,9 +80,8 @@ When adding or modifying skills, verify compliance with skill-creator spec:
80
80
  grep -E '`(references|assets|scripts)/[^`]+`' skills/*/SKILL.md
81
81
  # Should return nothing if all refs are properly linked
82
82
 
83
- # Check description format
84
- grep -E '^description:' skills/*/SKILL.md | grep -v 'This skill'
85
- # Should return nothing if all use third person
83
+ # Check description format - should describe what + when
84
+ grep -E '^description:' skills/*/SKILL.md
86
85
  ```
87
86
 
88
87
  ## Documentation
@@ -6,16 +6,16 @@ AI-powered development tools that get smarter with every use. Make each unit of
6
6
 
7
7
  | Component | Count |
8
8
  |-----------|-------|
9
- | Agents | 27 |
10
- | Commands | 20 |
11
- | Skills | 14 |
9
+ | Agents | 29 |
10
+ | Commands | 25 |
11
+ | Skills | 16 |
12
12
  | MCP Servers | 1 |
13
13
 
14
14
  ## Agents
15
15
 
16
16
  Agents are organized into categories for easier discovery.
17
17
 
18
- ### Review (14)
18
+ ### Review (15)
19
19
 
20
20
  | Agent | Description |
21
21
  |-------|-------------|
@@ -26,21 +26,23 @@ Agents are organized into categories for easier discovery.
26
26
  | `data-migration-expert` | Validate ID mappings match production, check for swapped values |
27
27
  | `deployment-verification-agent` | Create Go/No-Go deployment checklists for risky data changes |
28
28
  | `dhh-rails-reviewer` | Rails review from DHH's perspective |
29
+ | `julik-frontend-races-reviewer` | Review JavaScript/Stimulus code for race conditions |
29
30
  | `kieran-rails-reviewer` | Rails code review with strict conventions |
30
31
  | `kieran-python-reviewer` | Python code review with strict conventions |
31
32
  | `kieran-typescript-reviewer` | TypeScript code review with strict conventions |
32
33
  | `pattern-recognition-specialist` | Analyze code for patterns and anti-patterns |
33
34
  | `performance-oracle` | Performance analysis and optimization |
35
+ | `schema-drift-detector` | Detect unrelated schema.rb changes in PRs |
34
36
  | `security-sentinel` | Security audits and vulnerability assessments |
35
- | `julik-frontend-races-reviewer` | Review JavaScript/Stimulus code for race conditions |
36
37
 
37
- ### Research (4)
38
+ ### Research (5)
38
39
 
39
40
  | Agent | Description |
40
41
  |-------|-------------|
41
42
  | `best-practices-researcher` | Gather external best practices and examples |
42
43
  | `framework-docs-researcher` | Research framework documentation and best practices |
43
44
  | `git-history-analyzer` | Analyze git history and code evolution |
45
+ | `learnings-researcher` | Search institutional learnings for relevant past solutions |
44
46
  | `repo-research-analyst` | Research repository structure and conventions |
45
47
 
46
48
  ### Design (3)
@@ -85,12 +87,14 @@ Core workflow commands use `workflows:` prefix to avoid collisions with built-in
85
87
 
86
88
  | Command | Description |
87
89
  |---------|-------------|
90
+ | `/lfg` | Full autonomous engineering workflow |
91
+ | `/slfg` | Full autonomous workflow with swarm mode for parallel execution |
88
92
  | `/deepen-plan` | Enhance plans with parallel research agents for each section |
89
93
  | `/changelog` | Create engaging changelogs for recent merges |
90
94
  | `/create-agent-skill` | Create or edit Claude Code skills |
91
95
  | `/generate_command` | Generate new slash commands |
92
96
  | `/heal-skill` | Fix skill documentation issues |
93
- | `/plan_review` | Multi-agent plan review in parallel |
97
+ | `/technical_review` | Multi-agent technical/architecture review in parallel |
94
98
  | `/report-bug` | Report a bug in the plugin |
95
99
  | `/reproduce-bug` | Reproduce bugs using logs and console |
96
100
  | `/resolve_parallel` | Resolve TODO comments in parallel |
@@ -125,10 +129,18 @@ Core workflow commands use `workflows:` prefix to avoid collisions with built-in
125
129
 
126
130
  | Skill | Description |
127
131
  |-------|-------------|
132
+ | `brainstorming` | Explore requirements and approaches through collaborative dialogue |
133
+ | `document-review` | Improve documents through structured self-review |
128
134
  | `every-style-editor` | Review copy for Every's style guide compliance |
129
135
  | `file-todos` | File-based todo tracking system |
130
136
  | `git-worktree` | Manage Git worktrees for parallel development |
131
137
 
138
+ ### Multi-Agent Orchestration
139
+
140
+ | Skill | Description |
141
+ |-------|-------------|
142
+ | `orchestrating-swarms` | Comprehensive guide to multi-agent swarm orchestration |
143
+
132
144
  ### File Transfer
133
145
 
134
146
  | Skill | Description |
@@ -40,3 +40,5 @@ When analyzing, consider:
40
40
  - The evolution of coding patterns and practices over time
41
41
 
42
42
  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.
43
+
44
+ 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.
@@ -66,7 +66,7 @@ Grep: pattern="email" path=docs/solutions/ output_mode=files_with_matches -i=tru
66
66
  **Regardless of Grep results**, always read the critical patterns file:
67
67
 
68
68
  ```bash
69
- Read: docs/solutions/patterns/cora-critical-patterns.md
69
+ Read: docs/solutions/patterns/critical-patterns.md
70
70
  ```
71
71
 
72
72
  This file contains must-know patterns that apply across all work - high-severity issues promoted to required reading. Scan for patterns relevant to the current feature/task.
@@ -182,7 +182,7 @@ Structure your findings as:
182
182
  - **Relevant Matches**: [Y files]
183
183
 
184
184
  ### Critical Patterns (Always Check)
185
- [Any matching patterns from cora-critical-patterns.md]
185
+ [Any matching patterns from critical-patterns.md]
186
186
 
187
187
  ### Relevant Learnings
188
188
 
@@ -33,6 +33,7 @@ When reviewing code, you will:
33
33
  - Eliminate extensibility points without clear use cases
34
34
  - Question generic solutions for specific problems
35
35
  - Remove "just in case" code
36
+ - Never flag `docs/plans/*.md` or `docs/solutions/*.md` for removal — these are compound-engineering pipeline artifacts created by `/workflows:plan` and used as living documents by `/workflows:work`
36
37
 
37
38
  6. **Optimize for Readability**:
38
39
  - Prefer self-documenting code over comments