소스 정보
- 저장소
- uvwt/agentdock-skills
- 최근 소스 활동
- 2026년 8월 2일 07:16
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 2
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/uvwt/agentdock-skills --skill ntfy명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
当 1~5 号 Agent 通过定时任务长期协作,并由 AgentDock Orchestrator 统一分配 Assignment、记录 Execution、独立 Gate 和成果状态时使用。每次唤醒只需声明 slot,Skill 负责领取服务端正式任务并回报执行事实。
Use this skill before or during code changes and code review to enforce readable, restrained, maintainable code with low patch smell.
Use this skill when managing Baidu Netdisk files through the bdpan CLI inside the application data scope.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | ntfy |
| description | Use this skill when sending notifications via ntfy.sh or self-hosted ntfy servers. |
| version | 0.2.5 |
把 ntfy.sh 开源 HTTP 通知服务封装为 AgentDock 原生 Skill,用于 Dock 通知推送。
send:向 ntfy topic 发送推送通知。支持标题、优先级、标签、点击 URL、图标和 Markdown 正文。event:发送格式化的 Dock 运行事件通知,自动拼接 severity / device / service / time 等上下文。health:验证 ntfy server URL 与 topic 配置;live: true 会真实发送一条健康检查通知。subscribe:轮询拉取 topic 最近的消息(JSON 格式),支持 since 和 limit 参数。默认连接 https://ntfy.sh。可设置 NTFY_SERVER_URL 环境变量或在调用中传 server_url 指向自建 ntfy server。
Topic 名称从 NTFY_TOPIC 环境变量或调用参数 topic 获取。
NTFY_TOKEN 环境变量,使用 Authorization: Bearer <token> 头。NTFY_USERNAME 和 NTFY_PASSWORD 环境变量。可通过 NTFY_ENV_FILE 或调用参数 env_file 指定 .env 文件。
server_url 仅允许 http / https,禁止 URL 内嵌用户名和密码。.env 读取,不接受 action input 传入。Skill 本体是本说明文档。确需调用包内辅助脚本时,在 Skill 包根目录使用相对路径执行;运行宿主负责切换到包根目录并把所需变量注入当前子进程。
printf '%s' '{"skill_action":"<动作>"}' | python3 run.py
输入必须是 JSON 对象。写操作仍按本文档中的确认规则执行。
| 动作 | 用途 |
|---|---|
send | Send a push notification to an ntfy topic. Supports title, priority, tags, click URL, icon, and Markdown-formatted body. |
event | Send a formatted Dock event notification through ntfy. |
health | Verify ntfy configuration and optionally perform a live connectivity check. |
subscribe | Poll an ntfy topic for recent messages (JSON format). Returns the latest messages without establishing a long-lived connection. |