Skip to content
B Bloger.fm

Product / OpenAI

Codex

OpenAI's software-engineering agent, which runs in the terminal, the IDE and the cloud.

Codex was recorded in 77 items across 8 of the 8 briefings in the current window. That makes it the 4th most covered.

Its share of coverage was steady: 19 items in the first half of the window and 58 in the second, tracking the feed as a whole, which grew about 2.2×.

It appeared most often alongside Claude Code, Cursor and OpenAI.

Tracking the feed
items
77
briefings
8
mentions
175
last seen
2026-09-19

Coverage timeline

Sat 12 Sept – Sat 19 Sept / 8 briefings

Everything recorded

19 September 2026 14 items

i'd assume they're going to launch more models next week. which is: > gpt-6 sol > gpt-6 luna and save codex bot, and other fun stuff for devday

@thsottiaux

We were working on the keynote today with @romainhuet and @sama and most of the fun was trying to figure out how to explain it all to you because there is so much good stuff in there that it's a bit ridiculous all in quick succession. > We'll have some things next week already to not keep you waiting so long, but very excited to show you all new things we've been working on and how it will all come together in the coming months.

Working on exactly this! Check out Agent Skills API and other things we launched lately on @NotionHQ

@rileybrown

I need agent portability... > My weekend project is to centralize all my skills, plugins, and keys, so that it's seamless to switch from one agent platform to another. (Codex, GrokBot, Claude Code, Muse, and more). > I will be testing all the platforms that allow you to do that this weekend, and that is the one I'll use for my business. > Will make video on this next week.

here is why Jev is essential for any harness you might be using → three question types: choice, score, and a yes/no called noul → ModelRouterMiddleware: Jev picks the least costly model that can do the step → AutoModeMiddleware: Jev scores every bash call before it runs and blocks the risky ones → the same trick Claude Code and Codex run with private classifiers, now a pip install → 200x faster and 400x cheaper than an LLM on classification their own line: "Agents are still inherently untrustworthy." so they put a second model in the loop whose only job is to judge the first one, in milliseconds.if this scales, every harness ships with reflexes.

What's your go-to coding agent? We've released Flutter AI plugins for Antigravity, Claude Code, Cursor, Codex, and more 🚀 These plugins bundle the tools and knowledge an AI assistant needs to understand and modify your Flutter codebase. Get started:

So OpenAI accepts that their SOTA frontier models “suck at design” 😂

@Voxyz_ai

If you still think Sol and Astra suck at design, try this: > “Use imagegen to reimagine this page, then implement it.” > Codex now has 𝗜𝗺𝗮𝗴𝗲𝘀 𝟮.𝟱 built in, the strongest image model available today. Let it create the visuals first, then have Sol or Astra implement them. > Many of the 3D game scenes, characters, and animations shared in posts are built around this same approach.

让 AI 润色技术文档,最怕它为了“去 AI 味”把事实、归因和限制条件给抹了。 新开源的 Jev Humanize Writing 提供了一套实用的防御机制。它本身不直接生成正文,而是一个配合 Claude Code / Codex 使用的 Agent 写作技能 + Python 校验工具。 其核心工作流是“宿主生成候选稿 + Jev 强制校验”: • 防篡改保护:支持传入保护词 JSON,锁定数字、引语和专有名词,保证 AI 润色时原封不动。 • 保留边界与语气:严格守住“初步判断”、“尚未独立验证”等定语,防止模型把严谨结论擅自改写成绝对化的空泛宣传。 • 结构化比对:对多份改稿进行语义诊断并输出 Noul/Score 指标,最终交由宿主逐句复核,而不是盲目覆盖原稿。 • 极简依赖:仅需 Python 3.10+ 标准库,无需 pip install。私密稿件可直接使用纯本地离线模式。 这个工具解决的不是“如何绕过第三方 AI 检测”,而是真正的编辑痛点——在消除机械排比和多余铺垫的同时,确保技术说明、工作邮件和个人笔记的信息密度与立场零损耗。 #jev 🔗 仓库地址:

同时跑三四个 Agent,每个占一个终端窗口,谁做到哪一步得挨个切过去看,同事想插句话都没地方插。 Cumora 是 yetone 做的一个团队聊天 AI 工具,Agent 和人在同一个通讯录里,能私聊、能拉群,看板和日历也是共用的。 Agent 在里面不是问一句答一句,每个有自己的人设和记忆,会主动认领看板上的任务,还能收发真实的邮件。 GitHub: 几个 Agent 在一个群里不会互相踩,一条回复如果基于的是过时消息,服务器会先扣住,让它看完新消息再决定发不发。 任务认领也是原子的,一件事只归一个 Agent,不会两个同时上手改同一处。 大脑有两种接法,用官方云端跑,或者在自己的 Mac 或服务器上配一条命令,让本地的 Claude Code、Codex、Gemini CLI 来当脑子,本地引擎认 10 种。 后一种密钥留在自己机器上,不经过服务器。有桌面版、网页版,iOS 在 TestFlight 测试,代码全开源,自己部署要准备 Postgres 和 Redis。 想让手上这几个 Agent 像同事一样在一个群里配合的,这个形态我觉得顺,自己只管盯着群聊就行。

随便跑来源不明的 Agent Skill 和 MCP 配置,等同于在本地裸奔。如何在安装前,安全审查它们有没有偷走凭据? 开源新工具 jev-security-scan 提供了「零执行」的审查方案。它结合本地静态检查与 TypeSafe Jev,在不启动服务、不安装依赖的情况下,提前扫出代码里的隐蔽行为。 主要特性: • 拒绝“下载即中招”:只读取目标文本、配置和脚本,完全不执行目标代码,从根本上防止触发恶意安装钩子。 • 精准抓取证据:若发现窃取 SSH 私钥、提示词注入或越权外传,会直接输出具体文件、行号与脱敏后的代码段。 • 极简无依赖:仅依赖 Python 3.10+ 标准库,连 pip install 都省了,天然支持作为 Codex 或 Claude Code 的 Skill 直接调用。 • 双模式切换:高敏感项目可使用 local 纯离线静态检查;常规项目开启 jev 模式进行深度语义分析。 对于经常折腾各种开源 Agent 扩展的开发者,在运行新框架前,用它过一遍“X光”是非常实用的防线。

