@dotdotgod/codex 0.1.18 → 0.1.19

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.
Files changed (2) hide show
  1. package/README.md +18 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,17 +4,28 @@
4
4
 
5
5
  > **Change a file, know what else must be checked.**
6
6
 
7
- Codex adapter for dotdotgod's context curation workflow. It packages reusable skills that help Codex initialize shared agent docs, load bounded project memory, and plan from docs before implementation.
8
-
9
- Impact/context in practice:
7
+ ```bash
8
+ $ dotdotgod graph impact . --changed packages/cli/src/core.mjs --compact
9
+ ```
10
10
 
11
11
  ```text
12
- dd:init creates the memory scaffold
13
- dd:load reads a bounded snapshot and relevant docs
14
- dd:plan captures durable task intent before implementation
12
+ docs:
13
+ - docs/spec/REFERENCE_EXPANSION.md (91; incoming:implemented_by, semantic_similarity)
14
+ - docs/test/REFERENCE_EXPANSION.md (65.3; verified_by, semantic_similarity)
15
+ - docs/spec/LOAD_PROJECT.md (35.8; related_doc, semantic_similarity)
16
+
17
+ tests:
18
+ - packages/cli/test/core.test.mjs (78.6; semantic_similarity, incoming:semantic_similarity, verified_by)
19
+ - packages/cli/test/e2e.test.mjs (51.4; verified_by)
20
+
21
+ files:
22
+ - packages/cli/src/core.mjs (100; changed-file)
23
+ - packages/pi/extensions/plan-mode/index.ts (45; implemented_by, semantic_similarity)
15
24
  ```
16
25
 
17
- The same project-memory graph that powers `dotdotgod graph impact` can surface likely related docs, tests, source, and config for changed files. The graph is not only traceability: it also uses Markdown links, README routes, headings, package metadata, memory-area membership, commands, tests, and deterministic routing hints.
26
+ `graph impact` ranks the specs, tests, architecture notes, config docs, and source files most likely to matter for a change. `--compact` keeps the result agent-facing: grouped by docs/tests/files and annotated with the reasons each item is likely relevant. It uses the project-memory graph built from Markdown links, README routes, headings, traceability blocks, package metadata, memory areas, and deterministic routing hints.
27
+
28
+ Codex adapter for dotdotgod's context curation workflow. It packages reusable skills that help Codex initialize shared agent docs, load bounded project memory, and plan from docs before implementation.
18
29
 
19
30
  ## What Gets Better?
20
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotdotgod/codex",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "Codex adapter for dotdotgod project memory workflows.",
5
5
  "type": "module",
6
6
  "license": "MIT",