A clean abstraction over three common execution patterns: synchronous calls when you need a return value, void dispatch for fire-and-forget side effects, and enqueue for reliable background jobs with retry guarantees. The decision tree is straightforward: block and wait, fire once and move on, or hand off to a queue. It's basically codifying what you'd otherwise wire up yourself with a message broker or custom retry logic. The 17.5K stars suggest the parent iii framework has traction, and this skill pulls in those primitives to give you RPC, async dispatch, and queue semantics without boilerplate. Useful when you're tired of reimplementing the same execution modes across services.
npx skills add https://github.com/iii-hq/iii --skill iii-trigger-actions