From acb47a5e2b0e5d5cf60e0a5d7857ceb1e907963b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sun, 15 Mar 2026 16:07:56 -0700 Subject: [PATCH 1/2] feat: add go::generate and go::docs to ready recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- justfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/justfile b/justfile index a60578d..20ff2be 100644 --- a/justfile +++ b/justfile @@ -28,5 +28,7 @@ test: # Format and lint before committing ready: + just go::generate + just go::docs just go::fmt just go::vet From 6b8eef07c8840ca178c03daf4682143315111d2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sun, 15 Mar 2026 16:10:26 -0700 Subject: [PATCH 2/2] docs: document just ready in development guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- docs/development.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/development.md b/docs/development.md index ed88689..93e2460 100644 --- a/docs/development.md +++ b/docs/development.md @@ -73,6 +73,15 @@ go test -run TestName -v ./pkg/server/... # Run a single test `TestFooNilResponse` methods. - Use `golang/mock` for mocking interfaces. +## Before committing + +Run `just ready` before committing to ensure generated code, package docs, +formatting, and lint are all up to date: + +```bash +just ready # go::generate, go::docs, go::fmt, go::vet +``` + ## Branching All changes should be developed on feature branches. Create a branch from