@every-env/compound-plugin 2.34.4 → 2.34.5

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.34.5](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.34.4...v2.34.5) (2026-03-10)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **lfg:** enforce plan phase with explicit step gating ([b07f43d](https://github.com/EveryInc/compound-engineering-plugin/commit/b07f43ddf59cd7f2fe54b2e0a00d2b5b508b7f11)), closes [#227](https://github.com/EveryInc/compound-engineering-plugin/issues/227)
16
+
10
17
  ## [2.34.4](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.34.3...v2.34.4) (2026-03-04)
11
18
 
12
19
 
package/PRIVACY.md ADDED
@@ -0,0 +1,38 @@
1
+ # Privacy & Data Handling
2
+
3
+ This repository contains:
4
+ - a plugin package (`plugins/compound-engineering`) made of markdown/config content
5
+ - a CLI (`@every-env/compound-plugin`) that converts and installs plugin content for different AI coding tools
6
+
7
+ ## Summary
8
+
9
+ - The plugin package does not include telemetry or analytics code.
10
+ - The plugin package does not run a background service that uploads repository/workspace contents automatically.
11
+ - Data leaves your machine only when your host/tooling or an explicitly invoked integration performs a network request.
12
+
13
+ ## What May Send Data
14
+
15
+ 1. AI host/model providers
16
+
17
+ If you run the plugin in tools like Claude Code, Cursor, Gemini CLI, Copilot, Kiro, Windsurf, etc., those tools may send prompts/context/code to their configured model providers. This behavior is controlled by those tools and providers, not by this plugin repository.
18
+
19
+ 2. Optional integrations and tools
20
+
21
+ The plugin includes optional capabilities that can call external services when explicitly used, for example:
22
+ - Context7 MCP (`https://mcp.context7.com/mcp`) for documentation lookup
23
+ - Proof (`https://www.proofeditor.ai`) when using share/edit flows
24
+ - Other opt-in skills (for example image generation or cloud upload workflows) that call their own external APIs/services
25
+
26
+ If you do not invoke these integrations, they do not transmit your project data.
27
+
28
+ 3. Package/installer infrastructure
29
+
30
+ Installing dependencies or packages (for example `npm`, `bunx`) communicates with package registries/CDNs according to your package manager configuration.
31
+
32
+ ## Data Ownership and Retention
33
+
34
+ This repository does not operate a backend service for collecting or storing your project/workspace data. Data retention and processing for model prompts or optional integrations are governed by the external services you use.
35
+
36
+ ## Security Reporting
37
+
38
+ If you identify a security issue in this repository, follow the disclosure process in [SECURITY.md](SECURITY.md).
package/SECURITY.md ADDED
@@ -0,0 +1,29 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ Security fixes are applied to the latest version on `main`.
6
+
7
+ ## Reporting a Vulnerability
8
+
9
+ Please do not open a public issue for undisclosed vulnerabilities.
10
+
11
+ Instead, report privately by emailing:
12
+ - `kieran@every.to`
13
+
14
+ Include:
15
+ - A clear description of the issue
16
+ - Reproduction steps or proof of concept
17
+ - Impact assessment (what an attacker can do)
18
+ - Any suggested mitigation
19
+
20
+ We will acknowledge receipt as soon as possible and work with you on validation, remediation, and coordinated disclosure timing.
21
+
22
+ ## Scope Notes
23
+
24
+ This repository primarily contains plugin instructions/configuration plus a conversion/install CLI.
25
+
26
+ - Plugin instruction content itself does not run as a server process.
27
+ - Security/privacy behavior also depends on the host AI tool and any external integrations you explicitly invoke.
28
+
29
+ For data-handling details, see [PRIVACY.md](PRIVACY.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "2.34.4",
3
+ "version": "2.34.5",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -5,16 +5,30 @@ argument-hint: "[feature description]"
5
5
  disable-model-invocation: true
6
6
  ---
7
7
 
8
- Run these slash commands in order. Do not do anything else. Do not stop between steps complete every step through to the end.
8
+ CRITICAL: You MUST execute every step below IN ORDER. Do NOT skip any step. Do NOT jump ahead to coding or implementation. The plan phase (steps 2-3) MUST be completed and verified BEFORE any work begins. Violating this order produces bad output.
9
9
 
10
10
  1. **Optional:** If the `ralph-wiggum` skill is available, run `/ralph-wiggum:ralph-loop "finish all slash commands" --completion-promise "DONE"`. If not available or it fails, skip and continue to step 2 immediately.
11
+
11
12
  2. `/ce:plan $ARGUMENTS`
13
+
14
+ GATE: STOP. Verify that `/ce:plan` produced a plan file in `docs/plans/`. If no plan file was created, run `/ce:plan $ARGUMENTS` again. Do NOT proceed to step 3 until a written plan exists.
15
+
12
16
  3. `/compound-engineering:deepen-plan`
17
+
18
+ GATE: STOP. Confirm the plan has been deepened and updated. The plan file in `docs/plans/` should now contain additional detail. Do NOT proceed to step 4 without a deepened plan.
19
+
13
20
  4. `/ce:work`
21
+
22
+ GATE: STOP. Verify that implementation work was performed - files were created or modified beyond the plan. Do NOT proceed to step 5 if no code changes were made.
23
+
14
24
  5. `/ce:review`
25
+
15
26
  6. `/compound-engineering:resolve_todo_parallel`
27
+
16
28
  7. `/compound-engineering:test-browser`
29
+
17
30
  8. `/compound-engineering:feature-video`
31
+
18
32
  9. Output `<promise>DONE</promise>` when video is in PR
19
33
 
20
- Start with step 2 now (or step 1 if ralph-wiggum is available).
34
+ Start with step 2 now (or step 1 if ralph-wiggum is available). Remember: plan FIRST, then work. Never skip the plan.