Add @obelisk-apps/cli with the existing build, search, query, and attune contract plus official skill installation. Separate the docs-only skill artifact, bootstrap installer, release layout, cross-platform CI, and package-level regression coverage.
22 lines
555 B
Bash
Executable File
22 lines
555 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SKILL_ARTIFACT="dist/obelisk-skill"
|
|
SKILL_REPO="dist/obelisk-skill-repo"
|
|
REMOTE="git@github.com:tommy0103/obelisk-skill.git"
|
|
|
|
if [ ! -f "$SKILL_ARTIFACT/SKILL.md" ] || [ ! -d "$SKILL_ARTIFACT/references" ]; then
|
|
echo "Error: run 'npm run build:skill' first" >&2
|
|
exit 1
|
|
fi
|
|
|
|
bash packaging/stage-skill-repo.sh "$SKILL_REPO" "$SKILL_ARTIFACT"
|
|
|
|
cd "$SKILL_REPO"
|
|
rm -rf .git
|
|
git init
|
|
git remote add origin "$REMOTE"
|
|
git add -A
|
|
git commit -m "publish: $(date -u +%Y-%m-%dT%H:%M:%SZ)"
|
|
git push --force origin HEAD:main
|