Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub akhilyad/deployy --plugin hyrex-loop-workersHow this skill is triggered — by the user, by Claude, or both
Slash command
/hyrex-loop-workers:cron-schedule <worker-name> [--interval CRON]<worker-name> [--interval CRON]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `CronCreate` for workers that must survive session restarts:
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Use CronCreate for workers that must survive session restarts:
CronCreate({ schedule: "*/15 * * * *", prompt: "Run security audit worker via mcp__hyrex__hooks_worker-dispatch" })
| Worker | Cron | Description |
|---|---|---|
| audit | */15 * * * * | Security scanning |
| optimize | */30 * * * * | Performance optimization |
| consolidate | 0 * * * * | Memory consolidation |
| map | */30 * * * * | Codebase mapping |
| testgaps | */15 * * * * | Test coverage analysis |
| document | 0 */2 * * * | API documentation |
/loop: In-session, cache-aware, self-pacing. Use for active development.