@every-env/compound-plugin 2.37.0 → 2.37.1

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/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.37.1](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.37.0...v2.37.1) (2026-03-16)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **compound:** remove overly defensive context budget precheck ([#278](https://github.com/EveryInc/compound-engineering-plugin/issues/278)) ([#279](https://github.com/EveryInc/compound-engineering-plugin/issues/279)) ([84ca52e](https://github.com/EveryInc/compound-engineering-plugin/commit/84ca52efdb198c7c8ae6c94ca06fc02d2c3ef648))
16
+
10
17
  # [2.37.0](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.5...v2.37.0) (2026-03-15)
11
18
 
12
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "2.37.0",
3
+ "version": "2.37.1",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -21,41 +21,11 @@ Captures problem solutions while context is fresh, creating structured documenta
21
21
  /ce:compound [brief context] # Provide additional context hint
22
22
  ```
23
23
 
24
- ## Execution Strategy: Context-Aware Orchestration
24
+ ## Execution Strategy
25
25
 
26
- ### Phase 0: Context Budget Check
26
+ **Always run full mode by default.** Proceed directly to Phase 1 unless the user explicitly requests compact-safe mode (e.g., `/ce:compound --compact` or "use compact mode").
27
27
 
28
- <critical_requirement>
29
- **Run this check BEFORE launching any subagents.**
30
-
31
- The /compound command is token-heavy - it launches 5 parallel subagents that collectively consume ~10k tokens of context. Running near context limits risks compaction mid-compound, which degrades output quality significantly.
32
- </critical_requirement>
33
-
34
- Before proceeding, the orchestrator MUST:
35
-
36
- 1. **Assess context usage**: Check how long the current conversation has been running. If there has been significant back-and-forth (many tool calls, large file reads, extensive debugging), context is likely constrained.
37
-
38
- 2. **Warn the user**:
39
- ```
40
- ⚠️ Context Budget Check
41
-
42
- /compound launches 5 parallel subagents (~10k tokens). Long conversations
43
- risk compaction mid-compound, which degrades documentation quality.
44
-
45
- Tip: For best results, run /compound early in a session - right after
46
- verifying a fix, before continuing other work.
47
- ```
48
-
49
- 3. **Offer the user a choice**:
50
- ```
51
- How would you like to proceed?
52
-
53
- 1. Full compound (5 parallel subagents, ~10k tokens) - best quality
54
- 2. Compact-safe mode (single pass, ~2k tokens) - safe near context limits
55
- ```
56
-
57
- 4. **If the user picks option 1** (or confirms full mode): proceed to Phase 1 below.
58
- 5. **If the user picks option 2** (or requests compact-safe): skip to the **Compact-Safe Mode** section below.
28
+ Compact-safe mode exists as a lightweight alternative — see the **Compact-Safe Mode** section below. It's there if the user wants it, not something to push.
59
29
 
60
30
  ---
61
31