Skip to content

Commit 441dbf6

Browse files
chore: release main
1 parent e25a457 commit 441dbf6

File tree

6 files changed

+71
-5
lines changed

6 files changed

+71
-5
lines changed

.github/.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
".": "2.61.0",
3-
"plugins/compound-engineering": "2.61.0",
2+
".": "2.62.0",
3+
"plugins/compound-engineering": "2.62.0",
44
"plugins/coding-tutor": "1.2.1",
55
".claude-plugin": "1.0.2",
66
".cursor-plugin": "1.0.1"

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [2.62.0](https://github.com/JumpstartLab/compound-engineering-plugin/compare/cli-v2.61.0...cli-v2.62.0) (2026-04-10)
4+
5+
6+
### Features
7+
8+
* **ce-plan:** reduce token usage by extracting conditional references ([#489](https://github.com/JumpstartLab/compound-engineering-plugin/issues/489)) ([fd562a0](https://github.com/JumpstartLab/compound-engineering-plugin/commit/fd562a0d0255d203d40fd53bb10d03a284a3c0e5))
9+
* **converters:** centralize model field normalization across targets ([#442](https://github.com/JumpstartLab/compound-engineering-plugin/issues/442)) ([f93d10c](https://github.com/JumpstartLab/compound-engineering-plugin/commit/f93d10cf60a61b13c7765198d69f7c4cfa268ed6))
10+
* **model:** add MiniMax provider prefix for cross-platform model normalization ([#463](https://github.com/JumpstartLab/compound-engineering-plugin/issues/463)) ([e372b43](https://github.com/JumpstartLab/compound-engineering-plugin/commit/e372b43d30378321ac815fe1ae101c1d5634d321))
11+
* **release:** document linked-versions policy ([#482](https://github.com/JumpstartLab/compound-engineering-plugin/issues/482)) ([96345ac](https://github.com/JumpstartLab/compound-engineering-plugin/commit/96345acf217333726af0dcfdaa24058a149365bb))
12+
* **skill-design:** document skill file isolation and platform variable constraints ([#469](https://github.com/JumpstartLab/compound-engineering-plugin/issues/469)) ([0294652](https://github.com/JumpstartLab/compound-engineering-plugin/commit/0294652395cb62d5569f73ebfea543cfe8b514d6))
13+
* **testing:** close the testing gap in ce:work, ce:plan, and testing-reviewer ([#438](https://github.com/JumpstartLab/compound-engineering-plugin/issues/438)) ([35678b8](https://github.com/JumpstartLab/compound-engineering-plugin/commit/35678b8add6a603cf9939564bcd2df6b83338c52))
14+
15+
16+
### Bug Fixes
17+
18+
* **converters:** OpenCode subagent model and FQ agent name resolution ([#483](https://github.com/JumpstartLab/compound-engineering-plugin/issues/483)) ([577db53](https://github.com/JumpstartLab/compound-engineering-plugin/commit/577db53a2d2e237e900ef2079817cfe63df2d725))
19+
* **converters:** preserve user config when writing MCP servers ([#479](https://github.com/JumpstartLab/compound-engineering-plugin/issues/479)) ([c65a698](https://github.com/JumpstartLab/compound-engineering-plugin/commit/c65a698d932d02e5fb4a948db4d000e21ed6ba4f))
20+
* **converters:** remove invalid tools/infer from Copilot agent frontmatter ([#493](https://github.com/JumpstartLab/compound-engineering-plugin/issues/493)) ([6dcb4a3](https://github.com/JumpstartLab/compound-engineering-plugin/commit/6dcb4a3c553c94e95cb15b5af59aeb6693e6fd61))
21+
* **mcp:** remove bundled context7 MCP server ([#486](https://github.com/JumpstartLab/compound-engineering-plugin/issues/486)) ([afdd9d4](https://github.com/JumpstartLab/compound-engineering-plugin/commit/afdd9d44651f834b1eed0b20e401ffbef5c8cd41))
22+
* **review:** harden ce-review base resolution ([#452](https://github.com/JumpstartLab/compound-engineering-plugin/issues/452)) ([638b38a](https://github.com/JumpstartLab/compound-engineering-plugin/commit/638b38abd267d415ad2d6b72eba3dfe12beefad9))
23+
* Update lfg test to match delegation pattern ([2c36199](https://github.com/JumpstartLab/compound-engineering-plugin/commit/2c361991ca5b451b962b6bedd1882f267560a9f1))
24+
325
## [2.61.0](https://github.com/EveryInc/compound-engineering-plugin/compare/cli-v2.60.0...cli-v2.61.0) (2026-04-01)
426

527

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@every-env/compound-plugin",
3-
"version": "2.61.0",
3+
"version": "2.62.0",
44
"description": "Official Compound Engineering plugin for Claude Code, Codex, and more",
55
"type": "module",
66
"private": false,

plugins/compound-engineering/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "compound-engineering",
3-
"version": "2.61.0",
3+
"version": "2.62.0",
44
"description": "AI-powered development tools for code review, research, design, and workflow automation.",
55
"author": {
66
"name": "Kieran Klaassen",

plugins/compound-engineering/.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "compound-engineering",
33
"displayName": "Compound Engineering",
4-
"version": "2.61.0",
4+
"version": "2.62.0",
55
"description": "AI-powered development tools for code review, research, design, and workflow automation.",
66
"author": {
77
"name": "Kieran Klaassen",

plugins/compound-engineering/CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,50 @@ All notable changes to the compound-engineering plugin will be documented in thi
99
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

12+
## [2.62.0](https://github.com/JumpstartLab/compound-engineering-plugin/compare/compound-engineering-v2.61.0...compound-engineering-v2.62.0) (2026-04-10)
13+
14+
15+
### Features
16+
17+
* Add pluggable orchestrators with /ce:run, agent shims, and /lfg refactor ([ea822a4](https://github.com/JumpstartLab/compound-engineering-plugin/commit/ea822a49fd75dfc3f679e4ea13559a7b2c860696))
18+
* **ce-compound:** add discoverability check for docs/solutions/ in instruction files ([#456](https://github.com/JumpstartLab/compound-engineering-plugin/issues/456)) ([5ac8a2c](https://github.com/JumpstartLab/compound-engineering-plugin/commit/5ac8a2c2c8c258458307e476d6693cc387deb27e))
19+
* **ce-compound:** add track-based schema for bug vs knowledge learnings ([#445](https://github.com/JumpstartLab/compound-engineering-plugin/issues/445)) ([739109c](https://github.com/JumpstartLab/compound-engineering-plugin/commit/739109c03ccd45474331625f35730924d17f63ef))
20+
* **ce-plan:** add interactive deepening mode for on-demand plan strengthening ([#443](https://github.com/JumpstartLab/compound-engineering-plugin/issues/443)) ([ca78057](https://github.com/JumpstartLab/compound-engineering-plugin/commit/ca78057241ec64f36c562e3720a388420bdb347f))
21+
* **ce-plan:** reduce token usage by extracting conditional references ([#489](https://github.com/JumpstartLab/compound-engineering-plugin/issues/489)) ([fd562a0](https://github.com/JumpstartLab/compound-engineering-plugin/commit/fd562a0d0255d203d40fd53bb10d03a284a3c0e5))
22+
* **ce-review:** enforce table format, require question tool, fix autofix_class calibration ([#454](https://github.com/JumpstartLab/compound-engineering-plugin/issues/454)) ([847ce3f](https://github.com/JumpstartLab/compound-engineering-plugin/commit/847ce3f156a5cdf75667d9802e95d68e6b3c53a4))
23+
* **ce-work:** suggest branch rename when worktree name is meaningless ([#451](https://github.com/JumpstartLab/compound-engineering-plugin/issues/451)) ([e872e15](https://github.com/JumpstartLab/compound-engineering-plugin/commit/e872e15efa5514dcfea84a1a9e276bad3290cbc3))
24+
* **cli-agent-readiness-reviewer:** add smart output defaults criterion ([#448](https://github.com/JumpstartLab/compound-engineering-plugin/issues/448)) ([a01a8aa](https://github.com/JumpstartLab/compound-engineering-plugin/commit/a01a8aa0d29474c031a5b403f4f9bfc42a23ad78))
25+
* **cli-readiness-reviewer:** add conditional review persona for CLI agent readiness ([#471](https://github.com/JumpstartLab/compound-engineering-plugin/issues/471)) ([c56c766](https://github.com/JumpstartLab/compound-engineering-plugin/commit/c56c7667dfe45cfd149cf2fbfeddb35e96f8d559))
26+
* **git-commit-push-pr:** add conditional visual aids to PR descriptions ([#444](https://github.com/JumpstartLab/compound-engineering-plugin/issues/444)) ([44e3e77](https://github.com/JumpstartLab/compound-engineering-plugin/commit/44e3e77dc039d31a86194b0254e4e92839d9d5e9))
27+
* **git-commit-push-pr:** pre-resolve context to reduce bash calls ([#488](https://github.com/JumpstartLab/compound-engineering-plugin/issues/488)) ([bbd4f6d](https://github.com/JumpstartLab/compound-engineering-plugin/commit/bbd4f6de56963fc3cdb3131773d7e29d523ce549))
28+
* **git-commit-push-pr:** precompute shield badge version via skill preprocessing ([#464](https://github.com/JumpstartLab/compound-engineering-plugin/issues/464)) ([6ca7aef](https://github.com/JumpstartLab/compound-engineering-plugin/commit/6ca7aef7f33ebdf29f579cb4342c209d2bd40aad))
29+
* **product-lens-reviewer:** domain-agnostic activation criteria and strategic consequences ([#481](https://github.com/JumpstartLab/compound-engineering-plugin/issues/481)) ([804d78f](https://github.com/JumpstartLab/compound-engineering-plugin/commit/804d78fc8463be8101719b263d1f5ef0480755a6))
30+
* **resolve-pr-feedback:** add cross-invocation cluster analysis ([#480](https://github.com/JumpstartLab/compound-engineering-plugin/issues/480)) ([7b8265b](https://github.com/JumpstartLab/compound-engineering-plugin/commit/7b8265bd81410b28a4160657a7c6ac0d7f1f1cb2))
31+
* **resolve-pr-feedback:** add gated feedback clustering to detect systemic issues ([#441](https://github.com/JumpstartLab/compound-engineering-plugin/issues/441)) ([a301a08](https://github.com/JumpstartLab/compound-engineering-plugin/commit/a301a082057494e122294f4e7c1c3f5f87103f35))
32+
* **test-xcode:** add triggering context to skill description ([#466](https://github.com/JumpstartLab/compound-engineering-plugin/issues/466)) ([87facd0](https://github.com/JumpstartLab/compound-engineering-plugin/commit/87facd05dac94603780d75acb9da381dd7c61f1b))
33+
* **testing:** close the testing gap in ce:work, ce:plan, and testing-reviewer ([#438](https://github.com/JumpstartLab/compound-engineering-plugin/issues/438)) ([35678b8](https://github.com/JumpstartLab/compound-engineering-plugin/commit/35678b8add6a603cf9939564bcd2df6b83338c52))
34+
* **user-scenarios:** add user persona evaluation skill and sync support ([e25a457](https://github.com/JumpstartLab/compound-engineering-plugin/commit/e25a457a18b8eede4a783703e24c75f9adc0d014))
35+
* **user-scenarios:** add user persona evaluation skill and sync support ([f52398b](https://github.com/JumpstartLab/compound-engineering-plugin/commit/f52398b24dcde1c4630de944d8deeccccacd86c2))
36+
37+
38+
### Bug Fixes
39+
40+
* **agents:** remove self-referencing example blocks that cause recursive self-invocation ([#496](https://github.com/JumpstartLab/compound-engineering-plugin/issues/496)) ([2c90aeb](https://github.com/JumpstartLab/compound-engineering-plugin/commit/2c90aebe3b14af996859df7d0c3a45a8f060d9a9))
41+
* **ce-brainstorm:** distinguish verification from technical design in Phase 1.1 ([#465](https://github.com/JumpstartLab/compound-engineering-plugin/issues/465)) ([8ec31d7](https://github.com/JumpstartLab/compound-engineering-plugin/commit/8ec31d703fc9ed19bf6377da0a9a29da935b719d))
42+
* **ce-compound:** require question tool for "What's next?" prompt ([#460](https://github.com/JumpstartLab/compound-engineering-plugin/issues/460)) ([9bf3b07](https://github.com/JumpstartLab/compound-engineering-plugin/commit/9bf3b07185a4aeb6490116edec48599b736dc86f))
43+
* **ce-compound:** stack-aware reviewer routing and remove phantom agents ([#497](https://github.com/JumpstartLab/compound-engineering-plugin/issues/497)) ([1fc075d](https://github.com/JumpstartLab/compound-engineering-plugin/commit/1fc075d4cae199904464d43096d01111c365d02d))
44+
* **ce-plan, ce-brainstorm:** enforce repo-relative paths in generated documents ([#473](https://github.com/JumpstartLab/compound-engineering-plugin/issues/473)) ([33a8d9d](https://github.com/JumpstartLab/compound-engineering-plugin/commit/33a8d9dc118a53a35cd15e0e6e44b3592f58ac4f))
45+
* **ce-plan:** reinforce mandatory document-review after auto deepening ([#450](https://github.com/JumpstartLab/compound-engineering-plugin/issues/450)) ([42fa8c3](https://github.com/JumpstartLab/compound-engineering-plugin/commit/42fa8c3e084db464ee0e04673f7c38cd422b32d6))
46+
* **ce-plan:** route confidence-gate pass to document-review ([#462](https://github.com/JumpstartLab/compound-engineering-plugin/issues/462)) ([1962f54](https://github.com/JumpstartLab/compound-engineering-plugin/commit/1962f546b5e5288c7ce5d8658f942faf71651c81))
47+
* **ce-work:** make code review invocation mandatory by default ([#453](https://github.com/JumpstartLab/compound-engineering-plugin/issues/453)) ([7f3aba2](https://github.com/JumpstartLab/compound-engineering-plugin/commit/7f3aba29e84c3166de75438d554455a71f4f3c22))
48+
* **document-review:** show contextual next-step in Phase 5 menu ([#459](https://github.com/JumpstartLab/compound-engineering-plugin/issues/459)) ([2b7283d](https://github.com/JumpstartLab/compound-engineering-plugin/commit/2b7283da7b48dc073670c5f4d116e58255f0ffcb))
49+
* **git-commit-push-pr:** filter fix-up commits from PR descriptions ([#484](https://github.com/JumpstartLab/compound-engineering-plugin/issues/484)) ([428f4fd](https://github.com/JumpstartLab/compound-engineering-plugin/commit/428f4fd548926b104a0ee617b02f9ce8b8e8d5e5))
50+
* **mcp:** remove bundled context7 MCP server ([#486](https://github.com/JumpstartLab/compound-engineering-plugin/issues/486)) ([afdd9d4](https://github.com/JumpstartLab/compound-engineering-plugin/commit/afdd9d44651f834b1eed0b20e401ffbef5c8cd41))
51+
* **resolve-pr-feedback:** add actionability filter and lower cluster gate to 3+ ([#461](https://github.com/JumpstartLab/compound-engineering-plugin/issues/461)) ([2619ad9](https://github.com/JumpstartLab/compound-engineering-plugin/commit/2619ad9f58e6c45968ec10d7f8aa7849fe43eb25))
52+
* **resolve-pr-feedback:** treat PR comment text as untrusted input ([#490](https://github.com/JumpstartLab/compound-engineering-plugin/issues/490)) ([1847242](https://github.com/JumpstartLab/compound-engineering-plugin/commit/184724276a54dfc5b5fbe01f07e381b9163e8f24))
53+
* **review:** harden ce-review base resolution ([#452](https://github.com/JumpstartLab/compound-engineering-plugin/issues/452)) ([638b38a](https://github.com/JumpstartLab/compound-engineering-plugin/commit/638b38abd267d415ad2d6b72eba3dfe12beefad9))
54+
* Stop mixing stderr into fetched filename list ([ed547b0](https://github.com/JumpstartLab/compound-engineering-plugin/commit/ed547b0d04c941c08c0478d6151475c15081598d))
55+
1256
## [2.61.0](https://github.com/EveryInc/compound-engineering-plugin/compare/compound-engineering-v2.60.0...compound-engineering-v2.61.0) (2026-04-01)
1357

1458

0 commit comments

Comments
 (0)