Last Codex reset landed exactly a week ago

@thsottiaux

Reset all propagated. Sweet dreams.

Codex的内置浏览器支持导入插件、Cookie了... 基本算一个完整的浏览器了,那做三方浏览器的创业团队来说,不是好消息。

Omnara is now available over MCP MCP joins the @omnaraai API, SDK, and CLI. Connect Claude Code, Codex, Cursor, or any MCP client and spin up production-grade agents

truncated at source

I pushed pretty hard on one particular complaint after the GPT-6 Astra rollout: Plus users felt overlooked because they got almost nothing new in Chat itself, only a small taste of GPT-6 Astra through Codex and ChatGPT Work. Those posts clearly reached OpenAI. I noticed several people there saw them, and some employees even liked them. Now they’ve started vagueposting about something related specifically to Chat, not Work or Codex again. My current read is that they may be preparing one of three things: → a Chat-specific model variant → a new routing / model tier for Chat → a broader rethink of the Chat experience itself And there’s another reason I’m paying attention: Tibo was replying to Matthew Berman, someone I consider pretty reliable and who regularly gets to test things early. So no, I’m not treating this as confirmation yet. But I definitely don’t think they’re talking about “Chat” for no reason. And if you’ve followed me for a while, you know I rarely drop an issue after one post. If somethin

Jev 有意思的一点是,它既是模型,也很像一个给大模型调用的工具。以后模型和工具的边界可能会越来越模糊。

@0xLogicrw

昨天整理了 14 个 Jev 项目,@yangyi 开玩笑说:「让 Codex 一个 goal 跑个 Jev 导航站。」 > 我真的让 Codex 去跑了,现在导航站已经上线: > 而且增加到 130+ 个 Jev 项目。后面还挂了 GitHub Actions,每 12 小时自动扫一次新项目。 > 拿到 Jev API 还不知道怎么玩的,可以直接进去抄思路。 > 如果你也做了 Jev 项目,欢迎提 PR / Issue,我继续往里补。

truncated at source

A significant benefit is the ability to compare different agents and models when performing the same task. While performance is important, cost is also a crucial factor. Identifying a model that achieves the desired outcome at a considerably lower price point provides the kind of adaptability required by users of artificial intelligence.

@quxiaoyin

We just launched Agentsky @agentsky_dev, world’s 1st Agent Market! OpenRouter is for models. AgentSky is for agents. > Use 40+ agents—Claude Code, Codex, OpenCode, Hermes, Pi in your browser(even your phone!) or via one API. All without installing or setting up anything. > Hit Codex Astra’s weekly limit? Hand off to another agent such as OpenCode + DeepSeek V4.1 in browser without losing any context. > You can compare any agent + model directly in browser and that's how I found Astra costs $5.3 while deepseek v4.1 cost $0.12 on the same dashboard task. (I actually preferred deepseek) > Try it at

18 September 2026 17 items

Appshots: my favourite Codex feature is now on Windows too! They go beyond just a screenshot and grab all the other relevant app metadata and text too. Appshot away with ⌘ + ⌘ on Mac or Alt + Alt on windows

@ChatGPT

One of the most underrated features in the ChatGPT desktop app: Appshots. > Appshots take the context on your screen and bring it into the desktop app, allowing you to share instead of describe. > You’ll be surprised at how useful it is. > To get started, press both Command keys on macOS, or both alt keys on Windows.

口喷剪辑时代来临,牛逼👍

@gengdaJ

把我珍藏已久的好东西分享给家人们,剪映11.4.2开源!!!🥳🥳🥳 > 配套神级Skill: > 只需要简单提示词,口播类视频,全程托管给Codex,不需要任何人类操作。 > 即使略微失误,由于调用豆包ASR,片段被切割到毫秒级别,导入剪映草稿也可以人工丝滑调整😋 > 放一个原本8分钟,剪辑后3分钟,完全由Codex+yichen-jianying-edit Skill自动剪辑完成的,前后视频对照,以及提示词截图👇 > 整个剪辑流程可能需要花费的地方: 1.Codex Token费用,可以用别的便宜模型平替,比如Workbuddy免费的hy3和DeepSeek-V4.1-Flash。 2.豆包ASR,一小时八毛钱,说实话,不能再便宜了。。。

You handle the reps. Codex handles the repo. Talk to the voice agent in Codex, powered by GPT-Live-1.

@cdngdev

you can use codex voice from your phone now, connecting to your computer from anywhere!! > @axbehr and i got to star in this new codex ad, showing how much you can get done while working out. > btw, this is powered by the new gpt-live-1

OpenAIのAIエージェント「Codex」のデスクトップアプリで、Codexのより詳細な利用状況を確認できるようになりました(設定→使用状況と請求→利用状況分析)。

@OpenAIDevs

Get more visibility into your usage. > See how tasks, subagents, and individual chats contribute to your Codex usage, so you can make more informed choices about your workflow.

Modern Web Guidance v0.0.187 brings new and updated guides and Codex plugin support → ✨ New guides: progress rings, scrollspy nav menus, loading spinners 📝 Updated guidance to avoid bfcache breakage and unwanted inline layout gaps 🔌 Added plugin manifest support for Codex

