429f3143e5
Move the skill into skills/watch/ so SKILL.md and its scripts/ runtime are
siblings inside one folder. `npx skills add` (Codex/Cursor/Copilot/agents) now
copies a working skill as a unit; previously it grabbed the root SKILL.md alone
and left scripts/ behind, so the skill was dead on arrival on every non-Claude
host. Mirrors the layout last30days-skill adopted for the same reason.
- skills/watch/{SKILL.md,scripts/}: self-contained skill folder
- SKILL.md: resolve a harness-agnostic $SKILL_DIR (the dir it was Read from)
instead of the Claude-Code-only ${CLAUDE_SKILL_DIR}; guard + 19 call sites
- drop commands/watch.md: /watch derives from frontmatter (name + user-invocable)
- .codex-plugin/plugin.json: full manifest with "skills": "./skills/" + interface
- add .agents/plugins/marketplace.json, AGENTS.md, CLAUDE.md, .skillignore
- build-skill.sh: archive the skills/watch subtree (one SKILL.md, no zip -d)
- fix paths in tests, hooks hint, .gitattributes, release.yml
- relocate dev-sync.sh to repo root and fix REPO_ROOT
- README: content-ideas structure, npx skills install, star history
Verified: 37/37 tests pass; npx skills add bundles the full scripts/ runtime;
manifests valid; versions synced at 0.1.3.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
1.4 KiB
Bash
Executable File
40 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# build-skill.sh — package the watch skill as a claude.ai-upload-ready .skill file.
|
|
# Usage: bash skills/watch/scripts/build-skill.sh (run from anywhere)
|
|
#
|
|
# Produces dist/watch.skill, a zip with a single top-level `watch/` directory
|
|
# containing SKILL.md and the scripts/ runtime from skills/watch. Archiving the
|
|
# skills/watch subtree directly keeps the bundle to exactly one SKILL.md and
|
|
# well under claude.ai's 200-file cap, with no post-hoc `zip -d` stripping.
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(cd "$(dirname "$0")/../../.." && pwd)"
|
|
cd "$REPO_ROOT"
|
|
|
|
if ! git diff --quiet || ! git diff --cached --quiet; then
|
|
echo "error: working tree is dirty; commit or stash before building" >&2
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p dist
|
|
OUT="dist/watch.skill"
|
|
git archive --format=zip --prefix=watch/ --output="$OUT" HEAD:skills/watch
|
|
|
|
COUNT=$(unzip -l "$OUT" | tail -1 | awk '{print $2}')
|
|
SIZE=$(du -h "$OUT" | cut -f1)
|
|
|
|
if [ "$COUNT" -gt 200 ]; then
|
|
echo "error: $COUNT files in zip, claude.ai's cap is 200" >&2
|
|
echo " trim the skills/watch/ tree or add a .gitattributes export-ignore entry" >&2
|
|
exit 1
|
|
fi
|
|
|
|
SKILL_MD_COUNT=$(unzip -l "$OUT" | grep -c "SKILL.md" || true)
|
|
if [ "$SKILL_MD_COUNT" -ne 1 ]; then
|
|
echo "error: expected exactly one SKILL.md, found $SKILL_MD_COUNT" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "built $OUT ($COUNT files, $SIZE)"
|
|
echo "upload via the claude.ai skill UI"
|