一键导入
notify
Use to send notifications to my phone or computer about an event, update, or state change.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use to send notifications to my phone or computer about an event, update, or state change.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when needing an easily readable markdown version of any web page.
Use this skill to retrieve up-to-date documentation, API references, and code examples for any specific library, framework, SDK, CLI tool, or cloud service -- even for well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot. Your training data may not reflect recent API changes or version updates.
Use this skill whenever you are dealing with Node.js code to obtain domain-specific knowledge for building robust, performant, and maintainable Node.js applications.
Search the web using SearxNG, a locally-run meta search engine that aggregates results from multiple engines
Use ast-grep INSTEAD OF grep, rg, ripgrep, or read when searching for code patterns. Understands code structure (AST), not just text — finds function calls, class definitions, async patterns, missing error handling, and more with zero false positives from strings/comments. Always prefer over grep/rg for any code-structural search.
Code style, comment conventions, and formatting rules for all code changes. Covers whitespace, comment style, JavaScript/TypeScript idioms (nullish coalescing, single-line ifs, nullish checks, interface extraction), and unit test nesting. Use when writing, reviewing, or refactoring code.
| name | notify |
| description | Use to send notifications to my phone or computer about an event, update, or state change. |
To send a notification to my devices about something, use the ntfy API with the joshmock-pi-agent-events topic name.
curl \
-H "Authorization: Bearer $(pass agents/ntfy/pi)" \
-d "Something happened" \
https://ntfy.sh/joshmock-pi-agent-events
You can also set metadata like title, tags (mapped to emoji names), priority, and a clickable URL:
curl \
-H "Authorization: Bearer $(pass agents/ntfy/pi)" \
-H "Title: Unauthorized access detected" \
-H "Priority: urgent" \
-H "Tags: warning,skull" \
-H "Click: https://example.com/fix-it" \
-d "Remote access to josh-laptop detected." \
ntfy.sh/joshmock-pi-agent-events
Priority levels, in order of descending priority, are:
urgenthighdefaultlowminBasic markdown formatting is supported:
curl \
-H "Authorization: Bearer $(pass agents/ntfy/pi)" \
-d "**Something** happened" \
https://ntfy.sh/joshmock-pi-agent-events
Scheduled notifications are also supported:
curl \
-H "Authorization: Bearer $(pass agents/ntfy/pi)" \
-H "Delay: 3h"
-d "Something happened" \
https://ntfy.sh/joshmock-pi-agent-events
Supported delay time strings include:
163919473830m, 3h, 2 days10am, 8:30pm, tomorrow, 3pm, Tuesday, 7am