From 34515a1c497a4737b83c16834728585a60ba9b72 Mon Sep 17 00:00:00 2001 From: Sam Xu Date: Sun, 24 May 2026 00:00:58 -0700 Subject: [PATCH] chore: add commonly-bundled-skills/.gitkeep so the OSS Dockerfile builds The default Dockerfile contains `COPY commonly-bundled-skills /opt/commonly-bundled-skills`. On a fresh clone of this repo, that directory doesn't exist, so the docker build step fails immediately: failed to compute cache key: failed to calculate checksum of ref ... ::"/commonly-bundled-skills": not found A local-dev contributor following the Team-Commonly/commonly Phase 2.C local-dev parity sprint hits this when they run `./dev.sh up` with COMMONLY_LOCAL_CLAWDBOT=1 + the default Dockerfile (not Dockerfile.commonly). The Commonly default is COMMONLY_LOCAL_CLAWDBOT=0, so this empty placeholder is the right shape for OSS builds; real skill content gets bundled per- deployment via OPENCLAW_INSTALL_GH_CLI / Dockerfile.commonly variants where applicable. Companion to Team-Commonly/commonly#?: local-dev parity will bump this submodule to include this commit, removing the last manual hack from the local clawdbot bootstrap recipe. Co-Authored-By: Claude Opus 4.7 (1M context) --- commonly-bundled-skills/.gitkeep | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 commonly-bundled-skills/.gitkeep diff --git a/commonly-bundled-skills/.gitkeep b/commonly-bundled-skills/.gitkeep new file mode 100644 index 0000000000000..f033297228442 --- /dev/null +++ b/commonly-bundled-skills/.gitkeep @@ -0,0 +1,10 @@ +# Placeholder so the Dockerfile's `COPY commonly-bundled-skills /opt/commonly-bundled-skills` +# step succeeds on a fresh clone. +# +# Local-dev contributors building the clawdbot gateway from this fork (with the +# default Dockerfile, not Dockerfile.commonly) need this directory to exist even +# when empty. See Team-Commonly/commonly Phase 2.C — local-dev parity for +# OpenClaw. The Commonly side default for clawdbot is COMMONLY_LOCAL_CLAWDBOT=0 +# (off), so this empty placeholder is the right shape for OSS-default builds; +# real skills get bundled at build time via OPENCLAW_INSTALL_GH_CLI / per-deployment +# variants.