Skip to content

Commit 747f5f6

Browse files
chore: update project branding and env var naming
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 0a8709d commit 747f5f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+626
-626
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.git
22
.gitignore
33
build/
4-
.picoclaw/
4+
.v1claw/
55
config/
66
.env
77
.env.example

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
## Quick Summary
1111

1212
## Environment & Tools
13-
- **PicoClaw Version:** (e.g., v0.1.2 or commit hash)
13+
- **V1Claw Version:** (e.g., v0.1.2 or commit hash)
1414
- **Go Version:** (e.g., go 1.22)
1515
- **AI Model & Provider:** (e.g., GPT-4o via OpenAI / DeepSeek via SiliconFlow)
1616
- **Operating System:** (e.g., Ubuntu 22.04 / macOS / Android Termux)

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
GHCR_REGISTRY: ghcr.io
13-
GHCR_IMAGE_NAME: ${{ github.repository_owner }}/picoclaw
13+
GHCR_IMAGE_NAME: ${{ github.repository_owner }}/v1claw
1414
DOCKERHUB_REGISTRY: docker.io
1515
DOCKERHUB_IMAGE_NAME: ${{ vars.DOCKERHUB_REPOSITORY }}
1616

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ build/
88
*.dylib
99
*.test
1010
*.out
11-
/picoclaw
12-
/picoclaw-test
13-
cmd/picoclaw/workspace
11+
/v1claw
12+
/v1claw-test
13+
cmd/v1claw/workspace
1414

15-
# Picoclaw specific
15+
# V1Claw specific
1616

17-
# PicoClaw
18-
.picoclaw/
17+
# V1Claw
18+
.v1claw/
1919
config.json
2020
sessions/
2121
build/

.goreleaser.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ version: 2
55
before:
66
hooks:
77
- go mod tidy
8-
- go generate ./cmd/picoclaw
8+
- go generate ./cmd/v1claw
99

1010
builds:
11-
- id: picoclaw
11+
- id: v1claw
1212
env:
1313
- CGO_ENABLED=0
1414
goos:
@@ -23,18 +23,18 @@ builds:
2323
- s390x
2424
- mips64
2525
- arm
26-
main: ./cmd/picoclaw
26+
main: ./cmd/v1claw
2727
ignore:
2828
- goos: windows
2929
goarch: arm
3030

3131
dockers_v2:
32-
- id: picoclaw
32+
- id: v1claw
3333
dockerfile: Dockerfile.goreleaser
3434
ids:
35-
- picoclaw
35+
- v1claw
3636
images:
37-
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY_OWNER }}/picoclaw"
37+
- "ghcr.io/{{ .Env.GITHUB_REPOSITORY_OWNER }}/v1claw"
3838
- "docker.io/{{ .Env.DOCKERHUB_IMAGE_NAME }}"
3939
tags:
4040
- "{{ .Tag }}"

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ============================================================
2-
# Stage 1: Build the picoclaw binary
2+
# Stage 1: Build the v1claw binary
33
# ============================================================
44
FROM golang:1.26.0-alpine AS builder
55

@@ -27,10 +27,10 @@ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
2727
CMD wget -q --spider http://localhost:18790/health || exit 1
2828

2929
# Copy binary
30-
COPY --from=builder /src/build/picoclaw /usr/local/bin/picoclaw
30+
COPY --from=builder /src/build/v1claw /usr/local/bin/v1claw
3131

32-
# Create picoclaw home directory
33-
RUN /usr/local/bin/picoclaw onboard
32+
# Create v1claw home directory
33+
RUN /usr/local/bin/v1claw onboard
3434

35-
ENTRYPOINT ["picoclaw"]
35+
ENTRYPOINT ["v1claw"]
3636
CMD ["gateway"]

Dockerfile.goreleaser

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG TARGETPLATFORM
44

55
RUN apk add --no-cache ca-certificates tzdata
66

7-
COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw
7+
COPY $TARGETPLATFORM/v1claw /usr/local/bin/v1claw
88

9-
ENTRYPOINT ["picoclaw"]
9+
ENTRYPOINT ["v1claw"]
1010
CMD ["gateway"]

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 PicoClaw contributors
3+
Copyright (c) 2026 V1Claw contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -22,4 +22,4 @@ SOFTWARE.
2222

2323
---
2424

