{"id":50999806,"url":"https://github.com/hb0730/bark-skill","last_synced_at":"2026-06-20T13:30:31.372Z","repository":{"id":365040747,"uuid":"1186941907","full_name":"hb0730/bark-skill","owner":"hb0730","description":"Use when sending push notifications to iPhone via Bark app, including simple alerts, time-sensitive reminders, encrypted messages, or notification grouping scenarios.","archived":false,"fork":false,"pushed_at":"2026-03-20T09:10:22.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-15T16:38:57.543Z","etag":null,"topics":["bark","claude-code-skill","openclaw-skill","skills"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hb0730.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-20T06:47:39.000Z","updated_at":"2026-04-07T02:17:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hb0730/bark-skill","commit_stats":null,"previous_names":["hb0730/bark-skill"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/hb0730/bark-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hb0730%2Fbark-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hb0730%2Fbark-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hb0730%2Fbark-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hb0730%2Fbark-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hb0730","download_url":"https://codeload.github.com/hb0730/bark-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hb0730%2Fbark-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34572422,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bark","claude-code-skill","openclaw-skill","skills"],"created_at":"2026-06-20T13:30:28.049Z","updated_at":"2026-06-20T13:30:31.365Z","avatar_url":"https://github.com/hb0730.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bark-skill\n\n\u003e An [Agent Skill](https://agentskills.io) for sending iPhone push notifications via [Bark](https://github.com/Finb/Bark).\n\u003e\n\u003e 通过 [Bark](https://github.com/Finb/Bark) 向 iPhone 推送通知的 Agent Skill。\n\n## Requirements / 环境要求\n\n- Bark iOS app installed, with `BARK_KEY` obtained from the app home screen\n- 已安装 Bark iOS App，并从首页获取 `BARK_KEY`\n- Internet access to `https://api.day.app` (or a self-hosted Bark server)\n- 可访问 `https://api.day.app`（或自托管 Bark 服务器）\n\n## Usage / 使用方法\n\n### Quick Start / 快速开始\n\n```bash\nexport BARK_KEY=\"your_device_key\"\n\n# Body only / 仅正文\n./scripts/send-bark.sh \"Hello from agent\"\n\n# Title + body / 标题 + 正文\n./scripts/send-bark.sh \"Title\" \"Body\"\n\n# Time-sensitive, bypass Do Not Disturb / 时效性通知，穿透勿扰\n./scripts/send-bark.sh \"Reminder\" \"Meeting in 5 minutes\" --level timeSensitive\n\n# Persistent ring + group / 持续响铃 + 分组\n./scripts/send-bark.sh \"Alert\" \"Service down\" --call 1 --group monitor\n\n# Auto-copy to clipboard / 自动复制到剪贴板\n./scripts/send-bark.sh \"OTP\" \"123456\" --copy 123456\n```\n\n### Script Parameters / 脚本参数\n\n| Parameter / 参数 | Description / 说明 |\n|---|---|\n| `--subtitle` | Subtitle / 副标题 |\n| `--level` | `active`(default) / `timeSensitive` / `passive` |\n| `--sound` | Notification sound / 铃声名称 |\n| `--group` | Notification group / 通知分组 |\n| `--url` | URL to open on tap / 点击跳转链接 |\n| `--badge` | App icon badge number / 角标数字 |\n| `--icon` | Notification icon URL (iOS 15+) / 通知图标 |\n| `--copy` | Text to copy to clipboard / 复制到剪贴板的内容 |\n| `--call` | `1` = ring for 30s / 持续响铃 30 秒 |\n| `--archive` | `1` = save to history (default) / 保存到历史记录 |\n\n### Environment Variables / 环境变量\n\n| Variable / 变量 | Required / 必填 | Default / 默认值 | Description / 说明 |\n|---|---|---|---|\n| `BARK_KEY` | Yes / 是 | — | Device key from Bark app / Bark App 设备 Key |\n| `BARK_SERVER` | No / 否 | `https://api.day.app` | Bark server URL / 服务器地址 |\n\n## As an Agent Skill / 作为 Agent Skill 使用\n\nThis repository follows the [Agent Skills specification](https://agentskills.io/specification). Place it in your agent's skills directory and the agent will automatically use it when push notifications are needed.\n\n本仓库遵循 [Agent Skills 规范](https://agentskills.io/specification)。将其放入 agent 的 skills 目录后，agent 会在需要推送通知时自动调用。\n\n```\n~/.claude/skills/\n└── bark-skill/\n    ├── SKILL.md\n    └── scripts/\n        └── send-bark.sh\n```\n\n## License\n\n[MIT](LICENSE) © 2026 hb0730\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhb0730%2Fbark-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhb0730%2Fbark-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhb0730%2Fbark-skill/lists"}