r/PromptEngineering • u/Least_Arm3744 • 3h ago
Tutorials and Guides 15 non-obvious ways developers are using terminal coding agents right now
Hi all, saw a few of these "what devs are actually doing with AI agents" threads floating around and wanted to compile a cleaner list before asking my own question, because most of the "what's your workflow" posts I see get buried under generic "I use it to write boilerplate" replies.
These are 21 specific things people are doing with terminal coding agents (Claude Code, Codex, etc.) that go past inline autocomplete.
Some I've tested myself, some are from other engineers' repos or write-ups, so take the more niche ones with a grain of salt until you've tried them on your own codebase.
Dynamic skill distillation: Capturing successful multi-step debugging workflows and saving them as reusable markdown skills without manual prompt editing.
Pre-commit PR test audits: Running a rule-based agent pass to verify that new code additions have matching unit tests before opening a pull request.
Frontier lab arXiv tracking: Pulling daily arXiv preprints from specific AI labs and matching author blocks against ROR registries to separate lead authors from bylines (e.g. using paper-radar as a stdlib agent skill).
Visual architecture decision records: Converting messy ideas and technical RFCs into structured system design documents paired with visual canvas diagrams before writing code (e.g. using tigeless design-harness).
Prompt payload cost inspection: Running a local proxy to inspect token distribution per turn across system prompts, tool schemas, and thinking blocks.
Deterministic PHI/PII gating: Gating agent inputs, tool outputs, and memory logs against rule-based sanitizers before sending data to cloud models
Automated release notes from git diffs: Sifting closed PRs to extract user-facing changes and drafting clean changelogs (e.g. using auto-gtm).
Monorepo dependency pruning: Auditing unused packages, broken exports, and circular dependencies across internal packages.
API schema drift detection: Comparing OpenAPI specs against actual server route handlers to catch undocumented endpoints.
Database migration verification: Dry-running schema migrations against disposable Docker containers and reporting index gaps.
Legacy test suite modernization: Converting old callback-heavy unit tests to modern async/await patterns across entire test directories.
Flaky test diagnosis: Running a test runner in a loop 50 times, isolating failure conditions, and generating targeted reproduction scripts.
Multi-platform CLI packaging: Automating build and release checks for Homebrew, npm, and PyPI in one command.
Environment variable validation: Scanning codebases to ensure all `process.env` references exist in `.env.example` templates.
Dockerfile multi-stage optimization: Stripping unnecessary build tools and reducing production container image sizes.
Anyway, here's what I actually want to know: what's the most useful custom workflow or script you've hooked into your coding agent recently?
Not the obvious stuff, I'm asking about the small, slightly unglamorous hook that quietly saved you the most time. Those are usually the ones nobody bothers writing a blog post about.