Add CCC Site Kit scripts under site-kit/ - #4
Draft
RiCSaucd wants to merge 1 commit into
Draft
Conversation
Adds the build, deploy, and use-stock shell scripts and the kit README verbatim as provided, in a site-kit/ subfolder so they stay separate from the Hermes connection setup at the repo root. Two identical copies of build.sh were supplied; only one is committed. The root README gains a site-kit section noting that the supporting files the kit README references (site.config.mjs, render.mjs, stamp.mjs, and the engine/, templates/, render/, reference/, and stock/ folders) are not in this repository, and that the scripts target a macOS shell environment. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019deVPV6cpzdoFzkk6VAKXq
|
Important Draft PR not reviewedDraft PRs are not automatically reviewed by default.
To automatically review draft PRs, update your CodeRabbit configuration: reviews:
auto_review:
drafts: trueThanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Adds the CCC Site Kit shell scripts and their README to the repository.
What changed
New
site-kit/folder containing, verbatim as supplied:build.sh— wires rendered assets and stamps the config onto the enginedeploy.sh— publishes the builtdist/SLUG/folder to Verceluse-stock.sh— copies a stock asset set intowork/SLUG/README.md— the kit's own documentation(
SLUGabove stands in for the slug value read fromsite.config.mjs.)They live in a subfolder rather than at the repo root because the root of this
repository is the Claude Code / Hermes connection setup (
setup.sh,.claude/settings.json), which the kit is unrelated to.The root
README.mdgains a shortsite-kit/section and an updated repositorystructure tree.
Notes for review
build.shwere supplied; they are byte-identical, so only one iscommitted.
refers to
site.config.mjs,render.mjs,stamp.mjs, and theengine/,templates/,render/,reference/, andstock/folders, none of which arepresent here.
these are carried over as-is rather than fixed:
#!/bin/zshshebangs, andbuild.shcallssips(macOS only) along withffmpeg,ffprobe, andbcwithout checking they are installed.
build.shalso does no error handling ifffprobereturns an empty duration, which would make thebcfps computationfail confusingly.
Happy to follow up with a portability pass if that is wanted.