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

推荐订阅源

博客园 - 叶小钗
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
量子位
N
Netflix TechBlog - Medium
博客园 - 聂微东
博客园 - Franky
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯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
Three Months With Claude Code: What 35 Jobs and 26 Killed...
JessYT · 2026-05-13 · via DEV Community

JessYT

Three Months With Claude Code: What 35 Jobs and 26 Killed Ones Taught Me

Bottom line up front. AI support cut 90% of my writing time. Three months in, I built 35 automation jobs and killed 26. Volume alone doesn't make money — that part I confirmed the hard way.

  • 3 months in
  • 35 jobs active
  • 26 killed
  • 90% writing time saved

01 · What I have to show for 3 months, in numbers

Start with the tangible stuff. This is the automation surface I've built up over three months. Every morning, launchd runs the lot without me touching anything.

  • 35 LaunchAgent jobs (26 killed)
  • 12 project folders (5 blogs + α)
  • 3 custom skills (only SKILL.md loads)
  • 19 slash commands (/run-daily & co.)

On top of that: 13 CLAUDE.md files (1 main + 12 per-project) and 3 hook scripts. Every job ships with a wrapper, plist, and log file — so the actual file count is well past 100.

02 · Five things that actually save tokens

In Claude Code, context tokens are the bill. After three months, these are the five habits that stuck.

  1. /compact — the moment the context warning fires. When the alert pops, hit it immediately. Keeps the gist, drops the rest.
  2. Split out agents — separate roles for detail and deep work. Main session is the coordinator; details go to a sub-agent. Keeps the context from getting polluted.
  3. /clear — every time the task switches. Going from blog work to infra debugging? Clear, no exceptions.
  4. Keep CLAUDE.md slim — only the must-reads. It auto-loads every session. Push the rest into separate files and reference them only when the task calls for it.
  5. Skill split — load only SKILL.md. My three custom skills sit in their own files. The full text stays out of context until needed.

03 · The three I actually use every day

Out of 19 commands, 3 skills, and a pile of plugins, these are the three I genuinely reach for daily.

Rank Tool How ROI
A · Daily publish /run-daily ×5 per-blog .claude/commands/run-daily.md edit one line → all 5 blogs pick it up
B · Writing quality blog-style-guide 9 base patterns + 4 evolved patterns in one file tweak the guide once → every post follows the new rule
C · Design frontend-design installed 4/26, generates v2 visual components 3–5 polished components per post, on demand

The frontend-design plugin in particular changed what I can ship. Before it, I was hand-rolling CSS and the readability suffered. Now Hero, VS, and impact blocks come out clean in one pass. Eleven days in, the lift in visual quality is immediate.

04 · Automation ≠ revenue — the hardest lesson

"I assumed automated posts would mean automated income. Three months later, it's the opposite."

Root cause: automation cuts repetition cost. Revenue is built on trust. You can ship 5 posts a day, but if every one reads like a textbook, readers click and bounce.

Look at the asset count again. 35 active + 26 killed. Those 26 are the ones I built on the assumption that volume alone would pay off.

Early assumption (26 killed jobs):

  • "Auto-publish daily"
  • Generic / textbook tone
  • Conversion flatlined

After the pivot (35 active jobs):

  • Experiment logs + lived experience
  • Drafts → my own review
  • Reads trending up

Automation cuts repetition cost. Revenue compounds from trust. Two completely different mechanisms — I had to kill 26 jobs to internalize that. Volume without trust is worse than zero posts.

05 · CLAUDE.md ≠ memory — keep them separate

Two different contexts auto-load every session. Mix them up and things break.

Criteria CLAUDE.md (project file) Memory (auto-memory)
Holds Operating rules, publish rules, incident logs Meta info, persona, where external systems live
Update freq Often (every time something breaks) Occasionally
Trust High — source of truth for ops Supporting — meta only

The split rule is simple. "This needs to work in the next session" goes in CLAUDE.md. "Who the user is, where they work" goes in memory. Don't trust memory for operating rules — always pin them in CLAUDE.md. I caused several incidents over three months by getting this wrong.

One more thing: don't put it in either place. Concrete values (cash balances, prices) or transient state. They go stale fast — push them to a file or a database instead.

06 · Pull quote

"You still need a human's lived experience. Trust beats volume. But AI support did cut 90% of my writing time."

— Eddie, 3 months with Claude Code

07 · Six follow-ups I'll go deeper on

This post is the index. Each topic gets its own case-study post next.

  1. Token saving deep dive — each of the 5 habits, in practice
  2. Slash commands deep dive — how /run-daily differs across 5 blogs
  3. 3 custom skills deep dive — why I built them, how they're shaped
  4. Running CLAUDE.md — how I let incident logs accumulate
  5. frontend-design plugin — the 30-day review
  6. Hooks, memory, agents — the rest of the stack

Productivity and trust aren't substitutes. AI buys back the time. The human fills in the trust.

Disclaimer: personal 3-month retrospective. No ads, no affiliates.


Originally published at jessinvestment.com.