Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Tracer Bullets

  • 69 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with ai & agent building tasks during AI-assisted development.

About

tracer-bullets is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • tracer-bullets
  • AI & Agent Building
  • AI-coding skill

Tracer Bullets by the numbers

  • 69 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #5,786 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill tracer-bullets

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs69
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Tracer Bullets

Build features as vertical slices through all layers, verifying each slice before starting the next. From The Pragmatic Programmer: get feedback as quickly as possible. Don't build horizontal layers in isolation (all endpoints, then all UI, then all tests). Build one thin vertical path, verify it works, then expand.

Skip for single-layer changes, one-file bug fixes, or work already decomposed into ordered vertical slices by a task tracker.

Quick Reference

PrinciplePractice
Vertical over horizontalBuild one slice through all layers, not one layer across all features
Verify before advancingTests pass, page renders, round-trip works before next slice
One slice per sessionEach slice should be completable in a single agent session
First feature sets patternFirst CRUD establishes conventions; subsequent CRUDs go faster
Check before buildingTask trackers may already decompose the work into slices
Skip when trivialSingle-layer work or proven patterns don't need this ceremony

CRUD Feature Slices

SliceScopeVerifies
1Backend/API + tests (no UI)Data layer works, conventions set, tests prove it
2List page with real dataData flows DB -> server -> rendered page
3Create dialogFull round-trip: form -> server -> DB -> refresh
4Edit + deleteFull CRUD cycle, mutation patterns, confirm dialog
5E2E testLocks in the whole feature

Non-CRUD Adaptations

Same principle, different slices:

  • Import flow: parse one row -> display one row -> validate + dedupe -> review + commit
  • Dashboard: one widget with real data -> empty/onboarding state -> layout with all widgets
  • Search/palette: one entity type -> all entity types -> quick actions
  • Multi-step wizard: first step end-to-end -> add steps one at a time -> final submission

Common Mistakes

MistakeCorrect Pattern
Building all API endpoints before any UIBuild one endpoint + its UI + its test, then the next
Starting UI before the backend is testedSlice 1 is backend-only with tests; prove the data layer first
Building the full create/edit/delete UI in one passCreate dialog first (slice 3), then edit + delete (slice 4)
Skipping verification between slicesRun tests and check output before starting the next slice
Making slices too large for one sessionSplit further; a slice that can't finish in one session is too big
Applying tracer bullets to trivial single-layer workSkip for one component, one utility, or patterns already proven

Delegation

  • Decompose into subtasks: Use the project's task tracker to create ordered vertical subtasks before writing code
  • Isolate each slice: Delegate each slice to a subagent so failures stay contained and context stays fresh
  • Find slice boundaries for non-CRUD work: Pick the smallest path through all layers as slice 1, then expand

References

No reference files. Source: Tracer Bullets: Keeping AI Slop Under Control

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.