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

推荐订阅源

Y
Y Combinator Blog
博客园_首页
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
月光博客
月光博客
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
C
Check Point Blog
V
V2EX
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog

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
Claude Code Routines: Should Workflow Automation Join You...
pickuma · 2026-05-20 · via DEV Community

A Hacker News post for a project called Claude Code Routines climbed to 686 points — the kind of number that usually means the title hit a nerve, not that everyone read the README. The nerve is familiar. Most developers run the same handful of multi-step tasks over and over: bumping dependencies, drafting release notes, triaging a flaky test, prepping a PR description. An agent that can sort of do each of those still has to be re-explained from scratch every single time. Routines are a bet that the re-explaining is the real cost, and that the fix is packaging the workflow once.

We didn't run a multi-week trial, so treat what follows as a map of the idea and a checklist for evaluating it — not a benchmark. The questions below are the ones we'd want answered before wiring any routine tool into a real repository.

What a "routine" actually is

A routine is a saved, repeatable workflow: a named sequence of steps you hand to the agent so it runs the same way each time instead of improvising from a cold prompt. The unit is the point. A one-line slash command saves keystrokes; a routine saves a decision tree — which files to touch first, what to check before moving on, when to stop and ask you.

Claude Code already ships the primitives this builds on. Custom slash commands store a prompt under a name. Hooks fire shell commands before or after tool calls. Headless mode (claude -p) runs the agent non-interactively, so it can sit inside a script or a CI job. Subagents let one run hand a scoped task to another. A routine, in the sense this project pushes, is the layer that stitches those into a single durable artifact you can version, share, and trigger — instead of a workflow that lives in your head and degrades a little every time you retype it.

Hold onto that distinction, because it is also the thing to stay skeptical about.

Where it fits in the agentic dev-tools landscape

The agentic coding space has spent the past year moving from "autocomplete that finishes your line" to "an agent that finishes your task." Cursor put the agent inside the editor. Terminal agents like Claude Code put it next to your shell. The next axis of competition is repeatability: not just whether the agent can do the task, but whether it does it the same way on Tuesday that it did on Monday, with you out of the loop.

Routines land squarely on that axis. They are less a new capability than a packaging decision — and packaging is where both real value and quiet lock-in tend to hide. A routine you can read, diff, and check into the repo is an asset your team shares. A routine that is an opaque blob tied to one vendor's runtime is a liability dressed as convenience. Ask which one you are getting before you depend on it.

Automating a workflow you don't fully understand only makes the misunderstanding run faster. Before you turn a task into a routine, do it manually with the agent two or three times and read every step it takes. A routine is never more trustworthy than the workflow you already trust by hand.

The honest failure mode for any automate-your-repetitive-work tool is that it rewards you for skipping the step where you would have caught the workflow being wrong. A dependency-bump routine that quietly merges a breaking change is worse than no routine, because it ran while you weren't watching. The teams getting value here are the ones automating workflows that already have a verification step built in: tests that must pass, a diff a human signs off on, a dry-run mode.

Whether it earns a slot in your daily loop

Use a short rubric. A workflow is a good routine candidate when it is repetitive enough to matter — you run it weekly or more — deterministic enough that "correct" is checkable rather than a matter of taste, and bounded enough to have a clear stopping point and a verification gate. Release-note drafts, changelog assembly, issue triage, and dependency reviews tend to qualify. "Design the feature" does not.

The cost side of the rubric matters too. A routine has to be maintained: when the codebase shifts, a stale routine fails in ways a fresh prompt would not. If a workflow changes shape every month, the routine is overhead rather than leverage. Automate the stable middle of your work, not its moving edges.

If most of your repetitive work happens inside an editor rather than a terminal, the terminal-first framing of Claude Code routines may not be the closest fit. An editor-native agent loop can be lower-friction when the work lives in files and diffs.

The 686-point thread is a signal that the problem is real, not a verdict that this one tool solves it. Treat routines as a discipline first and a product second: write down a single workflow you repeat, give it explicit checks, and run it that way for a week. If the written-down version beats the in-your-head version — and it usually does — then the tooling that stores and triggers it is a small, swappable detail.


Originally published at pickuma.com. Subscribe to the RSS or follow @pickuma.bsky.social for new reviews.