Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
スマホ通知を ntfy で送信する運用を統一する。ユーザーが「スマホ通知も」「スマホにも通知」など明示的に要求した場合のみ通知し、`NTFY_TOPIC` の存在確認、タイトル規約 `[$REPO_NAME] {Codex|Claude Code} ...`、100-200字の要約ルールを守って `ntfy publish` を実行するときに使う。
~/.agents/skills/ntfy-mobile-notify/scripts/send_mobile_notification.sh を使って、スマホ通知を ntfy コマンドで送信する。
NTFY_TOPIC が設定されていることを確認する。ntfy publish -t "<title>" "$NTFY_TOPIC" "<message>" で送信する。タイトルは必ず [$REPO_NAME] {Codex|Claude Code} ${実行内容の要約} 形式にする。
REPO_NAME は次のコマンドで取得する。
REPO_NAME=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || echo "non-git")
Codex / Claude Code を自動選択する。--agent codex|claude で明示指定できる。NTFY_NOTIFY_AGENT=codex|claude でも上書きできる。NTFY_TOPIC を設定する。--summary に 100-200 文字の要約を指定する。--agent codex|claude で通知主体を指定する(省略時は自動判定)。--title-suffix でタイトル末尾を指定する(省略時は スマホ通知)。--dry-run で内容確認後に本送信する。NTFY_TOPIC: 必須。通知先トピック。NTFY_NOTIFY_AGENT: 任意。codex または claude を指定して自動判定を上書きする。REPO_NAME=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || echo "non-git")
npx skills add yuki-yano/dotfiles --skill ntfy-mobile-notifyHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.