schedule-list
SolidShow all scheduled OneBrain entries (skills + CLI commands) with cron/at expressions and installed-on-disk status.
AI & Automation 20 stars
2 forks Updated 5 days ago Apache-2.0
Install
Quality Score: 81/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 `✓` / `✗` prefix indicates whether the plist file exists on disk.
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` is unavailable or fails: fall back to checking launchd plist existence in `~/Library/LaunchAgents/` for each entry. Compute the plist filename as `com.onebrain.<labelSafe>...
Details
- Author
- onebrain-ai
- Repository
- onebrain-ai/onebrain
- Created
- 4 months ago
- Last Updated
- 5 days 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.
20 Updated 5 days 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.
20 Updated 5 days 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.
20 Updated 5 days ago
onebrain-ai