schedule-remove
SolidRemove a scheduled OneBrain skill. Shows the current schedule list and lets the user pick which entry to remove.
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-remove — Remove a scheduled skill
## Purpose
Safely unschedule a skill: presents the current schedule, confirms intent, removes the entry from onebrain.yml, and unregisters the corresponding launchd job.
---
## Skill flow
### Step 1: Show current schedule
Run the `/schedule-list` logic (read onebrain.yml `schedule:` block + call `onebrain schedule register --status`) to display the current entries.
If no entries are found:
```
No scheduled skills to remove.
→ Run /schedule-add to set one up.
```
Stop.
### Step 2: Pick entry to remove
Show via `AskUserQuestion`:
- question: "Which scheduled skill would you like to remove?"
- header: "Remove Schedule"
- multiSelect: false
- options: one option per scheduled entry, label = `/skill-name` with cron and frequency as description
- e.g. label: `/daily`, description: `0 9 * * * — daily at 09:00`
Store: `chosen_entry` (the matched onebrain.yml schedule entry).
### Step 3: Confirm removal
Show via `AskUserQuestion`:
- question: "Remove `{chosen_skill}` scheduled at `{cron}` ({frequency_description})? This stops all automatic invocations."
- header: "Confirm Removal"
- multiSelect: false
- options:
- label: "Yes, remove it", description: "Delete the schedule entry and unregister the launchd plist"
- label: "Cancel", description: "Keep the schedule as-is"
If Cancel, stop.
### Step 4: Edit onebrain.yml
Read onebrain.yml. Remove the matching entry from the `schedule:` block.
Write the full updated onebrai...
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-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