Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CLI_BIN ?= $(BIN_DIR)/csgclaw-cli

ACR_REGISTRY ?= opencsg-registry.cn-beijing.cr.aliyuncs.com
IMAGE ?= $(ACR_REGISTRY)/opencsghq/picoclaw
TAG ?= 2026.5.27
TAG ?= 2026.6.8
DOCKER_EMBED_IMAGE_TAG ?= dev
PICOCLAW_IMAGE_TAG ?= $(DOCKER_EMBED_IMAGE_TAG)
LOCAL_IMAGE ?= picoclaw:local
Expand Down
2 changes: 1 addition & 1 deletion docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Alias targets `build-picoclaw-runtime-embed`, `stage-picoclaw-embed-dist`, and s
# Registry and tags (defaults shown)
ACR_REGISTRY=opencsg-registry.cn-beijing.cr.aliyuncs.com
DOCKER_EMBED_IMAGE_TAG=dev
PICOCLAW_BASE_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27
PICOCLAW_BASE_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8

# Example: build worker image with a custom tag
make build-picoclaw-worker-image DOCKER_EMBED_IMAGE_TAG=local
Expand Down
2 changes: 1 addition & 1 deletion docs/build.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ make stage-docker-embed-dist
# registry 与 tag(默认值)
ACR_REGISTRY=opencsg-registry.cn-beijing.cr.aliyuncs.com
DOCKER_EMBED_IMAGE_TAG=dev
PICOCLAW_BASE_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27
PICOCLAW_BASE_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8

# 示例:自定义 tag 构建 worker 镜像
make build-picoclaw-worker-image DOCKER_EMBED_IMAGE_TAG=local
Expand Down
4 changes: 2 additions & 2 deletions internal/templates/embed/picoclaw-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
# Manual build:
# make stage-docker-embed-cli
# docker build -f internal/templates/embed/picoclaw-manager/Dockerfile \
# --build-arg PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27 \
# --build-arg PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8 \
# -t picoclaw-manager:local .

ARG PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27
ARG PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8

FROM ${PICOCLAW_IMAGE}

Expand Down
4 changes: 2 additions & 2 deletions internal/templates/embed/picoclaw-worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
# Manual build:
# make stage-docker-embed-cli
# docker build -f internal/templates/embed/picoclaw-worker/Dockerfile \
# --build-arg PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27 \
# --build-arg PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8 \
# -t picoclaw-worker:local .

ARG PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27
ARG PICOCLAW_IMAGE=opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8

FROM ${PICOCLAW_IMAGE}

Expand Down
2 changes: 1 addition & 1 deletion web/app/tests/components/AgentActions.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ describe("agent action visibility", () => {
});

it("shows long agent image values with full hover text and full-row alignment", () => {
const image = "opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27";
const image = "opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8";
render(
<AgentDetailPane
item={{ ...worker, image }}
Expand Down
4 changes: 2 additions & 2 deletions web/app/tests/components/ManagerRebuildModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("ManagerRebuildModal", () => {
const onImageChange = vi.fn();
const onClose = vi.fn();
const onConfirm = vi.fn();
const managerImage = "opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.27";
const managerImage = "opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.6.8";
const localImage = "opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/picoclaw:2026.5.22";
const alternateImage = "picoclaw:alternate";

Expand Down Expand Up @@ -66,7 +66,7 @@ describe("ManagerRebuildModal", () => {
const selectedImageLabel = imageSelect.querySelector(".manager-rebuild-image-option");
expect(selectedImageLabel).toBeInTheDocument();
expect(selectedImageLabel?.querySelector(".manager-rebuild-image-name")).toHaveTextContent("picoclaw");
expect(selectedImageLabel?.querySelector(".manager-rebuild-image-tag")).toHaveTextContent(":2026.5.27");
expect(selectedImageLabel?.querySelector(".manager-rebuild-image-tag")).toHaveTextContent(":2026.6.8");
expect(selectedImageLabel?.querySelector(".manager-rebuild-image-context")).toHaveTextContent(
"opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq",
);
Expand Down
Loading