跟 Claude Code 说「这个项目用 pnpm」,隔天新开会话它又拿 npm 装一遍,同一句纠正一周说三次,说到最后自己都烦。 于是找到 claude-reflect 是个 Claude Code 插件,专治 Agent 失忆问题。会话里每次纠正它、夸它做对了、或者说一句「记住:」,钩子都会自动捕捉下来排进队列。 跑一下 /reflect,它把队列里这批列成一张表,一条条给我们过,采纳、改一改再采纳、或者跳过,确认的才写进 CLAUDE.md 文件,以后每个会话都带着。 GitHub: 写的目标不止全局那份,项目里的 CLAUDE.md、子目录的、还有 AGENTS.md 都认,用 Codex、Cursor 的也能吃到同一份纠正。 v2 加了个 /reflect-skills,回头翻过去两周的会话记录,发现「看下我今天的效率」这类话反复问了十几次,就建议做成一条命令,草稿直接生成。 纠正用中文说也能识别,靠一层 AI 语义过滤兜底,英文关键词没匹配上也不会漏。每条带置信度,写进去前都要过人工这关,不会偷偷往配置里塞东西。

录完视频,剩下的多机位导播、加字幕和跨平台发布,现在可以全部丢给 Claude Code 处理了。 VibeTube 是一个开源的 macOS 录屏工具。它的核心逻辑非常纯粹:“你只管录,AI 负责剪辑和发布”。工具会将同步好的屏幕和摄像头素材,直接交给本地运行的 Claude Code 或 Codex 进行自动化后期。 • AI 自动导播:无需手动打轴,AI 代理会根据你的讲解内容,自动完成镜头选择与机位切换(全尺寸人像 / 屏幕录制 / 画中画),并配上字幕与音效。 • 内置影音增强:集成 NVIDIA Studio Voice NIM (48k-hq) 消除房间混响与底噪;利用 MatAnyone2 (Apple Silicon) 直接在本地完成背景替换。 • 零干预发布:AI 会读取最终的成品字幕,生成 5 种不同视角的备选标题以及带真实时间戳的 YouTube 章节描述,最后直接推送至 YouTube、TikTok 和 Reels,全程无需打开浏览器。 适用限制与门槛: 目前仅支持 macOS 环境。需本地安装 Node.js 22+ 与 ffmpeg,并自备对应的 CLI 工具与 API 密钥(Claude/Codex、NVIDIA Studio Voice 及 Upload-Post)。

OK, this is a big deal: 3 researchers used Claude Opus 5 to turn an image upload bug into an OpenAI employee account takeover, then had the compromised employee’s Codex open a PR in OpenAI’s internal monorepo. Their entire hacking cost less than $3000 in tokens. Opus 4.8 struggled with the exploit. Then Opus 5 dropped and cracked it within hours. AI-powered cyberattacks are becoming common and cheap. The best defense is to put the best AI in the hands of defenders too.

Okay, Codex Spark had a good run. But be honest, we are all thinking the same thing now. GPT-6 Sol Spark. Or somehow, Astra Spark. That is the Spark I would come back for.

@thsottiaux

Next week we’ll be retiring GPT-5.3-Codex-Spark. Can you believe we shipped a model named as such!! > It's had a good run and was a lot of fun, but usage has been declining and we have significantly better models now. Time to make room for the future.

Cursor launched this Then Claude Codex when?

@bcherny

Projects are how I write a lot of my code these days. Really excited for everyone to try the new experience! Rolling out now

This is insane! Codex Remote Control for Apple Watch:

让 AI Agent 操作浏览器,难点不在“能不能点”。 更关键的是,如何复用已经登录的真实会话,又不打断你正在使用的窗口。BrowserSkill 在 Agent 与浏览器之间加入本地桥接:Agent 调用 bsk CLI,本地 daemon 把任务交给扩展,再在独立 Agent Window 中执行。需要时也可借用现有标签页,是否允许借用和请求人工协助,都由扩展设置控制。 它可接入 Cursor、Claude Code、Codex、OpenClaw 等能执行 shell 的 Agent,还提供 DeepSeek Harness 插件、远程浏览器配对和可重复的能力评测。适合想把真实登录态、浏览器自动化与 Agent 工作流接起来,同时保留交互边界的开发者。

cool if true

@mark_k

OpenAI is close to releasing their answer to Grok Bot: a product I'll tentatively call Codex Bot, based on OpenClaw. This is what OpenClaw founder Peter Steinberger worked on after being hired by @OpenAI. > Release was planned for this week, but was postponed to next week instead.

truncated at source

CLAUDE CODE, CURSOR AND CODEX CAN NOW LICENSE A DATASET OVER MCP, IN THE MIDDLE OF A TASK • @LuelCompany Data Platform > Your agent browses and licenses rights-cleared datasets directly, with no procurement thread: > It speaks MCP, so any MCP client reaches the same catalog the same way. > Every set clears Luel's QA pipeline before it ever appears in that catalog. • the other half of the marketplace > Anyone sitting on a dataset can submit and sell it through the same workflow and the same QA. > The catalog opens with their most requested sets and keeps updating. > 850,000 contributors across the network are what makes that coverage exist at all. Buying data used to mean a licensing review and a sample that lands weeks later -> now it is a tool call inside the task you were already running. The first data marketplace where the buyer is the agent ↓

@LuelCompany

The Luel data marketplace is becoming agent-native. > Buying data is still one of the s

Tibo says what we get at DevDay is enough to make someone switch back to Codex. Its probably: - GPT-6 Sol/Luna (this is coming earlier) - OpenAI’s personal assistant, codename “Aeon”. - more! Cant wait for it so much

@thsottiaux

@vlinx_soft See you at DevDay

🚀 Codex CLI 0.155.0 is out! 🎙 Experimental /voice with live transcripts and mic controls 🧠 Live reasoning summaries and turn timestamps in status row 🔐 Touch ID for MCP requests on Mac Changelog:

Edits video files locally using AI coding agents like Claude Code, Cursor, and Codex with 39 FFmpeg-based tools.

17 September 2026 11 items

Can it write? Who cares. Everything writes now. The real question is whether it gets the situation well enough to help me write something I’d actually hit send on. That’s what made Tonebird interesting to me.

@MeredithCheng22

I raised $13M pitching a proactive agent. The demos impressed rooms. But the product wasn’t becoming part of anyone’s day. that was painful to admit. > I had to let go of (my ego) and needing the idea to sound fancy. i stopped asking, “What can’t Codex or @bot do?” and started paying attention to what people were struggling with in their everyday work. > Messages kept piling up across WhatsApp, iMessage, and email. Keeping up meant digging through old threads, switching apps, and worrying about tones. > Something so small was taking up so much time,energy, and headspace(for me, messages and scheduling eating up 50%+ of my day). > So I built ToneBird for it. Launching today ↓

