Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Single entry point for fresh-session bootstrap. Runs optional task-orphan recovery, cron registration, and watcher start in a fixed order. Replaces the current `claude -- '/schedule-crons'` invocation pattern as the canonical CLI startup target.
.claude/skills/sonichi-startup/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 32% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -15% | 0% |
The canonical entry point for a fresh Sutando session. Bundles every action that must happen once at session start, in the correct order.
Usage: /startup
ARGUMENTS: $ARGUMENTS (currently unused — reserved for future per-instance overrides)
Previously: claude -- "/schedule-crons" was the de-facto startup invocation, and skills/schedule-crons/SKILL.md accumulated startup ceremony (cron-fallback, watcher) on top of its actual job (registering crons from crons.json).
Now: claude -- "/startup" is the canonical startup target. /startup orchestrates the sequence; /schedule-crons shrinks back to its narrow job.
Migration: update ~/Library/LaunchAgents/*.plist and any CLI invocation scripts to call /startup instead of /schedule-crons. /schedule-crons still works standalone (for manual cron re-registration) — both paths are idempotent.
Per Chi 2026-05-23 Discord: "we can make a new skill and include everything we need at start." Five rationales:
/startup and only at /startup.On Activation section, not scattered across schedule-crons's step list./task-orphan-check, /schedule-crons, etc. continue to work for manual invocation. /startup is a wrapper, not a replacement./startup twice in the same session is safe; each sub-skill is idempotent (registering an already-scheduled cron is a no-op, an already-running watcher isn't restarted, etc.).The sequence below MUST run in this order. Each step is naturally idempotent, so re-invocation is safe.
Invoke /task-orphan-check IF the skill is installed (i.e. $CLAUDE_CONFIG_DIR/skills/task-orphan-check/ exists). This is the recovery half of the post-#1049 redesign: scan <workspace>/tasks/ for orphan tasks left over from a crash mid-execution, cross-reference per-side-effect markers (e.g. PR #1048's .sending files), archive completed tasks, write recovery sentinels for stuck ones. See the skill itself for the full procedure.
If the skill is not installed, skip silently. /startup works without it — every other step is independent.
Note: this step runs BEFORE step 2 so that the watcher (started by step 2's downstream) doesn't pick up an orphan task before recovery has classified it.
Invoke /schedule-crons. This handles:
skills/schedule-crons/crons.jsonMonitor tool (bash src/watch-tasks-stream.sh, persistent, description "Streaming task watcher") — first, before any cron is registered (2026-08-24: moved ahead of registration so a task arriving during the registration loop isn't queued unprocessed; see skills/schedule-crons/SKILL.md step 1.5 for the measured impact)CronCreate for each entry that isn't already scheduled/proactive-loop cron exists at */10 * * * * if crons.json doesn't include one (post-#954 belt-and-suspenders)Emit a one-line summary so the operator (or main session's first turn) sees what fired:
/startup complete: orphan-check (N tasks recovered, M archived), schedules (K crons + watcher).The orphan-check fields say skipped (skill not installed) if step 1 was skipped.
session start
│
▼
/startup
│
├─► step 1: /task-orphan-check (optional) ──► classifies + archives orphan tasks
│
├─► step 2: /schedule-crons ──┬─► step 1.5 (start watch-tasks-stream.sh via Monitor — FIRST, before registration)
│ ├─► step 2-3 (register crons.json entries)
│ ├─► step 4 (proactive-loop fallback if missing)
│ └─► step 6 (confirm what was scheduled)
│
└─► step 3: emit summaryIf /startup is invoked mid-session, the sub-skills skip their already-done work (an already-scheduled cron isn't re-created, an already-running watcher isn't restarted), so the result is effectively a re-confirm of state. Safe.
This skill is intentionally a thin orchestrator. Logic lives in the sub-skills:
skills/task-orphan-check/ (separate PR, optional)skills/schedule-crons/If you find yourself wanting to put logic IN /startup, ask whether it belongs in one of the sub-skills (or a new sub-skill) first. /startup is the order, not the work.
/startup becomes the canonical CLI entry; /schedule-crons remains callable for manual cron re-registration. Migration: launchd plists + CLI scripts switch to /startup./startup now runs orphan-check → schedules + watcher → confirm; sub-skill idempotency replaces the former sentinel guard.| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 5,428 | 8,942 | +65% | 1 | 1 | 0% | 793 | 2,065 | +160% | 0 | 0 | — |
case-02 | fail→fail | 5,492 | 6,490 | +18% | 1 | 1 | 0% | 951 | 1,911 | +101% | 0 | 0 | — |
case-03 | fail→fail | 6,243 | 5,106 | -18% | 1 | 1 | 0% | 1,080 | 1,781 | +65% | 0 | 0 | — |
case-04 | pass→pass | 11,667 | 8,863 | -24% | 1 | 1 | 0% | 1,880 | 2,983 | +59% | 0 | 0 | — |
case-05 | fail→pass | 11,575 | 4,014 | -65% | 1 | 1 | 0% | 1,696 | 2,240 | +32% | 0 | 0 | — |
case-06 | fail→pass | 12,948 | 3,484 | -73% | 1 | 1 | 0% | 2,345 | 2,100 | -10% | 0 | 0 | — |
case-07 | pass→pass | 12,743 | 4,022 | -68% | 1 | 1 | 0% | 1,978 | 2,197 | +11% | 0 | 0 | — |
case-08 | pass→pass | 16,463 | 12,590 | -24% | 1 | 1 | 0% | 2,693 | 3,630 | +35% | 0 | 0 | — |
case-09 | fail→pass | 12,842 | 3,944 | -69% | 1 | 1 | 0% | 2,107 | 2,143 | +2% | 0 | 0 | — |
case-10 | pass→pass | 12,726 | 2,973 | -77% | 1 | 1 | 0% | 2,137 | 2,024 | -5% | 0 | 0 | — |
case-11 | pass→pass | 9,930 | 5,304 | -47% | 1 | 1 | 0% | 1,705 | 2,516 | +48% | 0 | 0 | — |
case-12 | fail→pass | 11,239 | 1,975 | -82% | 1 | 1 | 0% | 2,076 | 1,837 | -12% | 0 | 0 | — |
case-13 | fail→pass | 11,940 | 2,278 | -81% | 1 | 1 | 0% | 2,196 | 1,875 | -15% | 0 | 0 | — |
case-14 | fail→pass | 16,504 | 4,204 | -75% | 1 | 1 | 0% | 2,209 | 2,278 | +3% | 0 | 0 | — |
case-15 | fail→pass | 13,914 | 1,785 | -87% | 1 | 1 | 0% | 2,453 | 1,803 | -26% | 0 | 0 | — |
case-16 | pass→pass | 12,522 | 2,639 | -79% | 1 | 1 | 0% | 2,197 | 2,002 | -9% | 0 | 0 | — |
case-17 | fail→pass | 12,593 | 4,165 | -67% | 1 | 1 | 0% | 2,216 | 2,204 | -1% | 0 | 0 | — |
case-18 | fail→pass | 14,530 | 1,838 | -87% | 1 | 1 | 0% | 2,393 | 1,757 | -27% | 0 | 0 | — |
case-19 | pass→pass | 18,669 | 15,705 | -16% | 1 | 1 | 0% | 3,255 | 4,281 | +32% | 0 | 0 | — |
case-20 | pass→fail | 9,896 | 8,171 | -17% | 1 | 1 | 0% | 1,825 | 2,986 | +64% | 0 | 0 | — |
case-21 | pass→pass | 9,381 | 10,635 | +13% | 1 | 1 | 0% | 1,762 | 3,552 | +102% | 0 | 0 | — |
case-22 | pass→pass | 17,962 | 19,226 | +7% | 1 | 1 | 0% | 3,463 | 4,970 | +44% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 19 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +36 percentage points is the difference between those two pass rates over the 19 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/24/2026 | +41% |
Other measured skills in the registry, with their headline benchmark lift.