schedule-once
SolidInteractive 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.
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-once — One-shot scheduler wizard
## Purpose
For users who want a reminder or task to fire ONCE at a specific date and time, then disappear cleanly. Walks through:
1. Which skill to fire
2. What date (YYYY-MM-DD)
3. What time (HH:MM, 24-hour)
4. Any required args (if the skill is `schedulable_with_args`)
5. Confirms preview
6. Writes one-shot entry to onebrain.yml + runs `onebrain schedule register`
After the scheduled time, the launchd plist runs the skill once, then unloads itself and deletes the plist file.
---
## Skill flow
### Step 1: Pick skill
List all schedulable skills by reading each SKILL.md frontmatter under `.claude/plugins/onebrain/skills/`. Filter for entries where `schedulable: true` OR `schedulable_with_args: true`.
Show via `AskUserQuestion`:
- question: "Which skill would you like to schedule for a one-time run?"
- header: "Schedule a One-Shot Run"
- multiSelect: false
- options (two groups):
- Skills with `schedulable: true` (no args required): e.g. `/daily`, `/weekly`, `/recap`, `/doctor`, `/tasks`, `/moc`
- Skills with `schedulable_with_args: true` (args required — wizard will prompt): e.g. `/distill`, `/research`, `/summarize`, `/search`
Store: `chosen_skill` (the slash-command name, e.g. `/daily`).
### Step 1b: Pick harness
Ask which harness should execute the skill: Claude (default/backward compatible), Gemini, or Codex. Store `chosen_harness`. Codex entries keep the shared YAML skill name (`/daily`); the scheduler translates...
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-list
Show all scheduled OneBrain entries (skills + CLI commands) with cron/at expressions and installed-on-disk status.
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