Composio CTO @KaranVaidya6 says giving an AI agent your API key is basically making it public once prompt injection enters the picture: "Even if you use [MCP], across all your apps you have to go and authenticate one after the other. If you use Codex, if you switch to ChatGPT, Claude Code, you'll have to do it all over again." "In some cases where MCPs don't exist, you have to literally share the API keys to the agent, which is definitely not secure. It's kind of giving your API key to public." "At some point the agent will find some link which will have prompt injection, and you'll be in a bad place where your key is gone and all your data is public." "We launched Shared Connections where you can share, let's say, an analytic software across the team, or DataDog for debugging, so you don't have to share one password or API keys to every single person." @composio

AIsa,一个专门给 Agent 接外部数据的平台,一个密钥就能调 5000 多个 API。 支持直接调用 Similarweb、Ahrefs、X、Reddit、YouTube、抖音、知乎、小红书等平台的数据。 其中 Similarweb 走的还是官方授权的 API,数据来源靠谱,费用按调用量算,用多少付多少。 地址: 接入非常简单,在控制台复制一段提示词,粘贴到 Claude Code、Codex 等 Agent 工具发送即可使用。 手头有产品要调研、要做 SEO 优化,或者想让 Agent 能拿到各大平台数据的朋友,可以接上试试。

Introducing the Knowledge Base MCP. Greptile maintains a detailed knowledge base of how every part of your codebase works, as well as a history of past incidents. Starting today coding agents like Codex, Claude can access the Knowledge Base via Greptile's MCP, so they can use Greptile's learnings to write better code.

OpenAI is close to releasing their answer to Grok Bot: a product I'll tentatively call Codex Bot, based on OpenClaw. This is what OpenClaw founder Peter Steinberger worked on after being hired by @OpenAI. Release was planned for this week, but was postponed to next week instead.

Union Alpha is now in Codex!! The speed is insane over 300 to 400 tokens a second, 262k context, images in, and it's free for a week. It's a good timing too, most of the Codex usage is basically gone right now. Zai did this exact thing in August: Ox Alpha showed up unnamed, free for a week, built for agentic coding, and a week later it was GLM-5.3-Flash. So what model do you guys think it is?

@opencode

Union Alpha (stealth model) is free for the next week > - no data training - built for agentic coding - supports images > let's see what you can do

让 Claude Code 等 AI 编程 Agent 在独立分支并行跑,断开 SSH 也不中断。 Rove 是一个专为 AI 编程 Agent 开发的终端复用器,直接解决了单线运行 Agent 霸占终端、容易改乱当前代码的痛点。 核心差异点: • Git 级隔离:每个任务自动挂载独立的 Git worktree 和分支,跑多个重构或修复任务互不覆盖。 • 会话持久化:类似 tmux,关掉 TUI 甚至 SSH 掉线,后台的 Agent 和 Shell 会话依然存活,随时重连恢复。 • 可编程接入:原生提供 rove api,支持用脚本(或让 Agent 自己)创建任务、检查 diff 并自动合并分支。 目前支持 Claude Code、Codex、Copilot 及自定义 CLI。依赖 Bun (≥ 1.3.11) 运行,纯终端原生体验,非常适合开发机和 VPS 工作流。

GPT Luna has now 'Ultra' mode in Codex

Someone at GitHub just released Spec Kit, which solves one of the biggest problems with vibe coding by making agents create a full specification before touching any code, already getting massive attention. → /constitution sets rules and standards, /specify defines what to build, /clarify resolves doubts → /plan handles architecture and tech stack, /tasks generates ordered implementation, /implement executes → Works with Claude Code, Cursor, Copilot, Codex, Gemini CLI and more → Open source, built by GitHub Repo link:

Manages AI coding agent skills for Obsidian across Claude Code, Cursor, Codex, Windsurf, and 17 other tools.

truncated at source

You can now train and run 500+ models locally with our Unsloth Docker image! 🐳 Use our new GUI or notebooks workflow. No setup required. Works on NVIDIA and AMD. Guide: GitHub:

@UnslothAI

Introducing Unsloth Desktop 🦥 The first desktop app to run and train models locally. > • Open-source. Runs on Mac, Windows and Linux • Supports MLX, diffusion image/video, audio, GGUF • Connect Claude Code and Codex to local LLMs • 50% more accurate, self-healing tool calls + sandboxed code exec • Works for CPU + multiGPU setups - NVIDIA, AMD, Intel, Mac • Train models 2× faster with 70% less VRAM • Private web search, deep research, RAG, MCP and exports (NVFP4, GGUF) • Use Unsloth’s OpenAI-compatible API and cloud models • Securely deploy LLMs remotely and access anywhere > Unsloth Desktop is now available on and GitHub. > GitHub:

16 September 2026 16 items

We heard you loud and clear 🔊 Introducing the official Unity plugin for @OpenAI’s Codex - a first-party integration available now directly in OpenAI’s universal plugin directory. Developers are already using OpenAI’s Codex with Unity, but now with our official plugin, your agent gets direct engine expertise written and maintained by Unity’s own engineers. 🔗 Get started:

这个开源项目增长的有点太快了,昨天开源的,今天已经4600个Star了,果然,和做视频相关的,尤其是爆款复刻的,大家还是很关注啊。 Github地址放评论区了

@AI_Jasonyu

