Core Primitives
iii has three top-level primitives:
- Function: a named unit of work such as
orders::validate
- Trigger: an event source bound to a function
- Worker: a process that connects to the engine and executes functions
Use :: in function IDs, leading slashes in HTTP api_path, and expression for cron config.
Function Registration
Register local handlers when you control the implementation. Register HTTP-invoked functions when
iii should call an existing external endpoint.
| Shape |
Use for |
registerFunction(id, handler, options?) |
Local worker code |
registerFunction(id, HttpInvocationConfig, options?) |
Existing HTTP services |
registerTrigger({ type, function_id, config, metadata? }) |
Binding an event source |
trigger({ function_id, payload, action?, timeout? }) |
Calling any function by ID |
Functions and triggers can carry metadata for ownership, discovery, and generated skills. Do not put
secrets in metadata.
Workers and Registry
A worker is any process that connects to the engine and registers functions or trigger types. There
are two common paths:
| Task |
Use |
| Create your own worker |
Write SDK code that calls registerWorker, registerFunction, and registerTrigger |
| Add an existing capability |
Browse https://workers.iii.dev/, then call compose::add worker=<name> |
| Pin a worker version |
compose::add worker=<name>@<version> |
| Declare a local worker |
Add worker: path://./workers/my-worker under containers: |
| Reproduce a project |
Commit the exact versions in worker-compose.yaml |
The public worker registry at workers.iii.dev is for installable workers such as HTTP, state,
queue, pub/sub, cron, observability, sandbox, database, shell, console, and other capability
workers. Those workers may ship their own function-level skills; do not duplicate every capability
as a top-level iii skill.
Worker Manifest
Use iii.worker.yaml when iii should start a local worker project:
name: math-worker
runtime:
kind: python
package_manager: pip
entry: math_worker.py
scripts:
install: "pip install -r requirements.txt"
start: "python math_worker.py"
The manifest describes how to start the process. Once running, the WebSocket connection and function
registrations are what make the worker part of iii.
Live Engine Registry
The engine keeps a live registry of connected workers, registered functions, triggers, and trigger
types. Read it through the built-in discovery functions:
| Function |
Returns |
engine::workers::list |
Connected workers and metrics |
engine::functions::list |
Registered functions |
engine::triggers::list |
Registered triggers |
engine::trigger-types::list |
Advertised trigger types and schemas |
For topology changes, bind triggers to engine::workers-available or
engine::functions-available.
Built-In Trigger Shapes
| Trigger type |
Registration config |
Handler payload |
http |
{ api_path: "/orders/:id", http_method: "POST" } |
{ query_params, path_params, headers, path, method, body } |
cron |
{ expression: "0 0 9 * * * *" } |
{ trigger, job_id, scheduled_time, actual_time } |
durable:subscriber |
{ topic: "payments" } |
The queued message payload |
subscribe |
{ topic: "orders.created" } |
The published event payload |
state |
{ scope: "orders", key?: "order-123" } |
{ event_type, scope, key, old_value, new_value } |
stream |
{ stream_name, group_id, item_id? } |
Stream event details |
log |
{ level: "warn" } |
OpenTelemetry-style log data |
Add condition_function_id to built-in trigger config when the handler should only run if a boolean
condition function returns true.
Invocation Modes
| Mode |
Shape |
Use when |
| Sync |
trigger({ function_id, payload }) |
The caller needs the result |
| Void |
TriggerAction.Void() |
Optional side effect, no result needed |
| Enqueue |
TriggerAction.Enqueue({ queue }) |
Reliable async work with queue policy |
Use enqueue for work that must complete with retries. Use void for analytics, notifications, and
other non-critical side effects.
Code Examples
TypeScript
import { registerWorker, TriggerAction } from "iii-sdk";
const iii = registerWorker("ws://localhost:49134", { workerName: "orders-worker" });
iii.registerFunction("orders::validate", async (order) => {
if (!order.id) throw new Error("missing order id");
return { ...order, valid: true };
});
iii.registerFunction("orders::process", async (order) => {
const validated = await iii.trigger({ function_id: "orders::validate", payload: order });
await iii.trigger({
function_id: "orders::charge",
payload: validated,
action: TriggerAction.Enqueue({ queue: "payments" }),
});
return { accepted: true, orderId: validated.id };
});
iii.registerTrigger({
type: "http",
function_id: "orders::process",
config: { api_path: "/orders", http_method: "POST" },
});
Python
from iii import register_worker
iii = register_worker("ws://localhost:49134")
def validate(order):
if not order.get("id"):
raise ValueError("missing order id")
return {**order, "valid": True}
def process(order):
validated = iii.trigger({"function_id": "orders::validate", "payload": order})
iii.trigger({
"function_id": "orders::charge",
"payload": validated,
"action": {"type": "enqueue", "queue": "payments"},
})
return {"accepted": True, "orderId": validated["id"]}
iii.register_function("orders::validate", validate)
iii.register_function("orders::process", process)
iii.register_trigger({
"type": "http",
"function_id": "orders::process",
"config": {"api_path": "/orders", "http_method": "POST"},
})
Rust
use iii_sdk::{register_worker, InitOptions, RegisterFunction, TriggerAction};
use iii_sdk::protocol::{RegisterTriggerInput, TriggerRequest};
use serde_json::json;
let iii = register_worker("ws://127.0.0.1:49134", InitOptions::default());
iii.register_function(RegisterFunction::new("orders::validate", |order: serde_json::Value| {
if order["id"].is_null() {
return Err("missing order id".into());
}
Ok(json!({ "valid": true, "order": order }))
}))?;
let process_client = iii.clone();
iii.register_function(RegisterFunction::new_async("orders::process", move |order: serde_json::Value| {
let iii = process_client.clone();
async move {
let validated = iii.trigger(TriggerRequest::new("orders::validate", order)).await?;
iii.trigger(TriggerRequest {
function_id: "orders::charge".into(),
payload: validated.clone(),
action: Some(TriggerAction::Enqueue { queue: "payments".into() }),
timeout_ms: None,
}).await?;
Ok(json!({ "accepted": true, "order": validated }))
}
}))?;
iii.register_trigger(RegisterTriggerInput {
trigger_type: "http".into(),
function_id: "orders::process".into(),
config: json!({ "api_path": "/orders", "http_method": "POST" }),
metadata: None,
})?;
Advanced Primitive Patterns
- Custom triggers: use
registerTriggerType({ id, description }, handler) when the event source is
not built in. Keep listener setup in registerTrigger and cleanup in unregisterTrigger.
- Channels: use
createChannel() for binary or streaming data that should not be serialized into
JSON payloads. Pass readerRef or writerRef through a function payload.
- HTTP-invoked functions: use
HttpInvocationConfig for legacy APIs, third-party endpoints, or
immutable services. Use environment variable names for auth fields, not raw secrets.
- Schemas: Rust can derive request/response schemas with
schemars::JsonSchema; Python can use
type hints or Pydantic; Node can pass JSON Schema manually.
When to Use
- Use this skill for function registration, trigger binding, trigger payload shapes, invocation mode
decisions, worker creation, worker registry access, trigger conditions, custom trigger types,
channels, and HTTP-invoked functions.
- Use this when a task spans TypeScript, Python, or Rust examples for the same iii primitive.
Boundaries
- For engine ports, adapters, queue retry policy, worker manager, RBAC listeners, and deployment
config, use
iii-engine-config.
- For SDK-specific package exports and language caveats, use
iii-sdk-reference.
- For complete backend designs such as workflows, CQRS, agentic systems, and reactive apps, use
iii-architecture-patterns.
- For failed invocations, timeouts, RBAC denials, and retryability, use
iii-error-handling.
- Worker-backed capability details live with the worker docs, not as top-level iii skills.
1---2name: iii-core-primitives3description: Use when registering iii functions, binding triggers, selecting sync/void/enqueue invocation, creating workers, inspecting the live worker registry, installing registry workers, authoring custom triggers, moving channel data, or adapting external HTTP functions across TypeScript, Python, and Rust.4---5
6# Core Primitives
7
8iii has three top-level primitives:
9
10- **Function**: a named unit of work such as `orders::validate`
11- **Trigger**: an event source bound to a function
12- **Worker**: a process that connects to the engine and executes functions
13
14Use `::` in function IDs, leading slashes in HTTP `api_path`, and `expression` for cron config.
15
16## Function Registration
17
18Register local handlers when you control the implementation. Register HTTP-invoked functions when
19iii should call an existing external endpoint.
20
21| Shape | Use for |
22| --- | --- |
23| `registerFunction(id, handler, options?)` | Local worker code |
24| `registerFunction(id, HttpInvocationConfig, options?)` | Existing HTTP services |
25| `registerTrigger({ type, function_id, config, metadata? })` | Binding an event source |
26| `trigger({ function_id, payload, action?, timeout? })` | Calling any function by ID |
27
28Functions and triggers can carry metadata for ownership, discovery, and generated skills. Do not put
29secrets in metadata.
30
31## Workers and Registry
32
33A worker is any process that connects to the engine and registers functions or trigger types. There
34are two common paths:
35
36| Task | Use |
37| --- | --- |
38| Create your own worker | Write SDK code that calls `registerWorker`, `registerFunction`, and `registerTrigger` |
39| Add an existing capability | Browse `https://workers.iii.dev/`, then call `compose::add worker=<name>` |
40| Pin a worker version | `compose::add worker=<name>@<version>` |
41| Declare a local worker | Add `worker: path://./workers/my-worker` under `containers:` |
42| Reproduce a project | Commit the exact versions in `worker-compose.yaml` |
43
44The public worker registry at `workers.iii.dev` is for installable workers such as HTTP, state,
45queue, pub/sub, cron, observability, sandbox, database, shell, console, and other capability
46workers. Those workers may ship their own function-level skills; do not duplicate every capability
47as a top-level iii skill.
48
49### Worker Manifest
50
51Use `iii.worker.yaml` when iii should start a local worker project:
52
53```yaml
54name: math-worker
55runtime:
56 kind: python
57 package_manager: pip
58 entry: math_worker.py
59scripts:
60 install: "pip install -r requirements.txt"
61 start: "python math_worker.py"
62```
63
64The manifest describes how to start the process. Once running, the WebSocket connection and function
65registrations are what make the worker part of iii.
66
67### Live Engine Registry
68
69The engine keeps a live registry of connected workers, registered functions, triggers, and trigger
70types. Read it through the built-in discovery functions:
71
72| Function | Returns |
73| --- | --- |
74| `engine::workers::list` | Connected workers and metrics |
75| `engine::functions::list` | Registered functions |
76| `engine::triggers::list` | Registered triggers |
77| `engine::trigger-types::list` | Advertised trigger types and schemas |
78
79For topology changes, bind triggers to `engine::workers-available` or
80`engine::functions-available`.
81
82## Built-In Trigger Shapes
83
84| Trigger type | Registration config | Handler payload |
85| --- | --- | --- |
86| `http` | `{ api_path: "/orders/:id", http_method: "POST" }` | `{ query_params, path_params, headers, path, method, body }` |
87| `cron` | `{ expression: "0 0 9 * * * *" }` | `{ trigger, job_id, scheduled_time, actual_time }` |
88| `durable:subscriber` | `{ topic: "payments" }` | The queued message payload |
89| `subscribe` | `{ topic: "orders.created" }` | The published event payload |
90| `state` | `{ scope: "orders", key?: "order-123" }` | `{ event_type, scope, key, old_value, new_value }` |
91| `stream` | `{ stream_name, group_id, item_id? }` | Stream event details |
92| `log` | `{ level: "warn" }` | OpenTelemetry-style log data |
93
94Add `condition_function_id` to built-in trigger config when the handler should only run if a boolean
95condition function returns `true`.
96
97## Invocation Modes
98
99| Mode | Shape | Use when |
100| --- | --- | --- |
101| Sync | `trigger({ function_id, payload })` | The caller needs the result |
102| Void | `TriggerAction.Void()` | Optional side effect, no result needed |
103| Enqueue | `TriggerAction.Enqueue({ queue })` | Reliable async work with queue policy |
104
105Use enqueue for work that must complete with retries. Use void for analytics, notifications, and
106other non-critical side effects.
107
108## Code Examples
109
110### TypeScript
111
112```typescript
113import { registerWorker, TriggerAction } from "iii-sdk";
114
115const iii = registerWorker("ws://localhost:49134", { workerName: "orders-worker" });
116
117iii.registerFunction("orders::validate", async (order) => {
118 if (!order.id) throw new Error("missing order id");
119 return { ...order, valid: true };
120});
121
122iii.registerFunction("orders::process", async (order) => {
123 const validated = await iii.trigger({ function_id: "orders::validate", payload: order });
124 await iii.trigger({
125 function_id: "orders::charge",
126 payload: validated,
127 action: TriggerAction.Enqueue({ queue: "payments" }),
128 });
129 return { accepted: true, orderId: validated.id };
130});
131
132iii.registerTrigger({
133 type: "http",
134 function_id: "orders::process",
135 config: { api_path: "/orders", http_method: "POST" },
136});
137```
138
139### Python
140
141```python
142from iii import register_worker
143
144iii = register_worker("ws://localhost:49134")
145
146def validate(order):
147 if not order.get("id"):
148 raise ValueError("missing order id")
149 return {**order, "valid": True}
150
151def process(order):
152 validated = iii.trigger({"function_id": "orders::validate", "payload": order})
153 iii.trigger({
154 "function_id": "orders::charge",
155 "payload": validated,
156 "action": {"type": "enqueue", "queue": "payments"},
157 })
158 return {"accepted": True, "orderId": validated["id"]}
159
160iii.register_function("orders::validate", validate)
161iii.register_function("orders::process", process)
162iii.register_trigger({
163 "type": "http",
164 "function_id": "orders::process",
165 "config": {"api_path": "/orders", "http_method": "POST"},
166})
167```
168
169### Rust
170
171```rust
172use iii_sdk::{register_worker, InitOptions, RegisterFunction, TriggerAction};
173use iii_sdk::protocol::{RegisterTriggerInput, TriggerRequest};
174use serde_json::json;
175
176let iii = register_worker("ws://127.0.0.1:49134", InitOptions::default());
177
178iii.register_function(RegisterFunction::new("orders::validate", |order: serde_json::Value| {
179 if order["id"].is_null() {
180 return Err("missing order id".into());
181 }
182 Ok(json!({ "valid": true, "order": order }))
183}))?;
184
185let process_client = iii.clone();
186iii.register_function(RegisterFunction::new_async("orders::process", move |order: serde_json::Value| {
187 let iii = process_client.clone();
188 async move {
189 let validated = iii.trigger(TriggerRequest::new("orders::validate", order)).await?;
190 iii.trigger(TriggerRequest {
191 function_id: "orders::charge".into(),
192 payload: validated.clone(),
193 action: Some(TriggerAction::Enqueue { queue: "payments".into() }),
194 timeout_ms: None,
195 }).await?;
196 Ok(json!({ "accepted": true, "order": validated }))
197 }
198}))?;
199
200iii.register_trigger(RegisterTriggerInput {
201 trigger_type: "http".into(),
202 function_id: "orders::process".into(),
203 config: json!({ "api_path": "/orders", "http_method": "POST" }),
204 metadata: None,
205})?;
206```
207
208## Advanced Primitive Patterns
209
210- **Custom triggers**: use `registerTriggerType({ id, description }, handler)` when the event source is
211 not built in. Keep listener setup in `registerTrigger` and cleanup in `unregisterTrigger`.
212- **Channels**: use `createChannel()` for binary or streaming data that should not be serialized into
213 JSON payloads. Pass `readerRef` or `writerRef` through a function payload.
214- **HTTP-invoked functions**: use `HttpInvocationConfig` for legacy APIs, third-party endpoints, or
215 immutable services. Use environment variable names for auth fields, not raw secrets.
216- **Schemas**: Rust can derive request/response schemas with `schemars::JsonSchema`; Python can use
217 type hints or Pydantic; Node can pass JSON Schema manually.
218
219## When to Use
220
221- Use this skill for function registration, trigger binding, trigger payload shapes, invocation mode
222 decisions, worker creation, worker registry access, trigger conditions, custom trigger types,
223 channels, and HTTP-invoked functions.
224- Use this when a task spans TypeScript, Python, or Rust examples for the same iii primitive.
225
226## Boundaries
227
228- For engine ports, adapters, queue retry policy, worker manager, RBAC listeners, and deployment
229 config, use `iii-engine-config`.
230- For SDK-specific package exports and language caveats, use `iii-sdk-reference`.
231- For complete backend designs such as workflows, CQRS, agentic systems, and reactive apps, use
232 `iii-architecture-patterns`.
233- For failed invocations, timeouts, RBAC denials, and retryability, use `iii-error-handling`.
234- Worker-backed capability details live with the worker docs, not as top-level iii skills.