@every-env/compound-plugin 2.36.3 → 2.36.4

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.
package/AGENTS.md CHANGED
@@ -7,7 +7,7 @@ This repository contains a Bun/TypeScript CLI that converts Claude Code plugins
7
7
  - **Branching:** Create a feature branch for any non-trivial change. If already on the correct branch for the task, keep using it; do not create additional branches or worktrees unless explicitly requested.
8
8
  - **Safety:** Do not delete or overwrite user data. Avoid destructive commands.
9
9
  - **Testing:** Run `bun test` after changes that affect parsing, conversion, or output.
10
- - **Release versioning:** The root CLI package (`package.json`, `CHANGELOG.md`, and repo `v*` tags) uses one shared release line managed by semantic-release on `main`. Do not start or maintain a separate root CLI version stream. Use conventional commits and let release automation write the next root package version. Keep the root changelog header block in sync with `.releaserc.json` `changelogTitle` so generated release entries stay under the header. Embedded marketplace plugin metadata (`plugins/compound-engineering/.claude-plugin/plugin.json` and `.claude-plugin/marketplace.json`) is a separate version surface and may differ.
10
+ - **Release versioning:** The root CLI package (`package.json`, root `CHANGELOG.md`, and repo `v*` tags) uses one shared release line managed by semantic-release on `main`. Do not start or maintain a separate root CLI version stream. Use conventional commits and let release automation write the next root package version. Keep the root changelog header block in sync with `.releaserc.json` `changelogTitle` so generated release entries stay under the header. Embedded marketplace plugin metadata (`plugins/compound-engineering/.claude-plugin/plugin.json` and `.claude-plugin/marketplace.json`) is a separate version surface and may differ, but contributors should not guess or hand-bump release versions for it in normal PRs. The automated release process decides the next plugin/marketplace releases and changelog entries after deciding which merged changes ship together.
11
11
  - **Output Paths:** Keep OpenCode output at `opencode.json` and `.opencode/{agents,skills,plugins}`. For OpenCode, command go to `~/.config/opencode/commands/<name>.md`; `opencode.json` is deep-merged (never overwritten wholesale).
12
12
  - **ASCII-first:** Use ASCII unless the file already contains Unicode.
13
13
 
@@ -48,6 +48,16 @@ Add a new provider when at least one of these is true:
48
48
 
49
49
  Avoid adding a provider if the target spec is unstable or undocumented.
50
50
 
51
+ ## Agent References in Skills
52
+
53
+ When referencing agents from within skill SKILL.md files (e.g., via the `Agent` or `Task` tool), always use the **fully-qualified namespace**: `compound-engineering:<category>:<agent-name>`. Never use the short agent name alone.
54
+
55
+ Example:
56
+ - `compound-engineering:research:learnings-researcher` (correct)
57
+ - `learnings-researcher` (wrong - will fail to resolve at runtime)
58
+
59
+ This prevents resolution failures when the plugin is installed alongside other plugins that may define agents with the same short name.
60
+
51
61
  ## Repository Docs Convention
52
62
 
53
63
  - **Plans** live in `docs/plans/` and track implementation progress.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  Release numbering now follows the repository `v*` tag line. Starting at `v2.34.0`, the root CLI package and this changelog stay on that shared version stream. Older entries below retain the previous `0.x` CLI numbering.
9
9
 
10
+ ## [2.36.4](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.3...v2.36.4) (2026-03-14)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **skills:** use fully-qualified agent namespace in Task invocations ([026602e](https://github.com/EveryInc/compound-engineering-plugin/commit/026602e6247d63a83502b80e72cd318232a06af7)), closes [#251](https://github.com/EveryInc/compound-engineering-plugin/issues/251)
16
+
10
17
  ## [2.36.3](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.2...v2.36.3) (2026-03-13)
11
18
 
12
19
 
package/CLAUDE.md CHANGED
@@ -50,7 +50,7 @@ Rules:
50
50
  - Do not start a separate root CLI version stream. The root CLI follows the repo tag line.
51
51
  - Do not hand-bump the root CLI `package.json` or root `CHANGELOG.md` for routine feature work. Use conventional commits and let semantic-release write the released root version back to git.
52
52
  - Keep the root `CHANGELOG.md` header block aligned with `.releaserc.json` `changelogTitle`. If they drift, semantic-release will prepend release notes above the header.
53
- - Continue updating embedded plugin metadata when the plugin contents themselves change.
53
+ - Do not guess or hand-bump embedded plugin release versions in routine PRs. The automated release process decides the next plugin/marketplace version and generate release changelog entries after choosing which merged changes ship together.
54
54
 
55
55
  ### Adding a New Plugin
56
56
 
@@ -93,17 +93,17 @@ The description appears in multiple places and must match everywhere:
93
93
 
94
94
  Format: `"Includes X specialized agents, Y commands, and Z skill(s)."`
95
95
 
96
- #### 3. Update version numbers
96
+ #### 3. Do not pre-cut release versions
97
97
 
98
- When adding new functionality, bump the version in:
98
+ Contributors should not guess the next released plugin version in a normal PR:
99
99
 
100
- - [ ] `plugins/compound-engineering/.claude-plugin/plugin.json` → `version`
101
- - [ ] `.claude-plugin/marketplace.json` → plugin `version`
100
+ - [ ] No manual bump in `plugins/compound-engineering/.claude-plugin/plugin.json` → `version`
101
+ - [ ] No manual bump in `.claude-plugin/marketplace.json` → plugin `version`
102
102
 
103
103
  #### 4. Update documentation
104
104
 
105
105
  - [ ] `plugins/compound-engineering/README.md` → list all components
106
- - [ ] `plugins/compound-engineering/CHANGELOG.md` document changes
106
+ - [ ] Do not cut a release section in `plugins/compound-engineering/CHANGELOG.md` for a normal feature PR
107
107
  - [ ] `CLAUDE.md` → update structure diagram if needed
108
108
 
109
109
  #### 5. Rebuild documentation site
package/README.md CHANGED
@@ -60,7 +60,32 @@ bunx @every-env/compound-plugin install compound-engineering --to qwen
60
60
  bunx @every-env/compound-plugin install compound-engineering --to all
61
61
  ```
62
62
 
63
- Local dev:
63
+ ### Local Development
64
+
65
+ When developing and testing local changes to the plugin:
66
+
67
+ **Claude Code** — add a shell alias so your local copy loads alongside your normal plugins:
68
+
69
+ ```bash
70
+ # add to ~/.zshrc or ~/.bashrc
71
+ alias claude-dev-ce='claude --plugin-dir ~/code/compound-engineering-plugin/plugins/compound-engineering'
72
+ ```
73
+
74
+ One-liner to append it:
75
+
76
+ ```bash
77
+ echo "alias claude-dev-ce='claude --plugin-dir ~/code/compound-engineering-plugin/plugins/compound-engineering'" >> ~/.zshrc
78
+ ```
79
+
80
+ Then run `claude-dev-ce` instead of `claude` to test your changes. Your production install stays untouched.
81
+
82
+ **Codex** — point the install command at your local path:
83
+
84
+ ```bash
85
+ bunx @every-env/compound-plugin install ./plugins/compound-engineering --to codex
86
+ ```
87
+
88
+ **Other targets** — same pattern, swap the target:
64
89
 
65
90
  ```bash
66
91
  bun run src/index.ts install ./plugins/compound-engineering --to opencode
@@ -17,20 +17,18 @@ This document applies to the embedded marketplace plugin metadata, not the root
17
17
 
18
18
  ## Solution
19
19
 
20
- **Every change to the plugin MUST include:**
20
+ **Routine PRs should not cut plugin releases.**
21
21
 
22
- 1. **Version bump in `plugin.json`**
23
- - Follow semantic versioning (semver)
24
- - MAJOR: Breaking changes or major reorganization
25
- - MINOR: New agents, commands, or skills added
26
- - PATCH: Bug fixes, documentation updates, minor improvements
22
+ The embedded plugin version is release-owned metadata. The maintainer uses a local slash command to choose the next version and generate release changelog entries after deciding which merged changes ship together. Because multiple PRs may merge before release, contributors should not guess release versions inside individual PRs.
27
23
 
28
- 2. **CHANGELOG.md update**
29
- - Add entry under `## [Unreleased]` or new version section
30
- - Use Keep a Changelog format
31
- - Categories: Added, Changed, Deprecated, Removed, Fixed, Security
24
+ Contributors should:
32
25
 
33
- 3. **README.md verification**
26
+ 1. **Avoid release bookkeeping in normal PRs**
27
+ - Do not manually bump `.claude-plugin/plugin.json`
28
+ - Do not manually bump `.claude-plugin/marketplace.json`
29
+ - Do not cut release sections in `CHANGELOG.md`
30
+
31
+ 2. **Keep substantive docs accurate**
34
32
  - Verify component counts match actual files
