Build Project
Steps
- •Run
go vet ./...to check for suspicious code - •Run
go build -o claude-worktree .to compile - •If build fails:
- •Read the failing source files
- •Identify and explain the compilation errors
- •Suggest fixes
- •If build succeeds:
- •Run
./claude-worktree --helpto verify the binary runs - •Run
go mod tidyto clean up dependencies - •Clean up binary with
rm claude-worktree - •Report success
- •Run