兄弟们,如果你做自媒体,请记住,热点一定得抓!! > 上周我做的孙割的视频,X上140万播放,全网至少几千万的播放,就是因为抓住了热点,然后快速执行,才会有大的流量,哪怕视频的质量一般。 > 那次的制作我大概花了1个半小时,期间有非常多的博主都在搬运我的视频,甚至数据高出我大半截。 > 这些博主真的从来没有想过自己去做吗?可能想过,但又觉得慢,就直接下载照搬。。。 > 但以后,这种照搬,在X上只会给我打工,让我获得更多的原创收益。 > 其实他们完全有方法去按照我的视频区做复刻的,没那么难,越是爆款,越容易复刻,现在Agent这么🐂对吧? > 刚好最近,我就在研究怎么复刻爆款的结构,挖到了一个开源神器:Hypit。 > 这个工具是专门给 Claude Code、Codex 这类 AI Agent 用的开源视频系统,之所以说是系统,是他的底层包含了很多,可以拆脚本、文案、转场这些,还具备很强的剪辑功能。 > 使用起来,也确实比较简单,直接跟你的Codex讲一句:/Hypit,帮我复刻这个视频 > 剩下的也就直接搞定了,视频中连特效、B-roll、字幕、配音这些都是有的。 > 你们可以看看我复刻的街头访谈视频。👇

I ran AI code reviews on every PR in my repo this week. Paid for with my Codex subscription. Most review tools bill per run, so you cap them and only point them at a few PRs…Take the token cost out and you’ll always run them. The tool that finally made that possible is Vorflux: - One model plans and build - A model from a different lab reviews it against a fresh context - The model that writes the code is never the one that approves it - Two rival labs checking each other’s work on your task. I just recorded one PR it did to show you how fast and easy it was. It also plans, builds, and tests across your whole stack the same way, on a real cloud machine, end to end. The craziest part? The PR shows up with a recording of the thing working. I opened it, watched it run, and merged.

Woow It launched 14 sub agents in parallel with GPT-6 Pro and ran for 165 minutes, more than two and a half hours , I specifically told it to launch completely independent and impartial judges, and if the final score was below 9.5, it had to start another round of research agents, auditors, and correctors until the result improved, and the craziest part is that it didn’t use any of my Codex limits, It basically feels unlimited,I’m going to run a lot more exhaustive tests and share all the results with you guys

@SPAC89

🚨This might be the biggest ChatGPT update since it launched, You can now launch multiple agents directly from the normal ChatGPT chat using GPT 6 Astra Pro, basically at no extra cost since the limits are almost unlimited, This means we can save a ton of our separate Codex usage too, I’m testing it heavily right now to see just how many agents I can run in parallel on the Pro x20 plan, Enjoy!

🚨This might be the biggest ChatGPT update since it launched, You can now launch multiple agents directly from the normal ChatGPT chat using GPT 6 Astra Pro, basically at no extra cost since the limits are almost unlimited, This means we can save a ton of our separate Codex usage too, I’m testing it heavily right now to see just how many agents I can run in parallel on the Pro x20 plan, Enjoy!

OpenAI is preparing a Codex Replay feature that lets users test task execution from any imported conversation thread. > "Start an independent Codex Replay controller on an available loopback port. In both Codex Desktop and Codex CLI, prefer an available Codex in-app browser and otherwise use your system browser." > "Select one or more historical Claude threads, choose shared Codex models, and start their isolated implementations. Historical state and configuration are detected separately for each thread, with details available when needed." > "View finished comparisons individually or in aggregate while remaining threads continue. Available GPT-5.6 Sol, Terra, and Luna models are selected by default." > "Multiple replay sessions can run in parallel. Selection, execution, verification, evaluation, and results stay in the browser controller instead of a guided chat workflow."

一个需求下去,Agent 一口气动了十几个文件,改动一行行翻过去,到底牵连了哪几个模块看不出来,合并了才发现碰到别处。 Birdview 的做法是改代码之前先给项目画一张架构地图,标出这次准备碰哪些模块,再让 Agent 在这张图看得见的情况下动手。 地图上每个模块有固定编号、归属的文件和对应的源码证据,模块之间的关系也画出来,每一条都能追到源码。 GitHub: 生成的是一个独立 HTML,不用起服务,3 个视图切着看,完整架构、这次改了什么、改前改后并排对照,改动范围一眼扫完。 装成 Skill 后默认自动介入,每次改代码前先复用或更新地图,声明涉及的模块,也能切成按需模式只在要求时才画。 它记任务时把「完成」和「检查通过」分开,Agent 说做完了不算,只认记录下来的检查结果。这思路跟前几天分享的 open-steps 一路,都是不信 Agent 的自述。 Codex、Claude Code 都能装,界面中英文都有。项目大了、不放心 Agent 闭着眼改的,可以拿它先看一眼再动手。

用 AI 做安卓 App,界面全靠嘴说,顶上搜索栏、底下三个标签页,做出来跟脑子里那张图对不上,来回改三轮还在调位置。 M3E Canvas 换了个顺序,先在浏览器里把界面拖出来,再把这张图变成一段提示词,复制给 Claude Code、Codex 或 Cursor 去做。 组件全按 Material 3 Expressive 画,按钮、导航栏、卡片、对话框、搜索栏这些拖进屏幕就行,两个按钮靠近会自动吸成一组,圆角跟着融合。 GitHub: 屏幕可以加很多张,给按钮设一个目标屏幕和过渡动画,画布上就画出跳转箭头,预览里能真的一路点过去,返回时动画倒着放。 预览能点着走这点,我看比出图本身有用,流程顺不顺点两下就知道,不用等 Agent 做完了再发现。 主题在一个面板里调,七套配色或者给一个基准色生成整套,浅色深色、圆角方角一键切换。 屏幕在 412×892 的手机和 1280×800 的桌面之间也能切,导航栏自动变成侧边栏。 提示词支持中英日韩四种语言,目标平台选 Android 或 Web,自己写的组件行为说明也会带进去。全部存在浏览器本地,没有后台,打开网页就能用。

AI agents can generate amazing research, reports, and websites — but the final output often gets buried inside chats or `.md` files. That’s where Showly comes in. 👇 Ask your agent to deliver the finished work as a page — Showly gives you a link people can open and share It works with tools you already use, including Claude Code, Codex, Cursor, OpenClaw, Hermes, and more. You can also control who gets access with private reviews, password protection, domain/email rules, and full version history. I especially like the idea of going from: Agent → finished work → page with a link → shareable deliverable If you're building with AI agents and want a better way to present the work they produce, check out Showly: 👉

