惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
B
Blog RSS Feed
D
Docker
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
V
V2EX
量子位
雷峰网
雷峰网
月光博客
月光博客
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Automating my job away
Austin Z. Henley · 2026-06-14 · via Hacker News

Austin Z. Henley

I build tools for people



6/7/2026

A sketch of a human building a robot, which builds a a robot, which builds a bigger robot.

This post was inspired by conversations with several colleagues: Sourav Pal, Gustavo Soares, the Excel Agent Science Team, John Lam, and Dan Morris.

I was talking to a friend who runs a startup and he said that he tells his team, "don't do anything three times." If they have to do something more than twice, they should automate it.

Surely, this is overkill? I already automated 95% of my coding-related tasks. What else would be left for me to do even? And the remaining bits are probably too hard to automate. But... I was wrong. Very, very wrong.

I started trying it. Slowly at first, because automation can be a distraction from getting work done in the moment. By the second week, I was leaning in head first—how deep does the rabbit hole go?

There was an unexpected consequence: By automating the laborious parts of my work, I had, in turn, filled my day with more laborious parts.

A menial task that took me 5 minutes once or twice a day turned into a menial task that I was doing 10-20 times a day. As I had automated the obvious parts, it left behind the glue work that never bothered me before. Now it was a substantial part of my day, and the context switching was killing me. It was no longer a linear step-by-step process since I was juggling several agents concurrently. Because of it, I was now making silly mistakes, which compounded the time and hair pulling.

"It never gets easier, you just go faster" — Greg LeMond

Try it yourself: Anytime you need to do something more than twice, spend the minimal time possible asking Copilot CLI to automate it. Don't write out a spec or give details or provide examples. Let it try to figure it out. Maybe it will fail, oh well, it is only a tiny bit of time spent, and then you can check where it failed and ask it to correct it.

A diagram showing 4 tiers: human writes a script intended for human use, AI generates a script intended for human use, AI generates a skill intended for AI use, and AI self-improves the skill for AI use.

I'm surprised at how far AI can get on the first try even when under-specified. But don't just generate Python scripts for automating tasks. Your agent should be generating skills so that it knows when and how to use the scripts. You shouldn't be running them manually.

Through this process, I also learned that automation allowed me to change how I worked, not just speed up my work.

Recently, Karpathy's autoresearch inspired the world to try self-improving agents. What if we expose a bunch of knobs to the agent and let it experiment continuously? Even better, what if we let the AI come up with new knobs?!

"Copilot, read my Copilot session logs from the last 7 days and propose opportunities for automation. Draft a reusable skill for each."

This article was not written by AI.