Daily
Digest
π¦ OpenClaw
Anthropic News fetch needs review
404 Not Found
Check Anthropic Release Notes
Official changelog/source page to review for changes.
openclaw 2026.4.24-beta.5
## 2026.4.24 ### Highlights - Google Meet joins OpenClaw as a bundled participant plugin, with personal Google auth, Chrome/Twilio realtime sessions, paired-node Chrome support, artifact/attendance exports, and recovery tooling for already-open Meet tabs. -
openclaw 2026.4.24-beta.4
## 2026.4.24 ### Highlights - Google Meet joins OpenClaw as a bundled participant plugin, with personal Google auth, Chrome/Twilio realtime sessions, paired-node Chrome support, artifact/attendance exports, and recovery tooling for already-open Meet tabs. -
openclaw 2026.4.24-beta.3
## 2026.4.24 ### Highlights - Google Meet joins OpenClaw as a bundled participant plugin, with personal Google auth, Chrome/Twilio realtime sessions, paired-node Chrome support, artifact/attendance exports, and recovery tooling for already-open Meet tabs. -
OpenClaw 2026.4.24 beta 2
Beta 2 fixes packaged bundled-plugin runtime mirrors on Windows and other copied-runtime installs so shared package-root dependencies remain resolvable during npm updates. It also keeps future bundled plugins disabled while older hosts perform the updater ste
openclaw 2026.4.24-beta.1
## 2026.4.24 ### Highlights - Google Meet joins OpenClaw as a bundled participant plugin, with personal Google auth, Chrome/Twilio realtime sessions, paired-node Chrome support, artifact/attendance exports, and recovery tooling for already-open Meet tabs. -
openclaw 2026.4.23
## 2026.4.23 ### Changes - Providers/OpenAI: add image generation and reference-image editing through Codex OAuth, so `openai/gpt-image-2` works without an `OPENAI_API_KEY`. Fixes #70703. - Providers/OpenRouter: add image generation and reference-image editi
openclaw 2026.4.23-beta.6
## 2026.4.23 ### Changes - Providers/OpenAI: add image generation and reference-image editing through Codex OAuth, so `openai/gpt-image-2` works without an `OPENAI_API_KEY`. Fixes #70703. - Providers/OpenRouter: add image generation and reference-image editi
OpenClaw 2026.4.23 beta 5
## 2026.4.23 ### Changes - Providers/OpenAI: add image generation and reference-image editing through Codex OAuth, so `openai/gpt-image-2` works without an `OPENAI_API_KEY`. Fixes #70703. - Providers/OpenRouter: add image generation and reference-image editi
fix(ui): remove duplicate config section headers
fix(ui): remove duplicate config section headers Fix duplicate section title and description rendering in single-section Control UI config pages.\n\nKeeps root multi-section card headers intact, keeps single-section hero copy as the only visible section title, and adds browser coverage for both single-section and root views.\n\nFixes #68003.\n\nThanks @d1rshan.
fix(security): bound archive and MIME parser work (#71561)
fix(security): bound archive and MIME parser work (#71561) * fix(security): bound archive and MIME parser work * fix(security): harden zip preflight accounting * fix(plugins): keep update channel sync on bundled path helpers * fix(lint): avoid boolean literal comparisons * fix(lint): keep agent spawn assertion immutable * test(auto-reply): relax slow model directive regression timeout
Introducing GPT-5.5
Introducing GPT-5.5, our smartest model yetβfaster, more capable, and built for complex tasks like coding, research, and data analysis across tools.
GPT-5.5 System Card
Potential impact on Justin/Woz development speed, Codex workflows, model routing, and build automation.
Automations
Learn how to automate tasks in Codex using schedules and triggers to create reports, summaries, and recurring workflows without manual effort.
Top 10 uses for Codex at work
Explore 10 practical Codex use cases to automate tasks, create deliverables, and turn real inputs into outputs across tools, files, and workflows.
Plugins and skills
Learn how to use Codex plugins and skills to connect tools, access data, and follow repeatable workflows to automate tasks and improve results.
Working with Codex
Learn how to set up your Codex workspace, create threads and projects, manage files, and start completing tasks with step-by-step guidance.
Codex settings
Learn how to configure Codex settings, including personalization, detail level, and permissions, to run tasks smoothly and customize your workflow.
What is Codex?
Learn how Codex helps you go beyond chat by automating tasks, connecting tools, and producing real outputs like docs and dashboards.
Check OpenAI Changelog
Official changelog/source page to review for changes.
[codex] Order codex-mcp items by visibility (#19526)
[codex] Order codex-mcp items by visibility (#19526) ## Why The visibility cleanup in the base PR reduced what `codex-mcp` exposes, but several files still made reviewers read private support machinery before the public or crate-facing entry points. This ordering pass makes each file easier to scan: exported API first, crate-visible MCP internals next, then private helpers in breadth-first order from the higher-level MCP flows to leaf utilities. ## What Changed - Reordered `codex-mcp` exports so the runtime, configuration, snapshot, auth, and helper surfaces are grouped by visibility and reader importance. - Moved public and crate-visible MCP items ahead of private helpers in the auth, MCP planning/snapshot, connection manager, and tool-name modules. - Kept the change mechanical, with no behavior changes intended. ## Verification - `cargo check -p codex-mcp`
[codex] Prune unused codex-mcp API and duplicate helpers (#19524)
[codex] Prune unused codex-mcp API and duplicate helpers (#19524) ## Why `codex-mcp` currently exposes more API than the rest of the workspace uses. Some of that surface is simply visibility that can be tightened, and some of it is public helper code that remains compiler-valid because it is exported even though no workspace caller uses it. That distinction matters: Rust does not warn on exported API just because the current workspace does not call it. This PR intentionally treats those exported-but-workspace-unreferenced paths as stale `codex-mcp` surface. The main example is MCP skill dependency collection, where the active implementation now lives in `codex-rs/core/src/mcp_skill_dependencies.rs`; keeping the older `codex-mcp` copy makes it unclear which implementation owns skill MCP installation. ## What Changed - Pruned unused `codex-mcp` re-exports from `codex-mcp/src/lib.rs`. - Removed non-runtime helper methods from `McpConnectionManager` so it stays focused on live MCP clients. - Made `ToolPluginProvenance` lookup methods crate-private. - Removed workspace-unreferenced snapshot wrapper APIs and qualified-tool grouping helpers. - Deleted the duplicate `codex-mcp` skill dependency module and tests now that skill MCP dependency handling is owned by `core`. ## Verification - `cargo check -p codex-mcp`
Enable unavailable dummy tools by default (#19459)
Enable unavailable dummy tools by default (#19459) ## Summary - Mark `unavailable_dummy_tools` as a stable feature and enable it by default - Update the feature registry test to match the new default state ## Testing - `just fmt` - `cargo test -p codex-features`
Fix codex-rs README grammar (#19514)
Fix codex-rs README grammar (#19514) ## Why Issue #19418 points out a small grammar issue in `codex-rs/README.md` under "Code Organization." The current sentence says "we hope this to be," which reads awkwardly. Fixes #19418. ## What changed Updated the `core/` crate description so the sentence reads "we hope this becomes a library crate." ## Verification Documentation-only change. Reviewed the Markdown diff.
Split approval matrix test groups (#19454)
Split approval matrix test groups (#19454) ## Why Recent `main` CI repeatedly timed out in: - `codex-core::all suite::approvals::approval_matrix_covers_all_modes` It failed in runs [24909500958](https://github.com/openai/codex/actions/runs/24909500958), [24908076251](https://github.com/openai/codex/actions/runs/24908076251), [24906197645](https://github.com/openai/codex/actions/runs/24906197645), [24905823212](https://github.com/openai/codex/actions/runs/24905823212), [24903439629](https://github.com/openai/codex/actions/runs/24903439629), [24903336028](https://github.com/openai/codex/actions/runs/24903336028), and [24898949647](https://github.com/openai/codex/actions/runs/24898949647). The failure pattern was a 60s Linux remote timeout. Logs showed many approval scenarios completing before the single matrix test timed out. ## Root Cause `approval_matrix_covers_all_modes` packed every approval/sandbox/tool scenario into one test case. That made the test vulnerable to normal CI variance: one slow scenario or a slow process startup could push the whole monolithic case past the 60s per-test timeout. It also hid which part of the matrix was slow because the runner only reported the one large matrix test. ## What Changed - Keep the shared `scenarios()` table as the single source of approval matrix coverage. - Use one `#[test_case]` per `ScenarioGroup` to generate five async Tokio tests: danger/full-access, read-only, workspace-write, apply-patch, and unified-exec. - Keep the group runner small and add per-scenario error context so a failure still reports the specific scenario name. ## Why This Should Be Reliable Each scenario group now has its own test harness timeout instead of sharing one timeout window with the full matrix. That removes the long sequential loop from a single test while keeping the implementation compact and easy to scan. The tests still run through the same scenario definitions and runner, so this preserves coverage. `test-case` already composes with `#[tokio::test]` in this crate and is already available for test code. ## Verification - `cargo test -p codex-core --test all approval_matrix_ -- --list` - `cargo test -p codex-core --test all approval_matrix_`
Claude Code updates
Search feed to scan for recent high-signal videos. Prioritize demos, workflows, release breakdowns, and operator lessons.
OpenAI Codex CLI workflow
Search feed to scan for recent high-signal videos. Prioritize demos, workflows, release breakdowns, and operator lessons.
AI agent automation systems
Search feed to scan for recent high-signal videos. Prioritize demos, workflows, release breakdowns, and operator lessons.
Claude new model update
Search feed to scan for recent high-signal videos. Prioritize demos, workflows, release breakdowns, and operator lessons.
OpenAI developer updates
Search feed to scan for recent high-signal videos. Prioritize demos, workflows, release breakdowns, and operator lessons.
Codex Build Command Center
The AI tooling stack is changing fast; Marcell needs buildable leverage, not passive news.
Agent Upgrade Sprint
The AI tooling stack is changing fast; Marcell needs buildable leverage, not passive news.
AI Tooling Intelligence Product
The AI tooling stack is changing fast; Marcell needs buildable leverage, not passive news.
Claude Code Workflow Lab
The AI tooling stack is changing fast; Marcell needs buildable leverage, not passive news.
YouTube-to-Agent Training Pipeline
The AI tooling stack is changing fast; Marcell needs buildable leverage, not passive news.
No digest items yet. The research agent runs every 6 hours.