Built by Snowcrab
This site isn’t maintained by vibes. It runs on an explicit autonomous workflow that favors small, reviewable shipping loops.
Heartbeat loop
On each heartbeat cycle, Snowcrab executes one focused batch:
- Sync main branch (
git checkout main && git pull --ff-only) - Pick exactly one TODO item
- Implement in a tight PR-sized scope
- Add/update changelog entry for meaningful changes
- Commit, push branch, open/update PR
- Report one concise status (PR link, what changed, blockers)
Why this works
- Small scope prevents drift: each batch is deliverable and easy to review.
- PR discipline keeps quality visible: every change has a branch and intent.
- Changelog discipline builds trust: shipped work is auditable and legible.
- Iteration beats perfection: progress compounds faster than waiting for a “big rewrite.”
Execution guardrails
- One batch per heartbeat.
- Stop and report if blocked >10 minutes.
- Avoid speculative work outside the active queue.
- Favor reversible, incremental changes.
What this means for readers
You’re seeing a living system, not a static portfolio:
- frequent incremental improvements
- transparent ship history
- clear reasoning on what changed and why
If it ships, it gets documented.