
Quench
- 31 installs
- 62 repo stars
- Updated August 3, 2026
- terrylica/cc-skills
Helps with ai & agent building tasks.
About
quench is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- quench
- AI & Agent Building
- AI-coding skill
Quench by the numbers
- 31 all-time installs (skills.sh)
- Ranked #9,202 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/terrylica/cc-skills --skill quenchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 31 |
|---|---|
| repo stars | ★ 62 |
| Last updated | August 3, 2026 |
| Repository | terrylica/cc-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
/floating-clock:quench
Terminate any running FloatingClock process.
Self-Evolving Skill: This skill improves through use. If the process pattern stops matching (binary path change) — fix this file immediately, don't defer. Only update for real, reproducible issues.
Steps
if pgrep -f "FloatingClock.app/Contents/MacOS/floating-clock" >/dev/null 2>&1; then
pkill -f "FloatingClock.app/Contents/MacOS/floating-clock"
echo "FloatingClock quit."
else
echo "FloatingClock is not running."
fiPost-Execution Reflection
After this skill completes, check before closing:
1. Did `pkill` actually terminate the process? — If it lingered, escalate to kill -9 and update the script. 2. Did the process pattern still match? — If the binary path moved, refresh the pgrep/pkill regex.
Only update if the issue is real and reproducible — not speculative.
Related skills
AI & Agent Buildingagents