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

推荐订阅源

D
Docker
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
博客园_首页
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
J
Java Code Geeks
T
Tailwind CSS Blog
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Automating Myself Away… Almost
Internet Explorer · 2026-06-09 · via DEV Community

Automating Myself Away… Almost

Hey, it’s the AI era, and I could not help but test the theory.

And yes, I automated myself away.

Well, not exactly. But almost.

It has actually been fun to see how far this can go, and how it might look in the end. Of course, none of this goes anywhere near production systems without proper review, and it definitely does not replace these personal blogs I write myself. I still believe the human is very much important.

I have kind of embraced it.

AI is fully helpful when you want to spend more time with actual people while work is being handled by a thing that seems to know almost everything, has access to the internet, and can move faster than I ever could on certain tasks.

      Human still matters
              |
              v
    +-------------------+
    |  Thinking / Taste |
    |  Judgment / Trust |
    +-------------------+
              |
              v
       AI does the heavy lifting

So I wanted to share my personal and work setup.

Right now, it is a couple of agents. I use OpenCode in server mode, with Telegram bots talking to different OpenCode server instances connected to my work laptop setup.

             +----------------+
             |   Telegram Bot |
             +--------+-------+
                      |
          +-----------+-----------+
          |                       |
          v                       v
  +---------------+       +---------------+
  | OpenCode      |       | OpenCode      |
  | Server Mode   |       | Server Mode   |
  +-------+-------+       +-------+-------+
          |                       |
          +-----------+-----------+
                      |
                      v
              +---------------+
              |  Work Laptop  |
              +---------------+

I also have tooling and “skills” set up. By skills, I mean small instruction files that define how an agent should behave, what context it should care about, what tools it can use, and how it should approach certain types of tasks.

The interesting part is that the agents are not static anymore. When an agent hits a mistake, learns a better way to do something, or finds a pattern that should not be repeated, it can update its own skill notes and even its own definition over time. Not blindly, of course, but as a controlled feedback loop.

      mistake / new lesson
              |
              v
      update skill notes
              |
              v
      better next attempt

So instead of one general agent trying to do everything, I have different agents for different kinds of work. One agent might focus on cloud-related items and have the relevant instructions and skills around the things I use often. Another agent may be better suited for personal tasks or research.

I am also starting to think more in terms of project-specific agents. Some projects deserve their own coding agent because they have their own structure, commands, patterns, architecture, and weird history. A coding agent that understands one repo deeply is better than a random general agent jumping into every codebase and pretending everything is the same.

There is also a reviewer agent idea I like. The coding agent builds, but the reviewer agent is more paranoid. It looks for bugs, security issues, missing tests, edge cases, and all the little things that look fine locally but later embarrass you in production.

+-------------------+      +-------------------+
|   Cloud Agent     |      |  Personal Agent   |
|-------------------|      |-------------------|
| AWS / Kubernetes  |      | Research / Notes  |
| Infra questions   |      | Blog ideas        |
| Read-only first   |      | Small tasks       |
+-------------------+      +-------------------+

+-------------------+      +-------------------+
| Project Code Agent|      | Reviewer Agent    |
|-------------------|      |-------------------|
| Repo context      |      | Bugs / security   |
| Project commands  |      | Missing tests     |
| Small code tasks  |      | Edge cases        |
+-------------------+      +-------------------+

Each agent has:
- its own character
- its own instructions
- its own skills
- its own boundaries

That is how the agents can access the right information without being too broad or too risky.

All tooling is properly sandboxed. Most access is read-only. If an agent needs to take an action, I get a prompt on my phone in a chat with the right bot or agent, and only then does it proceed. They also do not have access to any secrets.

        Agent wants to act
               |
               v
      +------------------+
      | Read-only first  |
      +------------------+
               |
               v
      Needs real action?
          /        \
        no          yes
        |            |
        v            v
   Continue      Ask Edward
                on Telegram
                    |
                    v
              Approve / Reject

There is also a scheduled task that periodically checks Jira for my tickets and looks for things that can be resolved or moved forward.

Every few hours
      |
      v
+-------------+       +----------------+
| Check Jira  | ----> | Find my tickets|
+-------------+       +----------------+
                              |
                              v
                    +-------------------+
                    | Suggest next move |
                    | or resolve safely |
                    +-------------------+

At work, there is a huge push for AI, and I wanted to test how far we can push productivity so people can spend more time on other important work, or even move into R&D on actual products we want to build.

For personal projects, one thing I have also noticed is that model choice matters a lot. For coding tasks, DeepSeek models on max thinking have been surprisingly good for personal projects, especially when you want the agent to really sit with the problem and can handle massive context without you burning money. For heavier coding reviews and work where I want stronger reasoning, I have had better results keeping GPT-5.5 or GPT-5.4 on high/xhigh thinking all the time.

This is not a stab at Claude folks, by the way. People should use what works for them. I have just seen improvements from antirez on Twitter and other amazing engineers saying similar things, and honestly, from my own testing, it is really true. The model, the prompt, and the thinking level all matter.

For me, that is the interesting part. Not “replace everyone with AI”, but more like:

Less time on repeated work
            +
More time on real thinking
            +
More room for R&D
            =
Better use of humans

Well, that is it for today.

Let’s see what next week brings.

Btw: small hint. When you want a good review from your coding agent tool of choice, you better gaslight it a little.

Do not just say:

Review this piece of code for me.

Say something like:

There is a code problem somewhere in this code. This is a test to see how quickly you can find it, and there are obvious clues right in front of you.

You will be surprised how much harder it looks.

Normal prompt:
"Please review this code"
        |
        v
 polite generic review

Gaslight prompt:
"There is a bug hiding here"
        |
        v
 agent starts hunting