Tag

#agent

17 prompts
Add Diagnostics Before Guessing

Instrument first, theorize second — logging with a stated plan for capturing the failure.

Bisect a Regression

Walk the history between a known-good commit and main to find the culprit diff.

Check the Diff Against the Plan

Audit finished work against the plan it was supposed to follow — gaps only, no style notes.

Commit and Open a PR

Close out a session with a why-focused commit and a PR that carries a test plan.

Document What You Built

Update docs strictly from the diff, with no invented features.

Explore Before You Plan

Make the agent read and explain a subsystem before it touches a single line of it.

Map the Blast Radius of a Change

Find every caller a signature change would break, and the safe order to migrate them.

Modernize an API Call Incrementally

Migrate off a deprecated dependency one file at a time, stopping the moment tests fail.

Phased Implementation Plan

A numbered plan with a verification step per phase, produced before any code is written.

Post-Mortem the Session

Convert what went wrong into a one-line rule your agent config carries forward.

Pull Context From an Issue

Have the agent read the ticket itself, find the relevant code, and propose a plan.

Refactor to Match a Pattern

Point at a file you already like and have the agent bring another one in line with it.

Reproduce, Then Fix

Force a failing test that captures the bug before any fix is allowed to land.

Review the Diff, Not the Repo

Keep review scoped to what actually changed — correctness issues only.

Scope Into Agent-Sized Tasks

Split a rough goal into tasks small enough that each is one focused session.

Triage With a Subagent

Delegate a read-only investigation so the findings come back without context bloat.

Write a Spec by Interviewing Me

Turn a vague idea into a written spec by making the model interrogate you first.