35
33
  - Verify agent/command/skill tables are accurate
36
34
  - Update descriptions if functionality changed
@@ -40,8 +38,9 @@ This document applies to the embedded marketplace plugin metadata, not the root
40
38
  ```markdown
41
39
  Before committing changes to compound-engineering plugin:
42
40
 
43
- - [ ] Version bumped in `.claude-plugin/plugin.json`
44
- - [ ] CHANGELOG.md updated with changes
41
+ - [ ] No manual version bump in `.claude-plugin/plugin.json`
42
+ - [ ] No manual version bump in `.claude-plugin/marketplace.json`
43
+ - [ ] No manual release section added to `CHANGELOG.md`
45
44
  - [ ] README.md component counts verified
46
45
  - [ ] README.md tables updated (if adding/removing/renaming)
47
46
  - [ ] plugin.json description updated (if component counts changed)
@@ -49,8 +48,8 @@ Before committing changes to compound-engineering plugin:
49
48
 
50
49
  ## File Locations
51
50
 
52
- - Version: `.claude-plugin/plugin.json` `"version": "X.Y.Z"`
53
- - Changelog: `CHANGELOG.md`
51
+ - Version is release-owned: `.claude-plugin/plugin.json` and `.claude-plugin/marketplace.json`
52
+ - Changelog release sections are release-owned: `CHANGELOG.md`
54
53
  - Readme: `README.md`
55
54
 
56
55
  ## Example Workflow
@@ -58,11 +57,10 @@ Before committing changes to compound-engineering plugin:
58
57
  When adding a new agent:
59
58
 
60
59
  1. Create the agent file in `agents/[category]/`
61
- 2. Bump version in `plugin.json` (minor version for new agent)
62
- 3. Add to CHANGELOG under `### Added`
63
- 4. Add row to README agent table
64
- 5. Update README component count
65
- 6. Update plugin.json description with new counts
60
+ 2. Update README agent table
61
+ 3. Update README component count
62
+ 4. Update plugin metadata description with new counts if needed
63
+ 5. Leave version selection and release changelog generation to the maintainer's release command
66
64
 
67
65
  ## Prevention
68
66
 
@@ -70,7 +68,7 @@ This documentation serves as a reminder. When Claude Code works on this plugin,
70
68
 
71
69
  1. Check this doc before committing changes
72
70
  2. Follow the checklist above
73
- 3. Never commit partial updates (all three files must be updated together)
71
+ 3. Do not guess release versions in feature PRs
74
72
 
75
73
  ## Related Files
76
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "2.36.3",
3
+ "version": "2.36.4",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -2,24 +2,24 @@
2
2
 
3
3
  ## Versioning Requirements
4
4
 
5
- **IMPORTANT**: Every change to this plugin MUST include updates to all three files:
5
+ **IMPORTANT**: Routine PRs should not cut releases for this plugin.
6
6
 
7
- 1. **`.claude-plugin/plugin.json`** - Bump version using semver
8
- 2. **`CHANGELOG.md`** - Document changes using Keep a Changelog format
9
- 3. **`README.md`** - Verify/update component counts and tables
7
+ The repo uses an automatied release process to prepare plugin releases, including version selection and changelog generation. Because multiple PRs may merge before the next release, contributors cannot know the final released version from within an individual PR.
10
8
 
11
- ### Version Bumping Rules
9
+ ### Contributor Rules
12
10
 
13
- - **MAJOR** (1.0.0 2.0.0): Breaking changes, major reorganization
14
- - **MINOR** (1.0.0 1.1.0): New agents, commands, or skills
15
- - **PATCH** (1.0.0 1.0.1): Bug fixes, doc updates, minor improvements
11
+ - Do **not** manually bump `.claude-plugin/plugin.json` version in a normal feature PR.
12
+ - Do **not** manually bump `.claude-plugin/marketplace.json` plugin version in a normal feature PR.
13
+ - Do **not** cut a release section in `CHANGELOG.md` for a normal feature PR.
14
+ - Do update substantive docs that are part of the actual change, such as `README.md`, component tables, usage instructions, or counts when they would otherwise become inaccurate.
16
15
 
17
16
  ### Pre-Commit Checklist
18
17
 
19
18
  Before committing ANY changes:
20
19
 
