skills/jb-tuna-script/SKILL.md
Use when adding, writing, fixing, or exposing a script for the Tuna macOS launcher.
npx skillsauth add bjesuiter/skills jb-tuna-scriptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when creating small scripts that should appear in Tuna.
~/Library/Scripts even in free mode.~/Library/Scripts/<command-name>.#!/usr/bin/env bash
# @tuna.name command-name
# @tuna.subtitle Short human-readable description
# @tuna.icon symbol:terminal
# @tuna.mode background
# @tuna.input none
# @tuna.output text
set -euo pipefail
export PATH="$HOME/.homebrew/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:$PATH"
exec command arg1 arg2
~/Library/Scripts/<name>.@tuna.name for display/search name.@tuna.subtitle for a short explanation.@tuna.icon optional; use an SF Symbol when obvious.@tuna.mode background for wrappers that should just run.@tuna.input none for no-argument scripts.@tuna.output text when command output is useful.chmod +x ~/Library/Scripts/<name>.~/Library/Scripts/<name> directly.#!/usr/bin/env bash
# @tuna.name pinchtab
# @tuna.subtitle Open the PinchTab dashboard
# @tuna.icon symbol:rectangle.connected.to.line.below
# @tuna.mode background
# @tuna.input none
# @tuna.output text
set -euo pipefail
export PATH="$HOME/.homebrew/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:$PATH"
exec pinchtab dashboard
Expected path:
~/Library/Scripts/pinchtab
Expected verification output:
Dashboard: http://127.0.0.1:9867
Token copied to clipboard — paste it on the login page.
Opened in your browser.
exec <command> so the script exits with the wrapped command's status.testing
Use when the user mentions Clawpatch/clawpatch.ai, semantic feature review, repo-wide AI audit, persistent findings, or clawpatch init/map/review/report/fix/revalidate.
development
Use when the user asks for autoreview, Codex/Claude second-model review, or final review of dirty changes, a branch, commit, or PR before ship.
testing
Use when the user asks to cut, prepare, publish, tag, or verify a release, especially npm/package releases.
development
Use when smoke-testing a local web app, reproducing frontend bugs, verifying browser flows, or gathering evidence through PinchTab.