01
ZhangYvJing's
Daily Brief
00
Film / Book Chapter
Her
Her (2013) · Spike Jonze
今天适合看《她》,因为它会把人从抽象的 AI 讨论里拉回到真实关系、孤独和投射本身,更适合当作生活感受的校准而不是技术议题的延伸。
The Pragmatic Programmer
The Pragmatic Programmer · David Thomas / Andrew Hunt
Chapter 1: A Pragmatic Philosophy
A compact reset on ownership, taste, entropy, and being the kind of engineer whose work keeps improving after the first pass.
01
Insight
今天的输入更像几股不同语气的材料同时挤在一起:社区链接在暴露工程和产品环境里的真实焦点,长视频在把这些焦点放回更完整的语境里,研究材料则提醒人热度和可落地性并不总是同一件事。如果先不急着做结论,至少可以把这几条线索放在一起看:Hacker News 的 The Internet Is Kind of a Predatory Cesspit Now;Hacker News 的 Tencent Releases and Open-Sources Tencent Hy4 Preview;Hacker News 的 vLLM v0.28.0;Hacker News 的 Tether: iMessage, SMS, etc. on Linux;Hacker News 的 Calibrate Before You Accelerate: Bias Toward Action in a New Role;Hacker News 的 Warp builds self-improving agents on Claude。真正值得注意的不是单条内容本身,而是它们共同指向了什么、彼此漏掉了什么。
03
Hacker News
02
03
04
05
06
Warp 在 Claude 平台上构建了基于技能文件的自改进智能体框架。该框架把基础技能与外部改进技能分离,人工反馈被收集后由改进技能定期更新基础技能,使智能体输出随时间持续优化。这样,开发者只要审批改动后的技能文件,就能得到持续改进的智能体服务。
07
08
09
员工开始质疑AI工具能否真的提升生产力,转而关注组织文化的作用。材料指出,当领导把AI视为替代人员的口号时,会削弱心理安全,导致团队互相指责,进而影响系统设计和沟通结构,正如康威定律所描述的组织行为形式。这使得依赖AI而忽视文化的团队在效率和成本上可能走错方向,而重视文化的组织则能让AI成为助力而不是负担。
10
04
YouTube
01
Parag Agrawal on how Parallel got its name — and the idea behind it: a parallel web, built for AIs, with different properties than the one built for us. Which means every page you publish now has two audiences, whether you intended it or not.
02
If continual learning works, is the endpoint a single mind that can swing from a tree branch and build a spaceship? Rich Sutton: "It's a single design. There'll be many minds." Khurram Javed's reason reads like a proof — two equally complex systems can't model each other, so no single system ever learns everything. #ai #llm #continuallearning
03
Full episode: https://www.youtube.com/watch?v=aV26V1UvkJw Me on twitter: https://x.com/dwarkesh_sp
04
05
If a task is worth doing and there are GPUs available, an agent will just do it today. So what work is left for tomorrow? Parag Agrawal argues the only work left is work triggered by something changing — and one of those triggers is everything that changed on the web. Search stops being a request and becomes a standing instruction.
06
Carlos Sanchez types a request for a coffee machine he can use while camping, and the page assembles itself in under two seconds. Not a search result. A page, with camping appropriate machines, rewritten copy and a set of tips, generated for that one query. Adobe calls the goal an audience of one, which is the thing marketers have wanted for decades and could never afford. The site he demonstrates is a fully generated example, and the same tool will build one for any URL you hand it in about an hour. He did it to the AI Engineer site last week, and it produced a side by side comparison of two
07
Maersk's standard operating procedures were screenshots. A sequence of images showing what a person sees and where they click, which is a perfectly good record for a human and useless to an agent. Dmitry Buykin calls the gap tribal dungeons: the knowledge exists, just not in a form anything can execute safely. An agent version of the same procedure needs preconditions, decisions, identifiers, backend calls, validation, recovery and evidence that it actually worked. Most of the project was that translation, negotiated with the people who own the process, because experts own the what and agents
08
Lena Hall resolved a production incident from a hiking trail near a waterfall. A friend of hers ran 18 agents while riding his bike. That abundance is the setup for her actual argument, which is that the same leverage reached your competitors on the same morning, so the cost of average work fell to zero and took its value with it. Ask a model what users want or what to build next and it answers from common knowledge, competently and confidently and identically to whoever asked it before you. She calls it a convergence machine, and says the single decision it cannot make is where to point it.
09
Sandhya Subramani asks her rover how many people it can see, a question nobody ever trained it to answer. It thinks for a second, checks its front camera, and reports two, one near the speaker monitor and one further right. Scout is a small four legged robot running a Raspberry Pi, reaching the internet over a SIM card and a 4G connection, and its whole personality comes from an agent layer sitting above the movement policies it already had. The demo goes exactly as live robot demos go. It falls over, gets coaxed upright, announces a signature performance and then just turns its headlights off
10
07
Papers
01
02
这篇论文针对大规模社交图谱的好友推荐问题,提出使用多哈希ID嵌入显著压缩节点表示(98%)和基于时间戳的CSR+二分搜索的邻居采样,将采样复杂度从线性降至对数。在1.94亿用户、280亿边的图上离线消融和线上A/B测试均显示效果提升,友添加量提升16%。对需要在亿级图上做实时GNN推理的Agent/AI产品工程师来说,提供了可落地的低存储、低延迟方案,值得参考。
03
该文指出现有 AI 模型安全扫描器的评估往往只关注它能给出判断时的准确率,忽略了判断是否能够产生(覆盖率)以及判断失败时的恢复能力。作者构建了包含 170 个 Pickle/PyTorch 制品的合成基准,明确区分了覆盖、分析完成、明确安全判定等维度,并对 ModelScan、ModelAudit、Fickling 三款工具进行了对比实验。结果显示 ModelAudit 在所有有标签家族上均能给出明确判定(100%),而 ModelScan 虽在判定时准确但覆盖仅约 50%;在此基础上,ModelAudit 和 Fickling 能在 ModelScan 失效时仍提供正确的检测,说明判断准确率与判断可得性需分开评估,增量覆盖和工具冗余同样重要。这对构建更可靠的 AI 安全扫描流程具有直接指导意义。
04
05
LLM代理在产品级执行中易被越狱导致危险工具调用和状态破坏,现有红队要么固定攻击要么依赖检索易受偏差和工具归因不明。RedEvoAgent把多案例攻击轨迹提炼为可读攻击技能,通过工具有效性画像和决策工具归因自适应演进,验证棘轮只留提升验证性能的更新。实验显示其在多基准、目标模型和执行 harness 上优于固定和代理基线,提升工具效率并可跨模型、跨 harness 迁移。
06
07
该工作指出,直接用成功轨迹进行SFT会引入无效或风险步骤的噪声;SWE‑Prime通过轨迹层和片段层两阶段筛选,保留完整序列但只让高质量片段参与损失,仅用10%轨迹在SWE‑Bench上就能比全数据提升12.2%~24.2%。
08
WikiSkill 把 Agent 的原始执行经验、积累知识和可执行技能分离,通过持续把经验沉淀到持久化的 wiki 中,让后续技能更新能在统一知识库上迭代。实验表明,这种持续知识积累能让技能跨模型迁移、小模型配技能甚至胜过大模型的裸基线,对构建可复用、可迁移的 Agent 能力很有参考价值。
08
Issue Monitor
Ready now—Actionable issues
Needs review—Awaiting a fresh check
Data statusCheck statusLive status unavailable









