ワンクリックで
cancel-all-schedules
Cancel all active scheduled checks, optionally filtered by session or age (nuclear cleanup).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Cancel all active scheduled checks, optionally filtered by session or age (nuclear cleanup).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plan and create a NESTED team hierarchy (parent coordination team + per-stream child teams) for a complex multi-stream goal. Use INSTEAD of recommend-team/materialize-team when the goal names 2+ parallel work-streams (e.g. frontend + backend + DevOps). Onboarding-only.
Search the live web for a query and return ranked results (title, URL, snippet) as JSON. Works with no API key (DuckDuckGo HTML fallback) and uses the Brave Search API or SerpAPI automatically when BRAVE_API_KEY / SERPAPI_KEY is set. Any agent can call it for research, competitor analysis, market/trend lookups, fact-checking, finding sources to cite, or grounding a non-software goal (marketing, growth, commerce) in real-world information.
Transcribe a local audio (or video) file to text with timestamps using Whisper. Defaults to local whisper.cpp (free, offline, word/segment-level timestamps) and automatically falls back to the OpenAI Whisper API (whisper-1) when the local engine is not installed. Any agent can call it for meetings, podcasts, voice notes, interviews, or video audio tracks.
Accept and take the next available task from the task queue. Use when an agent is idle and ready to pick up the highest-priority unassigned task. For assigning tasks to specific agents, use assign-task instead.
Register the agent as active with the Crewly backend on startup. Use when an agent first launches and needs to join the team and become visible to the orchestrator. For confirming responsiveness after registration, use heartbeat instead.
Analyze git changes and produce a structured code review with automated checks for missing tests, debug statements, potential secrets, large changes, and dependency modifications. Use when reviewing staged changes, unstaged diffs, recent commits, or branch comparisons before submitting a pull request. For task-level quality gates, use check-quality-gates instead.
| name | cancel-all-schedules |
| description | Cancel all active scheduled checks, optionally filtered by session or age (nuclear cleanup). |
| version | 1.0.0 |
| category | scheduling |
| skillType | claude-skill |
| assignableRoles | ["orchestrator"] |
| tags | ["schedule","cleanup"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":15000}} |
Cancel all active scheduled checks with optional filters.
# Cancel ALL scheduled checks (nuclear option)
bash config/skills/orchestrator/cancel-all-schedules/execute.sh
# Cancel all checks for a specific session
bash config/skills/orchestrator/cancel-all-schedules/execute.sh '{"session":"agent-sam"}'
# Cancel checks older than 60 minutes
bash config/skills/orchestrator/cancel-all-schedules/execute.sh '{"olderThanMinutes":60}'
# Combine filters
bash config/skills/orchestrator/cancel-all-schedules/execute.sh '{"session":"agent-sam","olderThanMinutes":30}'
Returns {"success": true, "data": {"cancelled": N}, "message": "Cancelled N scheduled check(s)"}.