원클릭으로
agentio-schedule
Use to manage agentio scheduled .run.md prompts in watched folders.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use to manage agentio scheduled .run.md prompts in watched folders.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when interacting with Google Chat via the agentio CLI - send messages, list spaces, read history.
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
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.
| name | agentio-schedule |
| description | Use to manage agentio scheduled .run.md prompts in watched folders. |
Auto-generated from agentio skill schedule. Do not edit by hand.
Watch a folder for .run.md files
Options:
--no-host-pin: Do not pin this folder to the current hostExamples:
# watch a folder of .run.md files (pinned to this hostname by default)
agentio schedule add ~/Dropbox/schedules
# watch but allow any host to fire (for non-Dropbox-synced folders)
agentio schedule add ./agents --no-host-pin
After adding, author .run.md files in the folder directly. The daemon picks
them up via fs.watch within ~500ms. Run 'agentio schedule list' to confirm.
List watched folders and scheduled tasks
Options:
--folder <path>: Filter schedules to one folder--folders: Show watched folders only (no schedules)--all-hosts: Include schedules pinned to other hostsExamples:
# watched folders + their detected schedules (host-pinned only)
agentio schedule list
# also show schedules pinned to other machines (Dropbox-shared folders)
agentio schedule list --all-hosts
# only schedules in one specific folder
agentio schedule list --folder ~/Dropbox/schedules
# just the watched-folder list, no schedule scan
agentio schedule list --folders
Show a schedule and next run times
Options:
--folder <path>: Restrict resolution to this folderExamples:
# frontmatter + next 5 fire times for one schedule (id is the .run.md basename)
agentio schedule show weekly-report
# disambiguate when the same id exists in multiple watched folders
agentio schedule show weekly-report --folder ~/Dropbox/schedules
Run a schedule immediately
Options:
--folder <path>: Restrict resolution to this folder-q, --quiet: Suppress streaming child output to stdout/stderr (used when invoked by the daemon)Examples:
# fire a schedule now (delegates to the daemon if running, else runs in-process)
agentio schedule run weekly-report
# restrict id resolution to one watched folder
agentio schedule run weekly-report --folder ~/Dropbox/schedules
Manual runs ignore the host pin — useful for testing on a machine that isn't
the schedule's normal home.
List past runs (no id: last run of every job; with id: all runs of that job)
Options:
--folder <path>: Restrict to one folderExamples:
# overview: last run of every job across all watched folders
agentio schedule history
# full run history for one schedule (newest first)
agentio schedule history weekly-report
# restrict the overview to one folder
agentio schedule history --folder ~/Dropbox/schedules
Per-run logs land in <folder>/.agentio/runs/<id>/<ISO>.log.
Stop watching a folder
Examples:
# stop watching a folder (existing .run.md files are not deleted)
agentio schedule remove ~/Dropbox/schedules