Skip to content
Automation
Command

/schedules

Quick overview of all schedules across the platform.

From plugin
trinity
44227 skills27 commands

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/schedules

Context preview

What this command does when you run it.

Quick overview of all schedules across the platform.

Command definition

schedules.md

Schedule Overview

Quick overview of all schedules across the platform.

Instructions

1. **Get schedule summary** using the API:

curl -s "http://backend:8000/api/ops/schedules" \
  -H "Authorization: Bearer $TRINITY_MCP_API_KEY" | jq '.summary'

2. **Generate a brief report**:

## Schedule Overview
Generated: {timestamp}

- Total Schedules: {total}
- Enabled: {enabled}
- Disabled: {disabled}
- Agents with Schedules: {agents_with_schedules}

For detailed information, use:
- `/ops/schedules/list` - Full schedule listing
- `/ops/schedules/pause` - Pause schedules
- `/ops/schedules/resume` - Resume schedules

Related Commands

| Command | Purpose | |---------|---------| | `/ops/schedules/list` | Detailed schedule listing with execution history | | `/ops/schedules/pause [agent]` | Pause all or agent-specific schedules | | `/ops/schedules/resume [agent]` | Resume paused schedules | | `/ops/executions/list` | View recent task executions | | `/ops/executions/status <id>` | Get details of specific execution |

Quick Actions

**Check if any schedules are failing:**

curl -s "http://backend:8000/api/ops/schedules" \
  -H "Authorization: Bearer $TRINITY_MCP_API_KEY" | \
  jq '.schedules[] | select(.last_execution.status == "failed")'

**Emergency pause all:**

curl -X POST "http://backend:8000/api/ops/schedules/pause" \
  -H "Authorization: Bearer $TRINITY_MCP_API_KEY"
Read more
Ships withtrinity

Self-hosted AI Agents Platform supporting Claude Code, Codex, Gemini agents. Apache 2.0.

Get the whole plugin