docs: add project guide for Claude #1

Closed
mvhutz wants to merge 16 commits from docs/claude-guide into main
Showing only changes of commit 24fdc1c17c - Show all commits

View File

@@ -1,6 +1,17 @@
BINARY_NAME=lambda
.PHONY: it run profile explain graph clean
.PHONY: help it run profile explain graph clean
help:
@ echo "Available targets:"
@ echo " it - Build the lambda binary"
@ echo " run - Build and run with sample input (default: simple.txt)"
@ echo " profile - Build and run with CPU profiling enabled"
@ echo " explain - Run with explanation mode and profiling"
@ echo " graph - Generate CPU profile visualization"
@ echo " clean - Remove build artifacts"
@ echo ""
@ echo "Usage: make run TEST=<sample-name>"
it:
@ go build -o ${BINARY_NAME} ./cmd/lambda