/floating-clock:install
Install the FloatingClock macOS app from this plugin's source to /Applications/ so it's available from Spotlight, Launchpad, and Finder.
Self-Evolving Skill: This skill improves through use. If the build, copy, or launch step breaks (signing change, path drift, macOS gatekeeper update) — fix this file immediately, don't defer. Only update for real, reproducible issues.
Steps
Resolve plugin root:
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/floating-clock}" if [ ! -f "$PLUGIN_ROOT/Makefile" ]; then echo "ERROR: plugin root not found at $PLUGIN_ROOT" >&2 exit 1 fiBuild, bundle, sign:
cd "$PLUGIN_ROOT" && make allCopy to /Applications:
cp -R "$PLUGIN_ROOT/build/FloatingClock.app" /Applications/Launch:
open /Applications/FloatingClock.appConfirm:
Installed to
/Applications/FloatingClock.appand launched. The app is now discoverable via Spotlight (⌘Space → FloatingClock) and Launchpad. Right-click the clock for options.
Post-Execution Reflection
After this skill completes, check before closing:
- Did
make allproduce the expectedbuild/FloatingClock.app? — If not, fix the Makefile or the build prerequisite. - Did the copy/launch step succeed silently? — If macOS prompted (gatekeeper, permission), document the bypass.
- Did paths drift? — Plugin root, Makefile target, or app bundle name change → update the script.
Only update if the issue is real and reproducible — not speculative.