litcodex-ai 0.3.20 → 0.3.21
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
CHANGED
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
npx --yes litcodex-ai install
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
Current npm release: `litcodex-ai@0.3.20`. This release deepens bare Hyperplan
|
|
33
|
+
invocation context while keeping `lit start work` as an explicit safe handoff.
|
|
34
|
+
|
|
32
35
|
This registers the marketplace + plugin and installs the hook into Codex, preserving your existing
|
|
33
36
|
`~/.codex/config.toml` — it backs up before any change and never overwrites unrelated keys. Preview
|
|
34
37
|
the plan first with `npx --yes litcodex-ai --dry-run install`.
|
|
@@ -156,13 +156,14 @@ user amends scope, fold it in and re-present the brief. This gate replaces any
|
|
|
156
156
|
automatic interview-to-plan transition.
|
|
157
157
|
|
|
158
158
|
# Phase 3 — Generate the plan (only after approval)
|
|
159
|
-
1. **Gap analysis (mandatory):** spawn the `litcodex-metis` agent —
|
|
159
|
+
1. **Gap analysis (mandatory):** when `multi_agent_v1` is exposed, spawn the `litcodex-metis` agent —
|
|
160
160
|
`multi_agent_v1.spawn_agent({"message":"TASK: act as a gap-analysis
|
|
161
161
|
reviewer and review this planning session for gaps. DELIVERABLE:
|
|
162
162
|
contradictions, missing constraints, scope-creep risks, unvalidated
|
|
163
163
|
assumptions, missing acceptance criteria. SCOPE: this planning session.
|
|
164
164
|
VERIFY: each gap names a concrete fix.","fork_context":false})`. Fold the
|
|
165
|
-
findings in silently.
|
|
165
|
+
findings in silently. If `multi_agent_v1` is not exposed, do not block; run
|
|
166
|
+
the same gap analysis directly and record the limitation in the plan evidence.
|
|
166
167
|
2. If native Codex Plan Mode is active, return ONE complete
|
|
167
168
|
`<proposed_plan>...</proposed_plan>` using the template below and do not write
|
|
168
169
|
a file. Otherwise write ONE plan to `.litcodex/plans/<slug>.md`. No
|
|
@@ -252,13 +253,17 @@ able to execute every todo from the file alone, with no memory of this
|
|
|
252
253
|
interview.
|
|
253
254
|
|
|
254
255
|
# Codex subagent reliability
|
|
255
|
-
|
|
256
|
+
When `multi_agent_v1` is exposed, every `multi_agent_v1.spawn_agent` message is self-contained and starts with
|
|
256
257
|
`TASK: <imperative assignment>`, then names `DELIVERABLE`, `SCOPE`, and
|
|
257
258
|
`VERIFY`. State that it is an executable assignment, not a context handoff. Use
|
|
258
259
|
`fork_context: false` unless full history is truly required; paste only the
|
|
259
260
|
context the child needs. Name any skills the child needs directly inside its
|
|
260
261
|
`message`.
|
|
261
262
|
|
|
263
|
+
If `multi_agent_v1` is not exposed in the current Codex session, continue with
|
|
264
|
+
direct read-only lanes instead of blocking on missing subagent tools. Record that
|
|
265
|
+
host limitation and preserve the same evidence standard.
|
|
266
|
+
|
|
262
267
|
Prefer exact installed LitCodex role names when the host accepts `agent_type`:
|
|
263
268
|
`litcodex-explorer`, `litcodex-librarian`, `litcodex-plan`, `litcodex-metis`,
|
|
264
269
|
`litcodex-momus`, and `litcodex-litwork-reviewer`. If the tool exposes no
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "litcodex-ai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.21",
|
|
4
4
|
"description": "Codex loop harness installer. Run `npx litcodex-ai install` to set up the LitCodex Codex platform: the bare `lit` hook and the durable lit-loop runtime.",
|
|
5
5
|
"keywords": ["codex", "litcodex", "lit-loop", "ai-agents", "orchestration"],
|
|
6
6
|
"author": "LitCodex Authors",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": ["bin", "dist", "model-catalog.json", "README.md", "LICENSE"],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@litcodex/lit-loop": "0.3.
|
|
18
|
+
"@litcodex/lit-loop": "0.3.21"
|
|
19
19
|
},
|
|
20
20
|
"bundledDependencies": ["@litcodex/lit-loop"],
|
|
21
21
|
"scripts": {
|