21
- - [ ] Version bumped in `.claude-plugin/plugin.json`
22
- - [ ] CHANGELOG.md updated with changes
20
+ - [ ] No manual release-version bump in `.claude-plugin/plugin.json`
21
+ - [ ] No manual release-version bump in `.claude-plugin/marketplace.json`
22
+ - [ ] No manual release entry added to `CHANGELOG.md`
23
23
  - [ ] README.md component counts verified
24
24
  - [ ] README.md tables accurate (agents, commands, skills)
25
25
  - [ ] plugin.json description matches current counts
@@ -41,7 +41,7 @@ Use **AskUserQuestion tool** to suggest: "Your requirements seem detailed enough
41
41
 
42
42
  Run a quick repo scan to understand existing patterns:
43
43
 
44
- - Task repo-research-analyst("Understand existing patterns related to: <feature_description>")
44
+ - Task compound-engineering:research:repo-research-analyst("Understand existing patterns related to: <feature_description>")
45
45
 
46
46
  Focus on: similar features, established patterns, CLAUDE.md guidance.
47
47
 
@@ -82,8 +82,8 @@ First, I need to understand the project's conventions, existing patterns, and an
82
82
 
83
83
  Run these agents **in parallel** to gather local context:
84
84
 
85
- - Task repo-research-analyst(feature_description)
86
- - Task learnings-researcher(feature_description)
85
+ - Task compound-engineering:research:repo-research-analyst(feature_description)
86
+ - Task compound-engineering:research:learnings-researcher(feature_description)
87
87
 
88
88
  **What to look for:**
89
89
  - **Repo research:** existing patterns, CLAUDE.md guidance, technology familiarity, pattern consistency
@@ -113,8 +113,8 @@ Examples:
113
113
 
114
114
  Run these agents in parallel:
115
115
 
116
- - Task best-practices-researcher(feature_description)
117
- - Task framework-docs-researcher(feature_description)
116
+ - Task compound-engineering:research:best-practices-researcher(feature_description)
117
+ - Task compound-engineering:research:framework-docs-researcher(feature_description)
118
118
 
119
119
  ### 1.6. Consolidate Research
120
120
 
@@ -109,8 +109,8 @@ For each agent in review_agents:
109
109
  ```
110
110
 
111
111
  Always run these last regardless of mode:
112
- - Task agent-native-reviewer(PR content) - Verify new features are agent-accessible
113
- - Task learnings-researcher(PR content) - Search docs/solutions/ for past issues related to this PR's modules and patterns
112
+ - Task compound-engineering:review:agent-native-reviewer(PR content) - Verify new features are agent-accessible
113
+ - Task compound-engineering:research:learnings-researcher(PR content) - Search docs/solutions/ for past issues related to this PR's modules and patterns
114
114
 
115
115
  </parallel_tasks>
116
116
 
@@ -122,9 +122,9 @@ These agents are run ONLY when the PR matches specific criteria. Check the PR fi
122
122
 
123
123
  **MIGRATIONS: If PR contains database migrations, schema.rb, or data backfills:**
124
124
 
125
- - Task schema-drift-detector(PR content) - Detects unrelated schema.rb changes by cross-referencing against included migrations (run FIRST)
126
- - Task data-migration-expert(PR content) - Validates ID mappings match production, checks for swapped values, verifies rollback safety
127
- - Task deployment-verification-agent(PR content) - Creates Go/No-Go deployment checklist with SQL verification queries
125
+ - Task compound-engineering:review:schema-drift-detector(PR content) - Detects unrelated schema.rb changes by cross-referencing against included migrations (run FIRST)
126
+ - Task compound-engineering:review:data-migration-expert(PR content) - Validates ID mappings match production, checks for swapped values, verifies rollback safety
127
+ - Task compound-engineering:review:deployment-verification-agent(PR content) - Creates Go/No-Go deployment checklist with SQL verification queries
128
128
 
129
129
  **When to run:**
130
130
  - PR includes files matching `db/migrate/*.rb` or `db/schema.rb`
@@ -236,7 +236,7 @@ Complete system context map with component interactions
236
236
 
237
237
  ### 4. Simplification and Minimalism Review
238
238
 
239
- Run the Task code-simplicity-reviewer() to see if we can simplify the code.
239
+ Run the Task compound-engineering:review:code-simplicity-reviewer() to see if we can simplify the code.
240
240
 
241
241
  ### 5. Findings Synthesis and Todo Creation Using file-todos Skill
242
242