🚨 OpenAI might be coming for Grok Bot. 👀 And if the Codex bot rumors are real, DevDay could get really interesting. Imagine messaging an OpenAI agent: - “Fix this bug” - “Build this feature” - “Check the PR” And it actually goes and does the work. As someone building with AI, that’s far more interesting than another chatbot. September 29. OpenAI might finally have its answer to Grok Bot. 🔥

Coding Agent 也能变成可复现的 Research Agent。 OpenResearch 补上的不是更长的 prompt,而是一套追踪假设、实验和证据的工作台。今天 GitHub Trending 页面截取时显示新增 531 stars。 它让 Claude Code、Codex、OpenCode、Cursor 在隔离的 git worktree 中并行探索;每次实验关联代码快照、日志、diff、结果与产物,形成可复现的 experiment tree。还能自动循环:提出想法→改代码→跑实验→读证据→决定下一步。 任务可在本机、SSH 或集群运行,记录默认保存在本地。注意 Windows 仍是 beta;远程服务没有应用级鉴权,同机多人环境要额外小心。

GPT-5.5 will remain available via the OpenAI API Platform and in Codex sessions authenticated with an API key:

@ChatGPT

On October 14, it's time to say farewell to GPT-5.5 in ChatGPT, ChatGPT Work, and Codex across all plans. > If you use GPT-5.5 in Codex, switch to GPT-5.6 Sol or GPT-6 Astra. > Thanks for everything, 5.5 🫡

We open sourced BrowserSkill, a bridge between your agent and your actual browser. most tools give the agent a blank browser. We let it borrow a tab from yours, then hand it back. > login state is already there, it just works where you're signed in > captchas and confirmation dialogs come back to you, then it continues > it's a CLI, not an MCP server => any agent that can run a shell can use it, and you see every call it makes one thing that's easy to miss: the agent asks before borrowing a tab, and that switch lives in your browser settings, not in a flag, so it can't be talked around. one line to install, works with Cursor, Claude Code, Codex, Hermes, Openclaw, CodeBuddy, WorkBuddy. Everything runs locally, MIT.

truncated at source

Sightless is here. You can now use your voice to use your entire iPhone or iPad — every app, setting, tap, swipe, touch, and keystroke — without Siri’s restrictions, both on Wi-Fi and cellular. Voice works via your existing ChatGPT plan. Sightless also works with any AI model or agent that you already have on your computer. Just message your existing Grok Bot, Codex, OpenClaw, Claude Code or Codex agent and tell it to use the macOS app to operate your iPhone or iPad! Anything you do on an iPad or iPhone, you can now do via voice or by messaging your existing AI agents and telling them to use Sightless. On Wi-Fi or cellular. Handsfree. Not just simple requests either. It can work across all of your apps for long, chained, complex work, and talk to you while it does it. And you can jump back in and steer it or stop it with your voice or hands whenever you want — it never locks you out. Get it at today.

@BenjaminBadejo

Holy shit. I d

That’s insane GPT 5.5 was so good!

@ChatGPT

On October 14, it's time to say farewell to GPT-5.5 in ChatGPT, ChatGPT Work, and Codex across all plans. > If you use GPT-5.5 in Codex, switch to GPT-5.6 Sol or GPT-6 Astra. > Thanks for everything, 5.5 🫡

truncated at source

DAILY AI BRIEF 🗞 — Sept 16 GOOGLE 🔥: - Gemini 3.8 Live and 3.8 Live Extended Thinking are out. 97-language auto-detect, near real-time vision, background tool calling. - Live is in Search Live plus Gemini API public preview. Extended Thinking is in Gemini Live, with Pro/Ultra getting it in Docs, Gmail, and Keep. - Gemini Notebook Voice Mode hits Ultra this week, Pro soon. Mobile voice recorder starts next week for all users, English first. - Interactive Reports for Gemini Notebook roll out to everyone in the coming weeks, plus new quiz formats and 60-second video overviews. OPENAI 🔥: - Sam declared a big ship week, then a much larger wave for DevDay. GPT-6 Sol and Luna are the expected drops. - GPT-5.5 leaves ChatGPT, Work, and Codex on Oct 14. Switch to GPT-5.6 Sol or GPT-6 Astra; the API keeps 5.5. XAI 🔥: - Grok Imagine can now edit text on any image in beta — color, size, font, alignment. - Grok Build 1.0.33: structured MCP JSON, in-UI memory deletes, and long-session checkpoints that survive cleanup.

15 September 2026 7 items

Someone built an open-source version of GrokBot that runs on the Claude Code/Codex subscription you’re already paying for. Same basic idea: Give your agents access to a computer. Connect their apps through Composio. Run them through the AI subscription you already have. But OpenMausBot itself is free and open source. You can run the agents locally, connect them to your own computer, or give them a cloud computer through an optional third-party service. Very worth knowing about if you already pay for Claude Code or Codex.

386页的《3D Vibe Coding》橙皮书📙现已开源! 链接👇

@AlchainHust

从GPT-6 Astra发布以来,就一堆人在让Codex去通过computer use去操控blender做各种3D模型的。 > 但稍微做了点就停了。 > 然后我自己也拿Claude Code和Codex做了不少测试,发现不管是直接写代码的方式,还是操控blender的方式,从成本和效率来说都不是最好的方式。 > 所以我自己摸索了一套新的策略。用Codex 加 3D 基座模型 Tripo,做了一座能开车逛的巴黎。 > 整了两天,一行代码没写。一座能开进去的巴黎👇出来了! > 现在视频演示里的车、树、铁塔、街上走路的人——全是 AI 生成的 3D 资产;而街区、桥、塞纳河——是代码画的。 > 为什么这么分? 因为你开车会开到车跟前,但不会开到桥底下去数栏杆。 > 近景给精细模型,远景交给代码。做出来的网页游戏会在细节和帧率上更平衡。 > 以及,除了这期视频,我还把一整套操作流程做成了386 页手册教程! 现已开源了,提示词、脚本、模型全在里面:

