schedule-list
SolidShow all scheduled OneBrain entries (skills + CLI commands) with cron/at expressions and installed-on-disk status.
AI & Automation 28 stars
3 forks Updated 1 weeks ago Apache-2.0
Install
Quality Score: 83/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# /schedule-list — Show scheduled entries
## Purpose
Display a formatted summary of all entries currently registered in the `schedule:` block of onebrain.yml. Both skill-mode entries (`skill: /daily`) and command-mode entries (`command: onebrain` + `args: [...]`) are shown side by side, with installed-on-disk status from launchd.
---
## Skill flow
### Step 1: Read onebrain.yml
Read onebrain.yml from the vault root. Locate the `schedule:` block.
If onebrain.yml does not exist or has no `schedule:` block, or the block is empty:
```
No scheduled entries found.
→ Run /schedule-add to set one up.
```
Stop.
### Step 2: Fetch status
Read the `schedule:` block from onebrain.yml directly to get the cron/at expression and `skill`/`command` field for each entry.
Optionally run from the vault root:
```
onebrain schedule register --status
```
This emits plain text (not JSON). Each line is one entry with the `[cron]` or `[once]` tag, the cron/at value, and either `skill: /name (k=v, k2=v2)` (skill mode with optional args) or `cmd: binary arg1 arg2` (command mode with positional argv). The status prefix reports what the OS scheduler says (CLI v3.4.20+, all platforms): `✓` = installed and active, `⚠` = artifact present but the scheduler is not running it, `✗` = not installed. (Pre-v3.4.20 CLIs reported file existence only.)
The CLI does not track last-run, next-run, or last-status — that detail is in `[logs_folder]/scheduler/YYYY/MM/`.
If `onebrain schedule register --status`...
Details
- Author
- onebrain-ai
- Repository
- onebrain-ai/onebrain
- Created
- 5 months ago
- Last Updated
- 1 weeks ago
- Language
- Shell
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
schedule-add
Interactive wizard to add a scheduled OneBrain skill. Walks user through skill selection, frequency, time, and writes to onebrain.yml + invokes onebrain schedule register.
28 Updated 1 weeks ago
onebrain-ai AI & Automation Solid
schedule-once
Interactive wizard to schedule a OneBrain skill to run ONCE at a specific datetime, then auto-uninstall. Writes a one-shot entry to onebrain.yml and invokes onebrain schedule register.
28 Updated 1 weeks ago
onebrain-ai AI & Automation Solid
schedule-remove
Remove a scheduled OneBrain skill. Shows the current schedule list and lets the user pick which entry to remove.
28 Updated 1 weeks ago
onebrain-ai