claude-dev-env 2.17.0 → 2.18.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.
- package/.agents/skills/orchestrator/SKILL.md +6 -4
- package/.agents/skills/orchestrator-refresh/SKILL.md +9 -5
- package/.agents/skills/team-advisor/SKILL.md +5 -5
- package/_shared/advisor/AGENTS.md +5 -5
- package/_shared/advisor/advisor-protocol.md +54 -31
- package/_shared/advisor/reference/advisor-block.md +5 -1
- package/_shared/advisor/reference/consult-format.md +1 -1
- package/_shared/advisor/reference/identity.md +28 -0
- package/_shared/advisor/reference/lifecycle.md +8 -1
- package/_shared/advisor/reference/sol-rung.md +12 -7
- package/_shared/advisor/reference/spawn-walk-log.md +6 -5
- package/_shared/advisor/reference/third-party-bind.md +5 -6
- package/_shared/advisor/reference/warm-up.md +9 -2
- package/_shared/advisor/scripts/codex_sol_advisor.py +66 -11
- package/_shared/advisor/scripts/config/advisor_scripts_constants/advisor_route_constants.py +9 -0
- package/_shared/advisor/scripts/config/advisor_scripts_constants/model_tier_run_validator_constants.py +16 -4
- package/_shared/advisor/scripts/config/advisor_scripts_constants/sol_advisor_constants.py +11 -10
- package/_shared/advisor/scripts/model_tier_run_validator.py +50 -23
- package/_shared/advisor/scripts/tests/test_codex_sol_advisor.py +108 -3
- package/_shared/advisor/scripts/tests/test_model_tier_run_validator.py +171 -82
- package/_shared/advisor/scripts/tests/test_tier_model_ids.py +43 -0
- package/_shared/advisor/scripts/tier_model_ids.py +75 -7
- package/_shared/pr-loop/worker-spawn.md +4 -3
- package/docs/references/team-advisor-skill.md +2 -2
- package/package.json +1 -1
|
@@ -121,13 +121,14 @@ preflight/runner classification strings (for example `grok_binary_missing`,
|
|
|
121
121
|
After a grok fallthrough the dispatcher calls `detect_host_profile()` from
|
|
122
122
|
`tier_model_ids` (advisor scripts). Detection order:
|
|
123
123
|
|
|
124
|
-
1. `ADVISOR_HOST_PROFILE` when set — must be `Claude` or `ThirdParty` (any letter case).
|
|
124
|
+
1. `ADVISOR_HOST_PROFILE` when set — must be `Claude`, `Codex`, or `ThirdParty` (any letter case).
|
|
125
125
|
2. `THIRD_PARTY` when truthy — `1`, `true`, `yes`, or `on`.
|
|
126
126
|
3. Default: `Claude`.
|
|
127
127
|
|
|
128
|
-
Profiles are the real names `Claude` and `ThirdParty` (not a separate Grok host
|
|
128
|
+
Profiles are the real names `Claude`, `Codex`, and `ThirdParty` (not a separate Grok host
|
|
129
129
|
profile). Grok is tier 1 on every host; host profile only chooses the post-grok
|
|
130
|
-
branch (Agent-tool handoff vs headless claude chain).
|
|
130
|
+
branch (Agent-tool handoff vs headless claude chain). A Codex profile takes the
|
|
131
|
+
non-Claude branch.
|
|
131
132
|
|
|
132
133
|
## Code-review host routing
|
|
133
134
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|---|---|
|
|
9
9
|
| `skills/team-advisor/SKILL.md` | Sole-consumer bind wiring and constraints |
|
|
10
10
|
| `advisor-tool.md` | Consult timing, hard rule, how to treat advice |
|
|
11
|
-
| `~/.claude/_shared/advisor/advisor-protocol.md` |
|
|
11
|
+
| `~/.claude/_shared/advisor/advisor-protocol.md` | Session identity, host bind, floor, lifecycle |
|
|
12
12
|
| `agents/session-advisor.md` | ENDORSE / CORRECTION / PLAN / STOP |
|
|
13
13
|
|
|
14
14
|
## When to use
|
|
@@ -17,4 +17,4 @@ Follow the call rules in `advisor-tool.md` (orientation first, then consult befo
|
|
|
17
17
|
|
|
18
18
|
## Selected path
|
|
19
19
|
|
|
20
|
-
`/team-advisor` is the repository's advisor implementation. It provides explicit first-consult packets, delta consults, a standing warm reviewer, and a read-only Sol CLI option.
|
|
20
|
+
`/team-advisor` is the repository's advisor implementation. It provides explicit first-consult packets, delta consults, a standing warm reviewer, an in-session Sol spawn on Codex, and a read-only Sol CLI option.
|