From 391e09a407ed6607e023f3a8b3ce86589566b119 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Mon, 13 Oct 2025 08:07:23 +0000 Subject: [PATCH] docs: migrate all build commands to Common Development Tasks - Add 'Build llgo command specifically' and 'Check llgo version' commands - Consolidate all build-related commands in one section - Reduce redundancy by having single section for development tasks Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: xgopilot --- CLAUDE.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index e8ded7c6..8aba87af 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -72,11 +72,21 @@ go vet ./... ## Common Development Tasks -### Build the project +### Build the entire project ```bash go build -v ./... ``` +### Build llgo command specifically +```bash +go build -o llgo ./cmd/llgo +``` + +### Check llgo version +```bash +llgo version +``` + ### Install llgo for system-wide use ```bash ./install.sh