
STAN establishes a grounded, "AI-first" development cycle.
Instead of "magic," the AI works from the Ground Truth generated by your tools. You commit every step—broken or fixed—so you can rewind instantly.
This is the Reality Check. The AI cannot know if code works just by reading it. It needs evidence.
stan run.
test, lint, build, knip, docs, smoke, etc.)..stan/output/*.txt) representing the comprehensive state of your project.git commit -am "...".
Decision Point:
This is the Context Bridge. You prepare the artifacts the AI needs to understand the current state.
stan snap.
archive.diff.tar will contain only changes made after this point.archive.tar (The full repo).archive.diff.tar (The delta—keeps context usage low)..stan/output/*.txt)—the Ground Truth.This is the Center of Gravity. Here, the assistant acts as architect and engineer.
stan.requirements.md) and the dev plan (stan.todo.md).stan patch to apply the changes locally.Transition: Go immediately to Run to generate new truth and save the game.
Long context windows eventually degrade. To switch threads without losing momentum:
handoff.archive.tar.STAN verifies the signature and resumes work instantly.
test.txt output you just generated.knip, tsc, docs, or smoke tests to your stan.config.yml. If a script produces text output, STAN can use it to verify integrity.archive.diff.tar for most turns. It’s tiny and keeps the assistant focused on recent changes.stan patch --check if you're unsure about a complex refactor.