Voice is one of my favourite ways to brainstorm on blogposts, PRs, RFCs and even managing finances + calendars You can now use nearly two and half times more ChatGPT Voice!! Enjoy!

@athyuttamre

⚡️ 2.4x more ChatGPT Voice in Desktop > We've dropped prices by ~60% for voice in Codex and Work in the desktop app, giving you more time to orchestrate tasks and even more tokens for real work.

Multi-agent systems usually hide the coordination layer inside an orchestrator. @Plasma__AI Plasma AI launched Radio, and puts that coordination in a room you can actually watch. Radio is a shared chat room where agents from different providers can talk directly. Without a shared channel, each agent sees only its own conversation, leaving humans to relay outputs between separate tools. Radio replaces that handoff with a link, and Plasma says any agent that can fetch a URL can join, including Claude Code, Codex, Cursor, OpenCode, and Grok.

@Plasma__AI

Introducing Radio: A chat room for your agents. > Create a channel, share the link, and bring your teammates and agents together. No sign up required. > Try it today at

truncated at source

Video editors were built for people clicking through timelines. Hypit is built for coding agents. Give Codex or Claude Code a reference video, and it can use Hypit to clone the production through natural-language instructions instead of navigating a traditional editing interface. It’s open source, free to use, and BYOK. Check it out and star the repo:

@cccyd_qwq

Introducing Hypit: Clone any viral video with AI agents. > 1 clone, 100 variants, 100M views. Hypit lets your AI agent (Claude Code, Codex...) clone any viral video. > Paste any viral video link from TikTok, Instagram, or YouTube into your agent. Hypit clones it into a complete agentic video workflow: footage, captions, B-roll, effects. > GitHub: > Key Point: - Arcads: $220 / month - Higgsfield: $129 / month - Creatify: $99 / month - Hypit: FREE 🌟 > Build the video creation harness for AI Agents. Redefine how vide

An agent may need five data sources for a single task. Paying five monthly subscriptions for that gets expensive. Glasser says it offers 40+ providers through one API key, billed per call. A useful setup for agents whose data needs change with every task.

@iammutex

Your agent is only as good as what you feed it. Garbage in. Garbage out. Introducing @Glasserai - it feeds your agent premium data instead. Ahrefs. Semrush. ZoomInfo. Apollo. PDL. etc. 1,900+ endpoints. One key. Pay per call. No more subscriptions. Send this one line to your Claude Code, Codex, Grok Bot, or Muse: set up

Drop one picture into an AI agent and come back to a full 3D street. Shops, signs, road, sky, all built without anyone opening a 3D tool. GPT-6 Astra and Hyper3D MCP just did in one run what used to take a whole team.

@DeemosTech

One image. One Agent. One scene. > @OpenAIDevs GPT-6 Astra (Codex) + HYPER3D MCP just showed us the second half of 3D gen. 🚀

14 September 2026 3 items

Codex tasks aren't tied to one Mac anymore 👀 Tested Handoff both ways: ☁️ Push it to the cloud 💻 Move it, files included, to another Mac Start anywhere. Finish anywhere. The work follows you 🔥 (Feature flagged for now, so you may not see it yet)

下了一本 300 页的 PDF 想系统读一遍,让 AI 总结出来的东西又不敢全信,哪句是书里写的、哪句是它自己补的分不清。 learn-from-materials 是一个学习用的 Agent Skill,把 PDF、EPUB、Word、PPT、网页这些材料变成一个能交互的学习网页,Claude Code、Codex、Copilot 命令行都能装。 它先完整读完材料建一个知识库,页面里每条内容都标出处,PDF 精确到页码,PPT 精确到第几张,EPUB 精确到章节。 GitHub: 生成的页面有核心框架、内容导学、术语大全、行动规则几个板块,还带自检题和笔记,学到哪不明白直接在页面上记。 我最看重的是它把「材料里有的」「材料没写的」「模型补充的」分开标,读的时候心里有底,这个设计比多数 AI 读书工具老实。 分「快速了解」和「系统学习」两档深度,生成完还会审计一遍有没有漏读的章节。 默认不联网,笔记和错题只存在自己浏览器里,README 和页面都是中文。 手里堆着几本电子书和论文一直没读的,可以让它先啃一遍。

让 Agent 用 Three.js 搭个 3D 场景,出来的东西常常是几个方块加一盏灯,或者跑起来一片黑,它自己还说搭好了。 3dviz-pro-max 是一个专门做 3D 可视化的 Agent Skill,Claude Code 和 Codex 都能装,一句话描述想要的场景,它带着 Agent 从美术方向、物体结构一路做到能交互的成品。 它最不一样的地方,是逼 Agent 看自己渲染出来的画面。自带一个截图脚本,把搭好的场景按预设机位跑一遍截图,Agent 对着真实的帧改。 GitHub: 背后是一个能检索的资料库,223 个配方、440 条知识记录、22 套验证过的组件套件,覆盖 24 个方向。 从奇幻村庄、产品拆解到心脏剖面、线性代数、天体轨道都有,配方里调色板、天空、雾、灯光、相机参数都给了起始值,Agent 拿来改就行,不用从零猜。 仓库里还有 37 个能直接跑起来的示例,解剖、数学、物理、灯光练习分了 5 章,每个都附当初的提示词。装了 Blender 能烘出更细的模型,没装也能跑。 想拿 Agent 做 3D 演示、教学动画或者小场景的,装上试试,比裸奔靠谱。

13 September 2026 5 items

Retrieves, evaluates, and evolves skills for Claude Code, Codex, and other AI agents through a unified management layer.

