From bf58dba643560197b6848998706ab4d4626103f8 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 17 Mar 2026 07:09:41 +0000 Subject: [PATCH] docs(claude.md): add Getting Started section with workspace and test setup Adds a concise Getting Started section covering: - Go workspace requirement and go work sync - First test command (go test ./... -count=1) - Module directory layout (store.go and scope.go) Co-Authored-By: Virgil --- CLAUDE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 127e2ff..004b238 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -6,6 +6,14 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co SQLite key-value store with TTL, namespace isolation, and reactive events. Pure Go (no CGO). Module: `forge.lthn.ai/core/go-store` +## Getting Started + +Part of the Go workspace at `~/Code/go.work`—run `go work sync` after cloning. Single Go package with `store.go` (core) and `scope.go` (scoping/quota). + +```bash +go test ./... -count=1 +``` + ## Commands ```bash -- 2.45.3