Skill | Added | Review |
|---|---|---|
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. | 79 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-trigger-conditions Registers a boolean condition function and attaches it to triggers via condition_function_id so handlers only fire when the condition passes. Use when gating triggers on business rules, checking user permissions, validating data before processing, filtering high-value orders, rate-limiting events, or conditionally skipping handlers based on payload content. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-low-code-automation Builds trigger-transform-action automation chains on the iii engine. Use when building Zapier/n8n-style automations, webhook-to-action pipelines, or simple event-driven chains where each node is a small registered function chained via named queues. | 83 Impact Pending No eval scenarios have been run Securityby Advisory Suggest reviewing before use Reviewed: Version: 8921efa | |
iii-http-endpoints Exposes iii functions as REST API endpoints. Use when building HTTP APIs, webhooks, or inbound request handling where iii owns the route. | 70 Impact Pending No eval scenarios have been run Securityby Advisory Suggest reviewing before use Reviewed: Version: 8921efa | |
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. | 73 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-queue-processing Enqueues jobs, configures retry policies, sets concurrency limits, and orders messages via named standard or FIFO queues. Use when building background job workers, task queues, message queues, async pipelines, or any pattern needing guaranteed delivery with exponential backoff and dead-letter handling. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-functions-and-triggers Registers functions and triggers on the iii engine across TypeScript, Python, and Rust. Use when creating workers, registering function handlers, binding triggers, or invoking functions across languages. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-getting-started Install the iii engine, set up your first worker, and get a working backend running. Use when a user wants to start a new iii project, install the SDK, or needs help with initial setup and configuration. | 85 Impact Pending No eval scenarios have been run Securityby Advisory Suggest reviewing before use Reviewed: Version: 8921efa | |
iii-http-middleware Registers engine-level middleware functions that run before HTTP handlers. Use when adding authentication, request logging, rate limiting, or any pre-handler logic to HTTP endpoints. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-trigger-actions Selects how functions are invoked — synchronous calls that return results, fire-and-forget void dispatches, or durable enqueue through named queues with retries. Use when deciding between blocking RPC calls, background job dispatch, async workers, or reliable message delivery with acknowledgement. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-workflow-orchestration Orchestrates durable multi-step workflow pipelines on the iii engine. Use when building order fulfillment, data pipelines, task orchestration, or any sequential process requiring retries, backoff, step tracking, scheduled cleanup, or dead letter queue (DLQ) handling. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-node-sdk Node.js/TypeScript SDK for the iii engine. Use when building workers, registering functions, or invoking triggers in TypeScript or JavaScript. | 85 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
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. | 79 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-python-sdk Python SDK for the iii engine. Use when building workers, registering functions, or invoking triggers in Python. | 68 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-observability Integrates OpenTelemetry tracing, metrics, and logging into iii workers. Use when setting up distributed tracing, Prometheus metrics, custom spans, or connecting to observability backends. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
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. | 79 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-rust-sdk Rust SDK for the iii engine. Use when building high-performance workers, registering functions, or invoking triggers in Rust. | 73 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-engine-config Configures the iii engine via iii-config.yaml — modules, adapters, queue configs, ports, and environment variables. Use when deploying, tuning, or customizing the engine. | 72 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
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. | 77 Impact Pending No eval scenarios have been run Securityby Advisory Suggest reviewing before use Reviewed: Version: 8921efa | |
iii-reactive-backend Builds reactive real-time backends on the iii engine. Use when building event-driven apps where state changes automatically trigger side effects, clients receive live updates via streams or websockets, or you need a real-time database layer with pub/sub and CRUD endpoints. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-effect-system Builds composable, pipeable function chains on the iii engine. Use when building functional pipelines, effect systems, or typed composition layers where each step is a pure function with distributed tracing. | 73 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-state-reactions Registers state-type triggers that automatically fire functions when key-value state is created, updated, or deleted within a scope. Use when building reactive side effects, change watchers, audit logs, cache invalidation, notification dispatchers, or any observer pattern where data changes should trigger downstream processing. | 77 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-state-management Creates scoped key-value stores, reads and writes state entries, lists keys, and performs partial updates across functions. Use when persisting data between invocations, managing user sessions, caching computed values, storing feature flags, sharing state between workers, or building a KV data layer as an alternative to Redis or DynamoDB. | 78 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
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. | 79 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
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. | 83 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-browser-sdk Browser SDK for connecting to the iii engine from web applications via WebSocket. Use when building browser-based clients that register functions, invoke triggers, or consume streams from the frontend. | 94 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa | |
iii-realtime-streams Pushes live updates to connected WebSocket clients via streams. Use when building real-time dashboards, live feeds, or collaborative features. | 79 Impact Pending No eval scenarios have been run Securityby Passed No known issues Reviewed: Version: 8921efa |