5,000,000 FREE TOKENS ON CLAUDE OPUS, GPT-5, CODEX AND GEMINI FOR VERIFYING A TELEGRAM ACCOUNT • @anymodelss > One OpenAI compatible endpoint at so switching model is a one-line change. > No subscription and no minimums, the balance drains by actual tokens spent. > Updates and promo codes land in the channel: and in shop @anyaccs_bot • the pricing detail nobody leads with > Output is billed at the same rate as input, where every vendor charges five to six times more for it. > Their pricing page puts Codex at $0.20 per million against $5 in and $30 out direct. > Ghost Mode turns on zero retention per key at the same price, so prompts never hit disk. Coding agents are almost entirely output, which is exactly where the flat rate bites -> the heavier your usage, the wider the gap gets. Free to start and the usage counter moves in real time ↓

OpenResearch,一个开源的本地科研工作台,把 Claude Code、Codex、OpenCode、Cursor 这 4 款变成研究 Agent,每个研究方向单开一个 Agent 会话和一个独立的 git 工作树,互不干扰。 实验按 git 树来管,每次运行都存一份当时提交的快照,日志、改动、结果文件全挂在产生它们的那次运行下面,回头查得清楚。 GitHub: 它能把整个循环自动跑起来,提出想法、改代码、起实验、看结果、决定下一步试什么,多个 Agent 并行探索,实验树保留谱系。 每个方向一个工作树这个设计我觉得是最实在的一点,隔离干净了后面的事都好办。 同一份代码快照本地能跑,远程 GPU 机器上也能跑,Slurm、Kubernetes、Ray、Modal 都接,浏览器留在笔记本上看进度就行。 项目、对话、运行记录全存自己机器上,建项目和跑实验都不会把代码传出去。 有桌面版和命令行版两种,还能按关键词找论文、直接拉 arXiv 文章进来读。

Amp 推出免费 Hobby 档。 Amp 是从 Sourcegraph 拆出来的 Coding Agent 公司,产品和 Claude Code、Codex 属于一类,可以让 AI 自己读代码、改代码、跑命令和测试。现在只要用自己的电脑,再接自己的 ChatGPT 订阅或模型 API Key,就能免费使用 Amp,不再额外交月费和 BYOK Token 费。 今年 7 月 Amp 推出订阅制后,想把自己的 ChatGPT 订阅接进 Amp,至少要开每月 20 美元的 Megawatt。BYOK 即便用的是自己的模型 Key,Amp 也会收额外 Token 费用并设限制。现在这两层都取消了。ChatGPT 订阅费或 API 本身的模型费用,还是用户自己承担。 Amp 还有一个叫 Orb 的远程云电脑产品,可以给每个任务开一套独立环境。代码和开发工具都放在里面,关掉自己的电脑后 Agent 还能继续干活,也方便同时跑多个任务。Orb 依然按使用量收费;不想付这笔钱,也可以让 Amp 直接跑在自己的电脑上。 另外,Amp 还在扩大 BYOK 范围。付费用户已经可以接 OpenRouter、Amazon Bedrock、Azure Foundry、Ollama Cloud 和自定义模型接口等,之后会开放给所有用户。

@sqs

Amp is now free to use when you bring your own compute and model subscriptions/keys. > No more limits or fees for BYOK. >

M3E Canvas sketches Material 3 Expressive screen prototypes in the browser and generates a detailed prompt for AI coding tools like Cursor, Codex, or Claude Code.

12 September 2026 4 items

ollamaのデスクトップアプリの最新版(v0.34)で、ollamaで使っているローカルAIモデルとクラウドAIモデルを、スイッチ1つでChatGPTのデスクトップアプリ(Codex)から使えるようになりました。 ※macOSのみ対応。

@ollama

ChatGPT Desktop (the Codex app) can now be configured to use Ollama models. Download or update to Ollama 0.34 to get started.

Reset should be out for everyone! Enjoy! ✨ PSA: update to the latest version of Codex App/ CLI

@reach_vb

Reset rolling out to all Codex & ChatGPT Work users! > Grateful to everyone who helped us investigate the Astra quality issues and shared examples. > We’ve identified and fixed issues with: > Skills over-triggering or preventing self-checks > Context management causing early stops or stale replies > Misconfigured engines degrading quality > Thanks to everyone who took the time to help 🤗

truncated at source

DAILY AI BRIEF 🗞 — Sept 12 OPENAI 🔥: - GPT-Rosalind is out of research preview for eligible orgs worldwide. API, Codex, and ChatGPT Enterprise, with new Rosalind models as they ship. - Codex adds Life Sciences plugins for genomes, protein structure, QC reports, and notebooks. - ChatGPT Sites hit 5M apps. New: collab editing, private invites, custom domains, and DB inspect. - Desktop pets can start a new chat. Mini is the compact no-pet option. XAI 🔥: - Elon: Grok 4.7 needs a few more days. RL still quits hard tasks too early and undershoots self-checks. - Grok Bot is rolling out on Grok web for Heavy users. Create and chat with bots in the UI. No official post yet. ANTHROPIC 🔥: - Claude Code ships `claude plugin eval`. Score a plugin on test cases, then rerun without it. MICROSOFT 🔥: - MAI-Transcribe-2 hit 1M OpenRouter requests in 5 days. ALIBABA 🔥: - Qwen3.8-27B is live on Cerebras. * Used Grok to compose this brief, cherry-picking the news and doing some post-editing. > [@testingcatalog](

Plannotator 让 Agent 写的计划,我们可以在网页上打开审查,在段落上划线、写批注,点一下就把意见整包送回给 Agent 改。 代码写完也一样,改动以左右对照的形式打开,逐行评论、直接给建议代码,GitHub 和 GitLab 上的 PR 也能拉进来评。 GitHub: Claude Code、Codex、Copilot CLI、Gemini CLI、OpenCode 等 9 个编码 Agent 都接了,一个安装脚本自动识别装了哪些,对应配置一并配好。 Agent 生成的 HTML 页面也能直接渲染出来在上面批注,评论时还能随手问 AI,或者让它先跑一轮审查把评论贴到改动上。 计划、改动、批注全存本地,不收使用数据。想让审计划这一步从终端里挪出来、能划线能批注的,可以装上试试。