My entire AI stack is now Chinese 🇨🇳
87% cheaper. same revenue
swaps by task:
1. reasoning / backend brain
Opus 4.8 → Kimi K2.7
benchmark gap: ~8% · price: ~11x cheaper
2. code generation
GPT-5.5 → Qwen 3.7 Max
benchmark gap: ~18% · price: ~7x cheaper
3. agent loops + tool calling
Sonnet 4.7 → GLM 5.2
benchmark gap: ~3% · price: ~5x cheaper on input
4. cheap volume / bulk processing
GPT-5.5 mini → MiMo V2.5
benchmark gap: ~6% · price: ~12x cheaper
5. image generation
GPT-Image-2 → Wan 2.5
benchmark gap: ~5% · price: ~8x cheaper
6. video generation
Sora 2 → Kling 3.0
benchmark gap: roughly equal · price: ~6x cheaper
[ result after 30 days: ]
operating costs dropped 87%, output quality dropped 4% on average, revenue unchanged
the most important that these models will be not banned in a month and i can run them locally
nobody will steal my data and i can learn them as i need
full article drops tomorrow with:
> exact routing logic per task type
> the 2 cases where I still pay for American
> the migration playbook anyone can copy in a weekend
VERY IMPORTANT to get migrated now, while it's not too late
九个月使用 Claude Code 作为主力开发工具后,@boristane 分享了他提炼出来的完整工作流,一起看看这位前 Cloudflare 工程师是怎么做的,他现在在做 nominal. dev,要把所有 on-call 的工程师都解放出来,期待!
最重要的一个观点:
规划与执行的严格分离,绝不让 Claude 在你审查并批准书面计划之前写一行代码。
整体工作流程
Research → Plan → Annotate(反复) → Todo List → Implement → Feedback & Iterate
1. 深度研究(Research)
任何任务先要求 Claude 对代码库相关部分进行“深读”。必须输出到持久文件 https://t.co/hYqNwtIyAO,而非聊天总结。
关键提示词:deeply、in great details、intricacies、go through everything。
目的:验证 Claude 是否真正理解系统,避免后续“孤立有效、整体破坏”的最昂贵失败模式(如忽略缓存层、违反 ORM 约定、重复已有逻辑)。
2. 规划(Plan)
基于研究结果,让 Claude 生成 https://t.co/iszM3tN02f,包含详细方案、代码片段建议、文件路径、权衡考量。
Boris 强烈推荐自定义 Markdown 文件,而非 Claude 内置的 plan mode。
3. 标注迭代(Annotation Cycle)——最核心的价值注入环节
在本地编辑器中打开 https://t.co/iszM3tN02f,直接添加内联注释:纠正假设、注入领域知识、拒绝方案、指定约束等。
示例注释:
· “use drizzle:generate for migrations, not raw SQL”
· “no — this should be a PATCH, not a PUT”
· “remove this section entirely, we don’t need caching here”
然后发给 Claude:“我添加了注释,请全部处理并更新文档,don’t implement yet。” 循环 1-6 次,直至计划完美适配项目上下文。此阶段才是真正的“思考”与“判断”。
4. 生成 Todo 清单
要求 Claude 在 https://t.co/iszM3tN02f 中添加颗粒度极细的任务分解,作为执行进度追踪器。
5. 一次性实施(Implement)
使用标准化提示:
implement it all. when you’re done with a task or phase, mark it as completed in the plan document. do not stop until all tasks and phases are completed. do not add unnecessary comments or jsdocs, do not use any or unknown types. continuously run typecheck...
实施被设计为“机械化、无聊”的执行过程——创造性工作已在标注阶段完成。
6. 反馈与微调
实施中反馈极简(单句或截图):“wider”“still cropped”“You didn’t implement the deduplicateByTitle function.”
若方向错误,直接 Git revert 后重新限定范围,而非修补。
博客地址
https://t.co/gnNgM1LlS5
卧槽,这篇《How to Simulate Like a Quant Desk》太牛逼了,
所有观点都经过了作者交易实践观察+行为心理学认知偏误实证的,
讲的是一套从散户入门到机构级的预测市场量化模拟完整体系,
作者gemchanger以“硬币翻转的散户认知误区”为起点,
以蒙特卡洛方法为核心根基,
逐层拆解了从基础概率估算到生产级交易系统的全链路技术、可运行代码与理论支撑,
彻底解决了散户在预测市场交易中概率估算失准、尾部风险失控、无法动态适配新信息、忽略极端联动性等核心痛点,
每一层内容环环相扣,最终形成一套可直接落地的量化交易模拟全栈,
具体提炼总结在评论区👇