vibgineerv0.1

vibgineer · a working catalog

The tools that make AI coding actually ship.

Curated by hand. Free forever. If you write code with AI, this is the bookmark you don't lose.

◇ vibgineer / morph.field
◆ swarm · 5 words · cycle 3.5s

◆ start here

New to vibe coding? Install these three first.

§01 / the toolkit

What you need to be an effective vibe engineer.

Six categories of pieces that compound. Browse what's already documented; the rest are coming as I get to them. Entries with write-ups are tools I run on my own machine.

◆ from the manifesto

The vibe coder is not replacing the engineer. They are the field condition — a noisy, parametric system that produces emergent software when tuned by someone with taste.

— vibgineer · field notes / vol. 001

§02 / tactics

Six parameters that move the system.

01param · prompting

Lead with the stack.

State your framework, runtime, and hard constraints in the first line of the prompt. Models default to safe averages otherwise.

range[0,1]seed/06d579
02param · workflow

Plan before edit.

Switch to plan / agent mode for any change touching more than two files. Cheaper than fixing a sprawling diff after the fact.

range[0,1]seed/dd1263
03param · workflow

Read before write.

Make the model open and quote related files before letting it write new code. Hallucinated APIs vanish when the source is in context.

range[0,1]seed/2f0c39
04param · cost

Cache the system prompt.

Prompt caching cuts cost ~10x on repeated context. Worth it for any agent loop that runs longer than a single turn.

range[0,1]seed/8f2e45
05param · workflow

One artifact per turn.

Don't let an agent ship code AND write tests AND update docs in one breath. Sequence the work so each diff is reviewable.

range[0,1]seed/046d9c
06param · architecture

Pin model versions.

Models silently improve and silently regress. Pin the exact snapshot for production tools and re-evaluate on a schedule.

range[0,1]seed/3779d1