Skip to content
AI & Agents
Agent

quality-no-followup-prs

**Impact: HIGH**

From plugin
caldiy
47k95 skills95 agents
Install
$ npx -y skills add calcom/cal.com --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

**Impact: HIGH**

Agent definition

quality-no-followup-prs.md
title: Minimize Follow-up PRs for Small Refactors
impact: HIGH
impactDescription: Prevents technical debt accumulation
tags: quality, pr, refactoring, technical-debt

Minimize Follow-up PRs for Small Refactors

**Impact: HIGH**

Follow-up PRs for minor improvements rarely materialize. Instead, they accumulate as technical debt that burdens us months or years later. If a small refactor can be done now, do it now.

**Incorrect:**

// PR comment: "I'll fix this naming in a follow-up PR"
const d = getUserData(); // Bad variable name
const r = processData(d); // Another bad name

// The follow-up PR never happens, and now we have unclear code

**Correct:**

// Fix it in the same PR
const userData = getUserData();
const processedResult = processData(userData);

**When follow-ups are acceptable:**

  • Substantial changes that genuinely warrant separate PRs
  • Exceptional, urgent cases where the current PR must ship immediately
  • Changes that require additional review from different stakeholders

**The principle:** The "slowness" of doing things right is an investment, not a cost. Code that's architected correctly from the start doesn't need massive refactors later.

Reference: [Cal.diy Engineering Blog](https://cal.com/blog/engineering-in-2026-and-beyond)

Ships withcaldiy

Scheduling infrastructure for absolutely everyone.

Get the whole plugin