一键导入
agentio-daemon
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when interacting with Google Chat via the agentio CLI - send messages, list spaces, read history.
Use when interacting with Google Docs via the agentio CLI - list, read, create.
Use when interacting with Google Drive via the agentio CLI - list, search, download, upload, folder navigation.
Use when interacting with Gmail via the agentio CLI - list, read, search, send, draft, reply, archive, mark, attachments, export.
Use when interacting with mcp via the agentio CLI.
Use when sending Telegram messages via the agentio CLI.
| name | agentio-daemon |
| description | Use to manage the agentio daemon (runs the scheduler for .run.md prompts). |
Auto-generated from agentio skill daemon. Do not edit by hand.
Install daemon as a system service (launchd on macOS, systemd on Linux)
Examples:
# install and auto-start (macOS LaunchAgent or Linux systemd unit)
agentio daemon install
# Linux systemd install needs sudo
sudo agentio daemon install
# check it's running afterward
agentio daemon status
Start the daemon
Options:
--foreground: Run in foreground (used by systemd)Examples:
# start the installed daemon (launchd / systemd) or run in foreground if not installed
agentio daemon start
# run in the foreground (used by systemd; useful for dev / debugging)
agentio daemon start --foreground
Stop the daemon
Examples:
# stop the running daemon
agentio daemon stop
# stop, then start fresh (or use `agentio daemon restart`)
agentio daemon stop && agentio daemon start
Restart the daemon
Examples:
# restart the daemon (e.g. after editing config or installing a new version)
agentio daemon restart
Show daemon status
Examples:
# show whether the daemon is running
agentio daemon status
View daemon logs
Options:
-f, --follow: Follow log output-n, --lines <n>: Number of lines to show (default: 50)Examples:
# last 50 log lines
agentio daemon logs
# last 200 log lines
agentio daemon logs --lines 200
# tail logs continuously (Ctrl-C to stop)
agentio daemon logs --follow
Remove daemon system service (launchd on macOS, systemd on Linux)
Examples:
# remove the LaunchAgent / systemd unit (config in ~/.config/agentio is preserved)
agentio daemon uninstall
# Linux systemd uninstall needs sudo
sudo agentio daemon uninstall