devlyn-cli 1.12.3 → 1.12.4
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.
|
@@ -42,9 +42,13 @@ This pipeline runs hands-free. The user launches it to walk away and come back t
|
|
|
42
42
|
Flags can be passed naturally: `/devlyn:auto-resolve fix the auth bug --max-rounds 3 --skip-docs`
|
|
43
43
|
Engine examples: `--engine auto`, `--engine codex`, `--engine claude`
|
|
44
44
|
Codex examples (legacy): `--with-codex` (both), `--with-codex evaluate`, `--with-codex review`
|
|
45
|
-
If no flags are present, use defaults.
|
|
45
|
+
If no flags are present, use defaults. **The default engine is `auto` — if the user does not pass `--engine`, treat it as `--engine auto`.**
|
|
46
46
|
|
|
47
|
-
3. **
|
|
47
|
+
3. **Engine pre-flight** (runs unless `--engine claude` was explicitly passed):
|
|
48
|
+
- The default engine is `auto`. If the user did not pass `--engine`, the engine is `auto` — NOT `claude`.
|
|
49
|
+
- Read `references/engine-routing.md` for the full routing table.
|
|
50
|
+
- Call `mcp__codex-cli__ping` to verify the Codex MCP server is available. If ping fails, warn the user and offer: [1] Continue with `--engine claude` (fallback), [2] Abort.
|
|
51
|
+
- Exception: if `--engine` is not set AND `--with-codex` is explicitly enabled (legacy), read `references/codex-integration.md` instead and run its pre-flight check.
|
|
48
52
|
|
|
49
53
|
4. Announce the pipeline plan:
|
|
50
54
|
```
|
|
@@ -30,9 +30,12 @@ Parse these from the user's invocation message:
|
|
|
30
30
|
- `codex`: Codex handles FRAME/EXPLORE/CONVERGE/DOCUMENT, Claude runs CHALLENGE (role reversal — builder and critic are always different models).
|
|
31
31
|
- `claude`: all phases use Claude. No Codex calls.
|
|
32
32
|
|
|
33
|
-
**
|
|
33
|
+
**Engine pre-flight** (runs unless `--engine claude` was explicitly passed):
|
|
34
|
+
- The default engine is `auto`. If the user did not pass `--engine`, the engine is `auto` — NOT `claude`.
|
|
35
|
+
- Call `mcp__codex-cli__ping` to verify the Codex MCP server is available. If ping fails, warn the user and offer: [1] Continue with `--engine claude`, [2] Abort.
|
|
36
|
+
- Also read `references/challenge-rubric.md` up front. The engine routing table is defined in the auto-resolve skill's `references/engine-routing.md` under "Pipeline Phase Routing (ideate)".
|
|
34
37
|
|
|
35
|
-
**If `--engine` is not set and `--with-codex` is set** (legacy): read `references/challenge-rubric.md` and `references/codex-debate.md` up front, then run the pre-flight check described in `codex-debate.md` to verify the Codex MCP server is available before starting the pipeline. If the server is unavailable and the user opts to continue without Codex, the solo CHALLENGE pass still runs — only the cross-model rubric pass is disabled.
|
|
38
|
+
**If `--engine` is not set and `--with-codex` is explicitly set** (legacy): read `references/challenge-rubric.md` and `references/codex-debate.md` up front, then run the pre-flight check described in `codex-debate.md` to verify the Codex MCP server is available before starting the pipeline. If the server is unavailable and the user opts to continue without Codex, the solo CHALLENGE pass still runs — only the cross-model rubric pass is disabled.
|
|
36
39
|
|
|
37
40
|
<why_this_matters>
|
|
38
41
|
When ideas flow directly from conversation to `/devlyn:auto-resolve`, context degrades at each handoff:
|
|
@@ -52,7 +52,9 @@ Parse from `<preflight_config>`:
|
|
|
52
52
|
Example: `/devlyn:preflight --phase 2 --skip-browser`
|
|
53
53
|
Example with engine: `/devlyn:preflight --engine auto`
|
|
54
54
|
|
|
55
|
-
**
|
|
55
|
+
**Engine pre-flight** (runs unless `--engine claude` was explicitly passed):
|
|
56
|
+
- The default engine is `auto`. If the user did not pass `--engine`, the engine is `auto` — NOT `claude`.
|
|
57
|
+
- Call `mcp__codex-cli__ping` to verify Codex MCP availability. If ping fails, fall back to `--engine claude` with a warning.
|
|
56
58
|
|
|
57
59
|
## PHASE 0: DISCOVER & SCOPE
|
|
58
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devlyn-cli",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.4",
|
|
4
4
|
"description": "AI development toolkit for Claude Code — ideate, auto-resolve, and ship with context engineering and agent orchestration",
|
|
5
5
|
"homepage": "https://github.com/fysoul17/devlyn-cli#readme",
|
|
6
6
|
"bin": {
|