<< All versions
Skill v1.0.1
currentAutomated scan100/100terrylica/cc-skills/launch
+3 new
──Details
PublishedAugust 10, 2026 at 06:38 AM
Content Hashsha256:6be75ec1d9444a73...
Git SHA265421d2dad2
Bump Typepatch
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 45 lines · 1.6 KB
version: "1.0.1" name: launch description: Launch FloatingClock. Prefers the installed /Applications version; falls back to the local build. Use when the user wants to open the. allowed-tools: Bash
/floating-clock:launch
Open the FloatingClock app.
Self-Evolving Skill: This skill improves through use. If the launch path or fallback logic breaks — fix this file immediately, don't defer. Only update for real, reproducible issues.
Steps
Prefer the installed app; fall back to the local build if the user hasn't installed yet:
bash
if [ -d /Applications/FloatingClock.app ]; thenopen /Applications/FloatingClock.appecho "Launched from /Applications/"elsePLUGIN_ROOT="$(cc-plugin-root floating-clock)"LOCAL_APP="$PLUGIN_ROOT/build/FloatingClock.app"if [ -d "$LOCAL_APP" ]; thenopen "$LOCAL_APP"echo "Launched from local build at $LOCAL_APP"echo "Tip: run /floating-clock:install to put it in /Applications/ for Spotlight access."elseecho "No app found. Run /floating-clock:install first."exit 1fifi
Post-Execution Reflection
After this skill completes, check before closing:
- Did `open` succeed silently? — If macOS surfaced a gatekeeper prompt, document the bypass.
- Did the fallback to local build trigger when expected? — If the user has the installed app but it's stale, the system path wins; that's intentional.
- Did paths drift? —
/Applications/FloatingClock.appor local build path change → update the script.
Only update if the issue is real and reproducible — not speculative.