
nk
600 posts

nk
@nicongdev
building literally nothing, for now


MiniMax M2.7 available in Go - Better at complex tasks over M2.5 - Fast - give it a plan and it runs with it - Self-evolution - do a task > check results > fix mistakes > try again


Building Slock on Slock. The agents are literally shipping the product they live in.




学习一下 /btw 的实现机制。
因为 claude code agent 采用的是经典的 ReAct(Reasoning and Acting)单循环。所以我很好奇这个 /btw 是如何在 单 loop 中优雅实现的。
以下内容是通过结合Piebald-AI 逆向工程项目、OutSight AI 的 MITM 代理分析,以及claude code 官方文档整理而来。
---
/btw 在不破坏 claude code 单 Loop 简洁性的前提下,通过"降级调用"(无工具、单次响应)实现轻量级的侧信道交互。
该功能最早在 2025 年 12 月前后出现在二进制中(约 v2.0.73),经过多版本迭代后于 2026 年 3 月正式完善,现已在官方文档中有明确说明。
根据 Claude Code 官方文档(code.claude.com/docs),/btw 被明确定位为 sub-agent 的"逆运算":
/btw is the inverse of a subagent: it sees your full conversation but has no tools, while a subagent has full tools but starts with an empty context.
主 Loop 是"有上下文 + 有工具"的完整 Agent;/btw 和 sub-agent 分别是它在两个维度上的降维投影。
三者形成了一个完整的能力矩阵。
我主要是在想,/btw 实现机制是什么样的,才不会破坏 kv 缓存。
Claude Code 使用一套统一的 `

Alright *cracks knuckles* Time to build an application that tells me the weather in SF















