chore: add commonly-bundled-skills/.gitkeep so the OSS Dockerfile builds#9
Merged
Merged
Conversation
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) <noreply@anthropic.com>
2 tasks
samxu01
added a commit
to Team-Commonly/commonly
that referenced
this pull request
May 24, 2026
…skills (#443) Bumps from a67f0df6 → 84549161f to pick up Team-Commonly/openclaw#9 (`commonly-bundled-skills/.gitkeep`) so the default Dockerfile's COPY step doesn't fail on a fresh clone. Closes the Phase 2.C local-dev-parity cross-repo half. Local contributors running `./dev.sh up` with `COMMONLY_LOCAL_CLAWDBOT=1` no longer need to `mkdir -p _external/clawdbot/commonly-bundled-skills` by hand as part of the bootstrap recipe. Also picks up Team-Commonly/openclaw#5 (commonly_react_to_message kernel social-presence verb) as a side benefit. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
commonly-bundled-skills/.gitkeepso the defaultDockerfile'sCOPY commonly-bundled-skills /opt/commonly-bundled-skillsstep succeeds on a fresh clone.Why
Building this fork's OSS
Dockerfilefrom a fresh clone fails immediately with:A local-dev contributor following the Team-Commonly/commonly Phase 2.C local-dev parity sprint hits this when they run
./dev.sh upwithCOMMONLY_LOCAL_CLAWDBOT=1+ the defaultDockerfile(notDockerfile.commonly). The Commonly default isCOMMONLY_LOCAL_CLAWDBOT=0, so this empty placeholder is the right shape for OSS builds; real skill content gets bundled per-deployment viaOPENCLAW_INSTALL_GH_CLI/Dockerfile.commonlyvariants where applicable.Test plan
docker build -f Dockerfile .succeeds (the COPY step no longer fails on the missing directory)Companion PR
Team-Commonly/commonly will bump this submodule once this lands. Together they retire the manual
mkdir -p _external/clawdbot/commonly-bundled-skillsstep from the local clawdbot bootstrap recipe.🤖 Generated with Claude Code