mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 00:02:31 +00:00
Private skill files are now stored and versioned in a separate internal repo; a setup hook populates .claude/skills and .agents/skills with machine-local symlinks instead. This keeps contributor-facing patterns (agent skills in the tree) while allowing some skills to be developed privately. - Remove tracked skill files (62 files across 7 skill dirs). - Gitignore the now machine-local skill directories. - Add an env-gated hook to orca.yaml scripts.setup. Runs a setup script whose path lives in $ORCA_INTERNAL_DEV_SETUP when present; silently no-ops for public contributors. No new contributor-facing requirements: the hook is optional, the env var is only set by internal tooling, and the setup itself runs in the worktree that Orca just created. Co-authored-by: Orca <help@stably.ai>
8 lines
334 B
YAML
8 lines
334 B
YAML
scripts:
|
|
setup: |
|
|
pnpm install
|
|
# Internal Stably dev setup: populates .claude/skills and .agents/skills
|
|
# from a private repo. Silent no-op for public contributors (env unset).
|
|
[ -n "$ORCA_INTERNAL_DEV_SETUP" ] && [ -x "$ORCA_INTERNAL_DEV_SETUP" ] && \
|
|
"$ORCA_INTERNAL_DEV_SETUP" "$ORCA_WORKTREE_PATH" || true
|