ultracode-for-codex 0.3.2 → 0.3.3
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/README.md +145 -193
- package/ULTRACODE_INSTALL.md +20 -11
- package/dist/cli.js +18 -14
- package/dist/runtime/workflow-journal.d.ts +1 -0
- package/dist/runtime/workflow-journal.js +5 -2
- package/dist/runtime/workflow-runtime.js +941 -17
- package/docs/provenance-audit.md +3 -3
- package/package.json +1 -1
- package/skills/ultracode-for-codex-cli/SKILL.md +8 -2
package/docs/provenance-audit.md
CHANGED
|
@@ -7,7 +7,7 @@ Date: 2026-06-22
|
|
|
7
7
|
This audit checked:
|
|
8
8
|
|
|
9
9
|
- tracked repository files;
|
|
10
|
-
- generated npm package contents for `ultracode-for-codex@0.3.
|
|
10
|
+
- generated npm package contents for `ultracode-for-codex@0.3.3`;
|
|
11
11
|
- the locally installed companion Codex skill.
|
|
12
12
|
|
|
13
13
|
Generated build output and package tarballs were checked as projections of the
|
|
@@ -23,8 +23,8 @@ License transition completed:
|
|
|
23
23
|
|
|
24
24
|
- Apache-2.0 `LICENSE` file is present;
|
|
25
25
|
- `package.json` and `package-lock.json` declare `Apache-2.0`;
|
|
26
|
-
-
|
|
27
|
-
- npm
|
|
26
|
+
- audited package metadata version is `0.3.3`;
|
|
27
|
+
- npm publish state is verified separately during release preparation.
|
|
28
28
|
|
|
29
29
|
## Evidence
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -70,6 +70,10 @@ CLI behavior:
|
|
|
70
70
|
phase begins;
|
|
71
71
|
- each `workflow.agent.completed` record includes phase progress, total known
|
|
72
72
|
agent progress, and elapsed time;
|
|
73
|
+
- built-in `task` uses the generic phase planner; built-in `code-review`
|
|
74
|
+
collects bounded review evidence, selects dynamic lenses, runs parallel finder
|
|
75
|
+
agents, verifies each emitted candidate, optionally runs an `xhigh` sweep, and
|
|
76
|
+
synthesizes final findings by verified candidate index;
|
|
73
77
|
- after a completed run, `workflow.summary.ready` reports phase-level agent
|
|
74
78
|
counts and angles, then `workflow.review.recommended` asks the current
|
|
75
79
|
session LLM to critically re-check the final result before acting on it;
|
|
@@ -89,8 +93,10 @@ CLI behavior:
|
|
|
89
93
|
- Keep direct provider credentials out of Codex child process environments.
|
|
90
94
|
- Codex subagents run against the requested workflow cwd and have bounded
|
|
91
95
|
read-only workspace tools for text file reads and directory listings.
|
|
92
|
-
- Built-in `task`
|
|
93
|
-
|
|
96
|
+
- Built-in `task` injects deterministic workspace context into planner-selected
|
|
97
|
+
phase-wise parallel subagents. Built-in `code-review` uses deterministic
|
|
98
|
+
review evidence, allowed evidence refs, dynamic lenses, candidate verification,
|
|
99
|
+
and bounded final synthesis.
|
|
94
100
|
- Keep workflow execution local and command-owned; settings default to OS
|
|
95
101
|
background execution so long runs can keep waiting while Codex does other
|
|
96
102
|
work.
|