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.
npx agentmods add skills/okwinds/miscellany/dayapp-mobile-pushnpx skills add okwinds/miscellany --skill dayapp-mobile-pushgit clone --depth 1 https://github.com/okwinds/miscellanyWrote 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.
[](https://agentmods.dev/skills/okwinds/miscellany/dayapp-mobile-push)<a href="https://agentmods.dev/skills/okwinds/miscellany/dayapp-mobile-push"><img src="https://agentmods.dev/badge/skills/okwinds/miscellany/dayapp-mobile-push.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00055 | $0.00825 |
| Opus 5 | $0.00028 | $0.00413 |
| Sonnet 5 | $0.00011 | $0.00165 |
| Haiku 4.5 | $0.00006 | $0.00082 |
Grade A, and why
dayapp-mobile-push 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 5d ago.
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.
What it actually says
Dayapp Mobile Push
Overview
用 Day.app 接口发送手机告警推送。调用时先从当前任务上下文提炼 taskname 与 tasksummary,再直接触发 GET 请求。
Workflow
- 从当前任务上下文提炼参数:
taskname:不超过 6 个中文字符(英文场景建议不超过 12 个字母)tasksummary:不超过 25 个中文字符,或不超过 50 个英文字符
- 读取
config.json的deviceid、app_name与quiet_hours。 - 若
deviceid为空,立即提示用户并停止:- 配置位置:当前技能目录下的
./config.json - 配置方式:把
deviceid写入{"deviceid":"你的值"} - 获取方式:在 App Store 安装
Bark,打开 App 即可看到并复制deviceid
- 配置位置:当前技能目录下的
- 生成请求 URL:
- 标题前缀不是写死
Codex-,而是{应用名}-{taskname} group参数也不是写死值,而是与{应用名}保持一致app_name=auto时自动识别:Codex 环境用Codex-,Claude Code 环境用Claude-- 若当前时间在静音时段内:从 URL 参数里去掉
sound、level、volume - 若不在静音时段:保留
sound=alarm&level=critical&volume=5
- 标题前缀不是写死
- 发送 GET 请求。
Rules
- 只发送一次 GET 请求,不做重试风暴。
- 若
config.json缺少deviceid,先提示用户配置,再停止。 app_name默认auto;也可以手动写死,例如Codex、Claude。quiet_hours为可选;未配置时按非静音处理。- 发送前必须做长度约束;超长内容交给脚本自动截断。
- 不在消息中写入敏感信息(token、密码、cookie、内网地址等)。
Config
编辑同目录下 config.json:
{
"deviceid": "YOUR_DEVICE_ID",
"app_name": "auto",
"quiet_hours": {
"start": "23:00",
"end": "08:00"
}
}
说明:
app_nameauto:自动识别当前应用(Codex / Claude)- 其他值:手动指定前缀(会规范化,例如
Claude Code->Claude)
quiet_hours.start/quiet_hours.end使用HH:MM(24 小时制)- 支持跨天(如
23:00到08:00) - 在静音窗口内会自动移除
sound、level、volume
Command Reference
python3 scripts/send_dayapp_push.py --task-name "构建完成" --task-summary "CLI 构建与测试全部通过"
python3 scripts/send_dayapp_push.py --task-name "部署阻塞" --task-summary "生产发布被权限策略拦截" --dry-run
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 73 lines · 55 tokens per session scan A 5112ac54b99c
dayapp-mobile-push is a skill published in the GitHub repository okwinds/miscellany (50 stars, last pushed 3mo ago), licensed MIT. It adds 55 tokens to every session and 825 once invoked, about $0.0003 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-08-30.
Other skills, from other repositories
orca-emulator-android
Control an Android emulator / device from inside Orca using the orca CLI. Use for listing/booting AVDs, taps, swipes, typing, hardware buttons (incl. Back and Recents), rotation, app install/launch, runtime permissions, the accessibility tree, and logcat — driving a real adb-connected device or emulator.…
android-tombstone-symbolication
Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app…
dogfood
Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.
winapp-maui
Package and sign .NET MAUI Windows apps with winapp, resolving the resizetizer manifest dependency. Use when packaging or signing a .NET MAUI Windows app, building a MAUI MSIX or signed unpackaged build in CI, or fixing 'manifest contains unresolved placeholders ($placeholder$)' errors from winapp package.
apple-search-ads
When the user wants to set up, optimize, or scale Apple Search Ads (ASA) campaigns — including keyword bidding, match types, campaign structure, Creative Product Sets, CPP routing, and ROAS optimization. Use when the user mentions "Apple Search Ads", "ASA", "Search Ads", "Search tab ads", "Today tab ads", "CPT"…
android-pentest
安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.