/pause
Pause one or more schedules to temporarily stop automated executions.
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
/pause
Context preview
What this command does when you run it.
Pause one or more schedules to temporarily stop automated executions.
Command definition
pause.mdPause Schedules
Pause one or more schedules to temporarily stop automated executions.
Arguments
- `<agent-name>` (optional) - Only pause schedules for this agent
- `all` - Pause all schedules across all agents
Instructions
Pause All Schedules for an Agent
curl -X POST "http://backend:8000/api/ops/schedules/pause?agent_name={agent-name}" \
-H "Authorization: Bearer $TRINITY_MCP_API_KEY"Pause All Schedules (Platform-wide)
curl -X POST "http://backend:8000/api/ops/schedules/pause" \
-H "Authorization: Bearer $TRINITY_MCP_API_KEY"
Response
The API returns:
{
"success": true,
"message": "Paused X schedule(s)",
"paused_count": X,
"agent_filter": "agent-name or null"
}Report Format
## Schedules Paused
Timestamp: {timestamp}
Action: Paused {paused_count} schedule(s)
Scope: {agent_name or "All agents"}
### What This Means
- Paused schedules will NOT execute automatically
- Schedules remain configured and can be resumed
- Manual executions still possible via UI/API
### To Resume
Use `/ops/schedules/resume` or `/ops/schedules/resume {agent-name}`Use Cases
1. **Maintenance Window**: Pause all schedules before system updates 2. **Cost Control**: Stop automated tasks during cost review 3. **Debugging**: Pause specific agent's schedules while investigating issues 4. **Incident Response**: Quick way to halt all automation
Caution
- This is an admin operation
- Does not affect currently running tasks
- Use `/ops/schedules/list` to verify which schedules are affected
Read more
Pause Schedules
Pause one or more schedules to temporarily stop automated executions.
Arguments
- `<agent-name>` (optional) - Only pause schedules for this agent
- `all` - Pause all schedules across all agents
Instructions
Pause All Schedules for an Agent
curl -X POST "http://backend:8000/api/ops/schedules/pause?agent_name={agent-name}" \
-H "Authorization: Bearer $TRINITY_MCP_API_KEY"Pause All Schedules (Platform-wide)
curl -X POST "http://backend:8000/api/ops/schedules/pause" \ -H "Authorization: Bearer $TRINITY_MCP_API_KEY"
Response
The API returns:
{
"success": true,
"message": "Paused X schedule(s)",
"paused_count": X,
"agent_filter": "agent-name or null"
}Report Format
## Schedules Paused
Timestamp: {timestamp}
Action: Paused {paused_count} schedule(s)
Scope: {agent_name or "All agents"}
### What This Means
- Paused schedules will NOT execute automatically
- Schedules remain configured and can be resumed
- Manual executions still possible via UI/API
### To Resume
Use `/ops/schedules/resume` or `/ops/schedules/resume {agent-name}`Use Cases
1. **Maintenance Window**: Pause all schedules before system updates 2. **Cost Control**: Stop automated tasks during cost review 3. **Debugging**: Pause specific agent's schedules while investigating issues 4. **Incident Response**: Quick way to halt all automation
Caution
- This is an admin operation
- Does not affect currently running tasks
- Use `/ops/schedules/list` to verify which schedules are affected
Self-hosted AI Agents Platform supporting Claude Code, Codex, Gemini agents. Apache 2.0.
Repo: Abilityai/trinity
Other commands on trinity.
- /ask
Answer a strategic question using accumulated research
Open command - /briefing
Generate daily briefing from research findings
Open command - /opportunities
List and rank all identified opportunities
Open command - /request-research
Ask the researcher to investigate a specific topic
Open command - /research
Run a research cycle on trending topics
Open command - /status
Report on recent research activity and findings count
Open command

