launch

launch is a skill for Claude Code, Codex from terrylica/cc-skills. It costs 30 tokens per session (371 once invoked), scanned A, original, MIT.

A launch skill for opening the FloatingClock macOS app. It prefers the installed copy and can open a local build if the app has not been installed.

In plain words
What is it for?
Use it to open FloatingClock from /Applications or from its local build directory.
Why use it?
It avoids manually locating the application and provides a fallback when only the local build exists. If neither copy exists, it tells you to install it first.

Skill for Claude CodeCodex

Part of the floating-clock plugin — 5 skills shipped together , and of cc-skills

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/terrylica/cc-skills/launch
Any agent
npx skills add terrylica/cc-skills --skill launch
Clone the repo
git clone --depth 1 https://github.com/terrylica/cc-skills

Made for: Claude Code, Codex.

Or install floating-clock, the plugin that ships this one along with the rest of its 5 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for launch

README.md
[![agentmods](https://agentmods.dev/badge/skills/terrylica/cc-skills/launch.svg)](https://agentmods.dev/skills/terrylica/cc-skills/launch)
Your own site
<a href="https://agentmods.dev/skills/terrylica/cc-skills/launch"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/launch.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 371 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00030 $0.00371
Opus 5 $0.00015 $0.00186
Sonnet 5 $0.00006 $0.00074
Haiku 4.5 $0.00003 $0.00037

Measured today against content hash 6be75ec1d944, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

launch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/floating-clock/skills/launch/SKILL.md · 44 lines

What it actually says

/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:

if [ -d /Applications/FloatingClock.app ]; then
  open /Applications/FloatingClock.app
  echo "Launched from /Applications/"
else
  PLUGIN_ROOT="$(cc-plugin-root floating-clock)"
  LOCAL_APP="$PLUGIN_ROOT/build/FloatingClock.app"
  if [ -d "$LOCAL_APP" ]; then
    open "$LOCAL_APP"
    echo "Launched from local build at $LOCAL_APP"
    echo "Tip: run /floating-clock:install to put it in /Applications/ for Spotlight access."
  else
    echo "No app found. Run /floating-clock:install first."
    exit 1
  fi
fi

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did open succeed silently? — If macOS surfaced a gatekeeper prompt, document the bypass.
  2. 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.
  3. Did paths drift?/Applications/FloatingClock.app or local build path change → update the script.

Only update if the issue is real and reproducible — not speculative.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 44 lines · 30 tokens per session scan A 6be75ec1d944

Subscribe to this mod's changes

launch is a skill published in the GitHub repository terrylica/cc-skills (62 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 371 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.