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.
59
67%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
Optimize this skill with Tessl
npx tessl skill review --optimize ./skills/iii-http-invoked-functions/SKILL.mdUse this pattern when iii should call external HTTP endpoints as functions.
registerFunction", use this pattern.{ path, id }) and a loop over registerFunction, use this pattern.registerTrigger({ type: 'http' }) instead.registerFunction(id, HttpInvocationConfig, options?) registers an outbound HTTP-invoked function.trigger({ function_id, payload }) invokes it like any other function.HttpInvocationConfig.headers are sent with the request.timeout_ms bounds the external call; if omitted, the worker invocation timeout applies.{ type: 'hmac', secret_key: 'WEBHOOK_SECRET' }{ type: 'bearer', token_key: 'API_TOKEN' }{ type: 'api_key', header: 'X-API-Key', value_key: 'API_KEY' }The *_key fields name environment variables. Never store raw secrets in skill-generated code or config.
registerWorker(url, { workerName })[{ path, id }]registerFunction(id, { url: base + path, method: 'POST' })token_key, secret_key, value_key){ owner, capability, external: true }registerTrigger({ type: 'http' }).legacy::orders).See ../references/http-invoked-functions.js.
Also available in Python: ../references/http-invoked-functions.py
Also available in Rust: ../references/http-invoked-functions.rs
iii-http-invoked-functions in the iii engine.a7ebbbb
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.