codex-dev-mcp-suite 1.5.1 → 1.7.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.
@@ -0,0 +1,62 @@
1
+ # Trust Release Implementation Plan
2
+
3
+ > **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
4
+
5
+ **Goal:** Implement the approved v1.0.1 trust release: privacy docs, deterministic no-network mode, provider recommendation docs, tests, and publish readiness checks.
6
+
7
+ **Architecture:** Add a tiny shared environment parser for deterministic mode in each server area that needs it, then gate embedding/rerank call paths before any network request is attempted. Documentation explains data flow and optional provider setup without enabling remote calls by default.
8
+
9
+ **Tech Stack:** Node.js MCP servers, Markdown docs, existing offline MCP test harness.
10
+
11
+ ---
12
+
13
+ ### Task 1: Deterministic Mode Code
14
+
15
+ **Files:**
16
+ - Modify: `project-memory/server.js`
17
+ - Modify: `project-memory/embedding.js`
18
+ - Modify: `project-memory/rerank.js`
19
+ - Modify: `devjournal/server.js`
20
+ - Modify: `devjournal/rerank.js`
21
+
22
+ - [ ] Add `deterministicEnabled()` helper that accepts `true`, `1`, `yes`, `on` case-insensitive.
23
+ - [ ] In project-memory, skip embedding and rerank when deterministic is enabled.
24
+ - [ ] In project-memory, label recall results `[deterministic]` when deterministic is enabled.
25
+ - [ ] In project-memory, make reindex report deterministic/no-network instead of attempting embeddings.
26
+ - [ ] In devjournal, skip rerank and label search `[deterministic]` when deterministic is enabled.
27
+
28
+ ### Task 2: Deterministic Tests
29
+
30
+ **Files:**
31
+ - Modify: `project-memory/test.mjs`
32
+ - Modify: `devjournal/test.mjs`
33
+
34
+ - [ ] Add project-memory test proving deterministic mode labels recall `[deterministic]`.
35
+ - [ ] Add project-memory test proving reindex reports deterministic/no-network.
36
+ - [ ] Add devjournal test proving deterministic mode labels search `[deterministic]`.
37
+ - [ ] Add env parsing test for `true`, `1`, `yes`, `on`.
38
+
39
+ ### Task 3: Trust Docs
40
+
41
+ **Files:**
42
+ - Create: `docs/privacy.md`
43
+ - Modify: `docs/configuration.md`
44
+ - Modify: `README.md`
45
+ - Modify: `.env.example`
46
+ - Modify: `CHANGELOG.md`
47
+ - Modify: `package.json`
48
+
49
+ - [ ] Add privacy/data-flow doc.
50
+ - [ ] Add deterministic env docs.
51
+ - [ ] Add Groq/Cerebras/OpenRouter docs-only provider strategy.
52
+ - [ ] Include `docs/privacy.md` in npm package files.
53
+ - [ ] Update changelog with trust-release items.
54
+
55
+ ### Task 4: Verification
56
+
57
+ **Files:**
58
+ - No code files.
59
+
60
+ - [ ] Run `npm test` and expect all tests pass.
61
+ - [ ] Run `npm pack --dry-run` and confirm public docs included, internal plans/specs excluded.
62
+ - [ ] Run secret scan and confirm no real secrets.