Ecosystem Update - 2026-06-28
Highlights
- No automatic harness Quick Win passed the safety gate today; report/state/backup files were updated, but config, hooks, agents, rules, and skills were not mutated
- Official Codex sources show
0.142.3as the latest stable maintenance patch and0.143.0-alpha.29as today's prerelease; the app-bundled binary is already0.142.3, while PATH still resolves to0.142.1 - OpenAI's skill-installer guidance changed upstream: installed skills are available on the next turn, not after a restart. Both local skill-installer copies still say to restart, but automatic skill-body edits are forbidden by this skill's hard limits
Quick Wins (implemented today)
-
None admitted by safety gate hook/agent-pattern/skill/Codex-mdNo config, hook, agent, rule, or skill mutation was safe enough to apply automatically
New Tools, Skills & Patterns
-
OpenAI skill-installer next-turn guidance skillhttps://github.com/openai/skills/pull/507 - Upstream removed the obsolete "Restart Codex" instruction because Codex refreshes skills between turns. Local copies at
.codex/skills/.system/skill-installer/SKILL.mdand.agents/skills/skill-installer/SKILL.mdstill contain the stale wording. Impact 2 / Effort 1, but explicit direction is required because daily Quick Wins must not rewrite skill bodies -
Codex PATH/app version reconciliation Codex-mdhttps://github.com/openai/codex/releases/tag/rust-v0.142.3 - App-bundled Codex is
0.142.3, PATHcodexis0.142.1, and0.142.3is maintenance-only since0.142.2. Impact 2 / Effort 2. Do as an explicit runtime task with rollback notes and smoke checks -
Stop-time existing profile hook wiring smoke hookhttps://howborisusesclaudecode.com/ and https://github.com/shanraisshan/codex-cli-best-practice - The local
hook_profile.pyalready nameswhat_would_chad_do,codex_review_gate, andcheckpoint_session, and matching scripts exist, buthooks.jsondoes not wire them. Impact 2 / Effort 2. Smoke output shape, cost, and block behavior before wiring globally -
Plugin-era skill catalog posture review skill/pluginhttps://github.com/openai/skills/pull/496 - OpenAI is steering users from the standalone skills repo toward the Plugins directory for skills and apps. Local plugin support and marketplaces are already enabled, so this should be a selective posture review, not a migration
-
Litmus-style metric-spec adapter for eval harnesses research/agent-patternhttps://arxiv.org/abs/2606.23403 -
autoconfigand planning-gate already run evals, but Litmus suggests deriving metric portfolios from code and explicit evaluation intent before choosing measurements. Impact 2 / Effort 2 -
EDV memory-promotion verifier spike research/agent-patternImpact 2 / Effort 2
Research Worth Reading
-
ReM-MoA: Reasoning Memory Sustains Mixture-of-Agents Scaling- Relevant to multi-agent reviewer memory: ranking successful and failed traces before reusing them may improve deeper agent pipelines without raising subagent depth blindly
-
Escaping the Self-Confirmation Trap: An Execute-Distill-Verify Paradigm for Agentic Experience Learning- Strong fit for memory lifecycle work because it explicitly avoids executor-only self-reflection before writing experience
-
Litmus: Zero-Label, Code-Driven Metric Specification for Evaluating AI Systems- Useful for making harness metrics explainable before adding more benchmarks or optimization loops
-
AutoSpec: Safety Rule Evolution for LLM Agents via Inductive Logic Programming- Good research direction for rule false-positive/false-negative analysis; too heavy for automatic adoption
-
Codex Remote reaches general availability- Useful product context, but this local setup already has remote/control plugins and does not need a harness mutation
Considered, Not Adopting
Items reviewed and explicitly declined this cycle, with the reason. Curation discipline matters more than coverage.
- Auto-edit skill-installer wording as a Quick Win — - rejected: it is a small useful fix, but it rewrites skill bodies, which the ecosystem-update hard limits forbid
-
Wire
what_would_chad_do,codex_review_gate, orcheckpoint_sessionintoStopimmediately — - rejected: scripts exist, but wiring them globally changes turn-closing behavior and may add blocking or model-call cost; do a focused smoke task first -
Upgrade or symlink PATH
codexautomatically — - rejected: binary/path changes require explicit rollback notes and smoke tests even when the app bundle is newer -
Adopt
0.143.0-alpha.29globally — - rejected: alpha releases are under-development features; current runtime policy says not to enable them globally - Enable native Codex memories
-
Enable
plugin_hooksglobally — - rejected: expands trust surface without a specific trusted plugin hook need - Install or migrate community skill/plugin catalogs wholesale — - rejected: outside skills require strict audit and a domain-specific need
- Add universal auto-format hooks — - rejected: repo formatters vary; current PostToolUse hooks record verification and failure context without enforcing project-specific formatters
- Adopt AutoSpec/ReM-MoA/EDV wholesale — - rejected: useful research, but each needs a scoped eval or memory-lifecycle spike before changing the live harness