chore(skills): make metaskill + metaschedule opt-in; prefer CC native scheduling#267
Merged
Merged
Conversation
… scheduling Drop both from the default install path and steer users at Claude Code's native `CronCreate` / `/loop` for ad-hoc scheduling. - `metabot` skill loses its `mb schedule` section, gains a pointer to `CronCreate` / `/loop` and to the new opt-in `metaschedule` skill. - New `src/skills/metaschedule/SKILL.md` captures the persistent server-side scheduler API (cron + one-shot + pause/resume) for users who need cross-restart persistence. - `metaskill` (agent-team generator) is no longer copied during install; source stays bundled under `src/skills/metaskill/` for opt-in copy. - `install.sh`, `install.ps1`, `bin/mb`, `bin/metabot update`, and `src/api/skills-installer.ts` all stop deploying metaskill by default and prune stale `~/.claude/skills/metaskill` (override with `KEEP_METASKILL=1`). Bundled-source resolver still knows about both opt-in skills so manual installs work. - Workspace `CLAUDE.md` (the prompt deployed to bot work dirs) reworked to lead with `CronCreate` / `/loop` and demote `/metaskill` / `/metaschedule` to optional sections. - `README.md` and `README_EN.md`: example prompts, feature tables, architecture diagrams, and CLI reference all updated. - `tests/skills-installer.test.ts`: assert `metabot` lands in default install and `metaskill` / `metaschedule` do NOT. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
SimonYeyi
pushed a commit
to SimonYeyi/metabot
that referenced
this pull request
May 26, 2026
… scheduling (xvirobotics#267) Drop both from the default install path and steer users at Claude Code's native `CronCreate` / `/loop` for ad-hoc scheduling. - `metabot` skill loses its `mb schedule` section, gains a pointer to `CronCreate` / `/loop` and to the new opt-in `metaschedule` skill. - New `src/skills/metaschedule/SKILL.md` captures the persistent server-side scheduler API (cron + one-shot + pause/resume) for users who need cross-restart persistence. - `metaskill` (agent-team generator) is no longer copied during install; source stays bundled under `src/skills/metaskill/` for opt-in copy. - `install.sh`, `install.ps1`, `bin/mb`, `bin/metabot update`, and `src/api/skills-installer.ts` all stop deploying metaskill by default and prune stale `~/.claude/skills/metaskill` (override with `KEEP_METASKILL=1`). Bundled-source resolver still knows about both opt-in skills so manual installs work. - Workspace `CLAUDE.md` (the prompt deployed to bot work dirs) reworked to lead with `CronCreate` / `/loop` and demote `/metaskill` / `/metaschedule` to optional sections. - `README.md` and `README_EN.md`: example prompts, feature tables, architecture diagrams, and CLI reference all updated. - `tests/skills-installer.test.ts`: assert `metabot` lands in default install and `metaskill` / `metaschedule` do NOT. Co-authored-by: Flood Sung <floodsung@xvirobotics.ai> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
metaskill(agent-team generator) andmetaschedule(persistent server-side scheduler) by default — both stay opt-in viacp src/skills/<name> ~/.claude/skills/.metabotskill loses its scheduling section; users are pointed at Claude Code's nativeCronCreate//loopfirst, and at the new opt-in/metascheduleskill only when they need cross-restart persistence.src/skills/metaschedule/SKILL.mddocuments the existingmb schedule/POST /api/schedulesurface (cron, one-shot, pause/resume) for users who opt in.install.sh,install.ps1,bin/mb,bin/metabot update) prune any stale~/.claude/skills/metaskillon next run; override withKEEP_METASKILL=1.src/workspace/CLAUDE.md) reworked to lead withCronCreate//loopand treat/metaskill+/metascheduleas optional.README.md+README_EN.mdupdated: feature tables, architecture blocks, example prompts, CLI reference.tests/skills-installer.test.tsnow asserts the default install includesmetabotand excludesmetaskill+metaschedule.Test plan
npm run build— cleannpx vitest run— 286/286 green, including the rewritten skills-installer testnpm run lint— 3 pre-existing warnings, 0 errorsbash install.shon a fresh $HOME and confirm~/.claude/skills/metaskillis not created, whilemetabot,metamemory,voice,skill-hubaremetabot updateon an old install that has~/.claude/skills/metaskilland confirm it gets pruned (and thatKEEP_METASKILL=1 metabot updatekeeps it)src/skills/metaschedule/SKILL.mdinto~/.claude/skills/metaschedule/, restart MetaBot, ask a bot to set a recurring task, confirm/metascheduleskill resolves andmb schedule listreports it🤖 Generated with Claude Code