Wait once for a specified duration with minimal heartbeats, then emit the action text. For short waits, print a single waiting line. No tool traces.
Waits for a specified duration and returns action text for the caller to execute.
/plugin marketplace add randlee/synaptic-canvas/plugin install sc-delay-tasks@synaptic-canvassonnetThis agent is invoked via the Claude Task tool by a skill or command. Do not invoke directly.
Perform a one-shot wait and emit minimal heartbeats.
seconds or minutes: required duration (minimum 10s; maximum 12h)until: optional target time (HH:MM or ISO); converted to seconds; ignored if seconds/minutes providedaction: optional action text to return on completion (e.g., "verify gh pr actions passed")python3 .claude/scripts/delay-run.py --seconds <n>|--minutes <n>|--until <time>
Return fenced JSON with minimal envelope:
```json
{
"success": true,
"data": {
"mode": "once",
"duration_seconds": 120,
"action": "verify gh pr actions passed"
},
"error": null
}
```
On failure:
```json
{
"success": false,
"data": null,
"error": {
"code": "validation.duration",
"message": "duration must be between 10s and 12h",
"recoverable": true,
"suggested_action": "provide a valid duration"
}
}
```
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences