hotplex-cli
SolidHotPlex Slack 与 Cron CLI 命令示例参考。当需要执行 hotplex slack 子命令(发消息、上传/下载文件、更新/定时消息、频道、书签、表情回复)或 hotplex cron 子命令(创建/列出/查看/更新/删除/触发/历史定时任务)时使用。
AI & Automation 45 stars
14 forks Updated today Apache-2.0
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# HotPlex Slack / Cron CLI 示例
> 从 AGENTS.md 迁移出的命令参考。构建/测试/开发命令请用 `make help`。
## Slack 操作
```bash
hotplex slack send-message --text "Hello" --channel <id>
hotplex slack upload-file --file ./report.pdf --title "Report"
hotplex slack update-message --channel <id> --ts <ts> --text "Updated"
hotplex slack schedule-message --text "Reminder" --at "2026-05-04T09:00:00+08:00"
hotplex slack download-file --file-id <id> --output ./save.pdf
hotplex slack list-channels --types im,public_channel --json
hotplex slack bookmark add --channel <id> --title "Link" --url <url>
hotplex slack bookmark list --channel <id>
hotplex slack bookmark remove --channel <id> --bookmark-id <id>
hotplex slack react add --channel <id> --ts <ts> --emoji white_check_mark
```
## Cron 定时任务
```bash
# 创建周期任务(必填:name, schedule, message, bot-id, owner-id, max-runs, expires-at)
hotplex cron create \
--name "daily-health" \
--schedule "cron:0 9 * * 1-5" \
-m "检查系统健康状态" \
--bot-id "$BOT_ID" --owner-id "$USER_ID" \
--max-runs 100 --expires-at "2027-01-01T00:00:00+08:00"
# 带短生命周期的周期任务
hotplex cron create \
--name "remind" \
--schedule "every:30m" \
-m "提醒喝水" \
--bot-id "$BOT_ID" --owner-id "$USER_ID" \
--max-runs 6 --expires-at "2026-05-11T00:00:00+08:00"
# 列出 / 查看 / 更新 / 删除
hotplex cron list [--json] [--enabled]
hotplex cron get <id|name>
hotplex cron update <id|name> --enabled=false
hotplex cron delete <id|name>
# 手动触发(需 gateway 运行中)
hotplex cron trigger <id|name>
# 查看执行历史
hotplex cron histo...
Details
- Author
- hrygo
- Repository
- hrygo/hotplex
- Created
- 3 months ago
- Last Updated
- today
- Language
- Go
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
hotplex-update
HotPlex 二进制更新。完整工作流:构建 → 安装 → 服务重启 → 验证 → 错误处理和回滚机制。支持用户级和系统级服务,跨平台兼容(Linux/macOS/Windows)。
45 Updated today
hrygo AI & Automation Solid
hotplex-setup
HotPlex 生产环境安装、配置、部署与故障排查。以 `hotplex doctor` 诊断驱动,覆盖 onboard 向导、4 种 Worker 配置、STT/TTS、系统服务。当用户提到安装、配置、部署、doctor、onboard、环境检查、setup、启动失败、连接问题、凭证错误、服务无法启动时触发——即使用户只是描述了运行异常,也应先跑 doctor 诊断再排查。
45 Updated today
hrygo AI & Automation Solid
holix-cron
Schedule recurring agent tasks via Holix built-in gateway cron (not crontab or custom scripts)
12 Updated yesterday
javded-itres