Agent skill
iii-custom-triggers
Builds custom trigger types for events iii does not handle natively. Use when integrating webhooks, file watchers, IoT devices, database CDC, or any external event source.
Install this agent skill to your Project
npx add-skill https://github.com/iii-hq/iii/tree/main/skills/iii-custom-triggers
SKILL.md
Custom Triggers
Comparable to: Custom event adapters, webhook receivers
Key Concepts
Use the concepts below when they fit the task. Not every custom trigger needs all of them.
- registerTriggerType(id, handler) defines a new trigger type with
registerTriggerandunregisterTriggercallbacks - The handler receives a TriggerConfig containing
id,function_id, andconfig - When the external event fires, call
iii.trigger({ function_id, payload: event })to invoke the registered function - unregisterTriggerType cleans up when the trigger type is no longer needed
- Do not reuse built-in trigger type names:
http,cron,durable:subscriber,state,stream,subscribe
Architecture
External event source (webhook, file watcher, IoT, CDC, etc.)
→ Custom trigger handler (registerTriggerType)
→ iii.trigger({ function_id, payload: event })
→ Registered function processes the event
iii Primitives Used
| Primitive | Purpose |
|---|---|
registerTriggerType(id, handler) |
Define a new trigger type with lifecycle hooks |
unregisterTriggerType(id) |
Clean up a custom trigger type |
TriggerConfig: { id, function_id, config } |
Configuration passed to the trigger handler |
iii.trigger({ function_id, payload: event }) |
Fire the registered function when the event occurs |
Reference Implementation
See ../references/custom-triggers.js for the full working example — a custom trigger type that listens for external events and routes them to registered functions.
Also available in Python: ../references/custom-triggers.py
Also available in Rust: ../references/custom-triggers.rs
Common Patterns
Code using this pattern commonly includes, when relevant:
registerWorker(url, { workerName })— worker initializationregisterTriggerType(id, { registerTrigger, unregisterTrigger })— define the custom triggerregisterTrigger(config)— called by iii when a function subscribes to this trigger typeunregisterTrigger(config)— called by iii when a function unsubscribesiii.trigger({ function_id: config.function_id, payload: eventPayload })— fire the target function- Cleanup logic in
unregisterTrigger(close connections, remove listeners, clear intervals) const logger = new Logger()— structured logging
Adapting This Pattern
Use the adaptations below when they apply to the task.
- Choose a unique trigger type name that describes your event source (e.g.
file-watcher,mqtt,db-cdc) - In
registerTrigger, start the listener (open socket, poll endpoint, subscribe to topic) - In
unregisterTrigger, tear down the listener to avoid resource leaks - Store active listeners in a map keyed by
config.idfor clean unregistration - Pass relevant event data in the payload when calling
iii.trigger({ function_id, payload: event })
Pattern Boundaries
- If the task uses built-in HTTP routes, prefer
iii-http-endpoints. - If the task uses built-in cron schedules, prefer
iii-cron-scheduling. - If the task uses built-in queue triggers, prefer
iii-queue-processing. - Stay with
iii-custom-triggerswhen iii has no built-in trigger type for the event source.
When to Use
- Use this skill when the task is primarily about
iii-custom-triggersin the iii engine. - Triggers when the request directly asks for this pattern or an equivalent implementation.
Boundaries
- Never use this skill as a generic fallback for unrelated tasks.
- You must not apply this skill when a more specific iii skill is a better fit.
- Always verify environment and safety constraints before applying examples from this skill.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
iii-dead-letter-queues
Inspects and redrives jobs that exhausted all retries. Use when handling failed queue jobs, debugging processing errors, or implementing retry strategies.
iii-cron-scheduling
Registers cron triggers with 7-field expressions to run functions on recurring schedules. Use when scheduling periodic jobs, timed automation, crontab replacements, cleanup routines, report generation, health checks, batch processing, or any task that should run every N seconds, minutes, hours, or on a weekly/monthly calendar.
iii-http-invoked-functions
Registers external HTTP endpoints as iii functions using registerFunction(id, HttpInvocationConfig). Use when adapting legacy APIs, third-party webhooks, or immutable services into triggerable iii functions, especially when prompts ask for endpoint maps like { path, id } iterated into registerFunction calls.
iii-channels
Binary streaming between workers via channels. Use when building data pipelines, file transfers, streaming responses, or any pattern requiring binary data transfer between functions.
iii-event-driven-cqrs
Implements CQRS with event sourcing on the iii engine. Use when building command/query separation, event-sourced systems, or fan-out architectures where commands publish domain events and multiple read model projections subscribe independently.
iii-agentic-backend
Creates and orchestrates multi-agent pipelines on the iii engine. Use when building AI agent collaboration, agent orchestration, research/review/synthesis chains, or any system where specialized agents hand off work through queues and shared state.
Didn't find tool you were looking for?