25-
PicoClaw is heavily inspired by and based on [nanobot](https://github.com/HKUDS/nanobot) by HKUDS.
25+
V1Claw is heavily inspired by and based on [nanobot](https://github.com/HKUDS/nanobot) by HKUDS.

Makefile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: all build install uninstall clean help test
22

33
# Build variables
4-
BINARY_NAME=picoclaw
4+
BINARY_NAME=v1claw
55
BUILD_DIR=build
66
CMD_DIR=cmd/$(BINARY_NAME)
77
MAIN_GO=$(CMD_DIR)/main.go
@@ -23,8 +23,8 @@ INSTALL_BIN_DIR=$(INSTALL_PREFIX)/bin
2323
INSTALL_MAN_DIR=$(INSTALL_PREFIX)/share/man/man1
2424

2525
# Workspace and Skills
26-
PICOCLAW_HOME?=$(HOME)/.picoclaw
27-
WORKSPACE_DIR?=$(PICOCLAW_HOME)/workspace
26+
V1CLAW_HOME?=$(HOME)/.v1claw
27+
WORKSPACE_DIR?=$(V1CLAW_HOME)/workspace
2828
WORKSPACE_SKILLS_DIR=$(WORKSPACE_DIR)/skills
2929
BUILTIN_SKILLS_DIR=$(CURDIR)/skills
3030

@@ -72,15 +72,15 @@ generate:
7272
@$(GO) generate ./...
7373
@echo "Run generate complete"
7474

75-
## build: Build the picoclaw binary for current platform
75+
## build: Build the v1claw binary for current platform
7676
build: generate
7777
@echo "Building $(BINARY_NAME) for $(PLATFORM)/$(ARCH)..."
7878
@mkdir -p $(BUILD_DIR)
7979
@$(GO) build $(GOFLAGS) $(LDFLAGS) -o $(BINARY_PATH) ./$(CMD_DIR)
8080
@echo "Build complete: $(BINARY_PATH)"
8181
@ln -sf $(BINARY_NAME)-$(PLATFORM)-$(ARCH) $(BUILD_DIR)/$(BINARY_NAME)
8282

83-
## build-all: Build picoclaw for all platforms
83+
## build-all: Build v1claw for all platforms
8484
build-all: generate
8585
@echo "Building for multiple platforms..."
8686
@mkdir -p $(BUILD_DIR)
@@ -92,7 +92,7 @@ build-all: generate
9292
GOOS=windows GOARCH=amd64 $(GO) build $(LDFLAGS) -o $(BUILD_DIR)/$(BINARY_NAME)-windows-amd64.exe ./$(CMD_DIR)
9393
@echo "All builds complete"
9494

95-
## install: Install picoclaw to system and copy builtin skills
95+
## install: Install v1claw to system and copy builtin skills
9696
install: build
9797
@echo "Installing $(BINARY_NAME)..."
9898
@mkdir -p $(INSTALL_BIN_DIR)
@@ -101,19 +101,19 @@ install: build
101101
@echo "Installed binary to $(INSTALL_BIN_DIR)/$(BINARY_NAME)"
102102
@echo "Installation complete!"
103103

104-
## uninstall: Remove picoclaw from system
104+
## uninstall: Remove v1claw from system
105105
uninstall:
106106
@echo "Uninstalling $(BINARY_NAME)..."
107107
@rm -f $(INSTALL_BIN_DIR)/$(BINARY_NAME)
108108
@echo "Removed binary from $(INSTALL_BIN_DIR)/$(BINARY_NAME)"
109109
@echo "Note: Only the executable file has been deleted."
110110
@echo "If you need to delete all configurations (config.json, workspace, etc.), run 'make uninstall-all'"
111111

112-
## uninstall-all: Remove picoclaw and all data
112+
## uninstall-all: Remove v1claw and all data
113113
uninstall-all:
114114
@echo "Removing workspace and skills..."
115-
@rm -rf $(PICOCLAW_HOME)
116-
@echo "Removed workspace: $(PICOCLAW_HOME)"
115+
@rm -rf $(V1CLAW_HOME)
116+
@echo "Removed workspace: $(V1CLAW_HOME)"
117117
@echo "Complete uninstallation done!"
118118

119119
## clean: Remove build artifacts
@@ -147,13 +147,13 @@ update-deps:
147147
## check: Run vet, fmt, and verify dependencies
148148
check: deps fmt vet test
149149

150-
## run: Build and run picoclaw
150+
## run: Build and run v1claw
151151
run: build
152152
@$(BUILD_DIR)/$(BINARY_NAME) $(ARGS)
153153

154154
## help: Show this help message
155155
help:
156-
@echo "picoclaw Makefile"
156+
@echo "v1claw Makefile"
157157
@echo ""
158158
@echo "Usage:"
159159
@echo " make [target]"
@@ -169,7 +169,7 @@ help:
169169
@echo ""
170170
@echo "Environment Variables:"
171171
@echo " INSTALL_PREFIX # Installation prefix (default: ~/.local)"
172-
@echo " WORKSPACE_DIR # Workspace directory (default: ~/.picoclaw/workspace)"
172+
@echo " WORKSPACE_DIR # Workspace directory (default: ~/.v1claw/workspace)"
173173
@echo " VERSION # Version string (default: git describe)"
174174
@echo ""
175175
@echo "Current Configuration:"

0 commit comments

Comments
 (0)