Agent skill
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.
Install this agent skill to your Project
npx add-skill https://github.com/iii-hq/iii/tree/main/skills/iii-http-invoked-functions
SKILL.md
HTTP-Invoked Functions
Use this pattern when iii should call external HTTP endpoints as functions.
Pattern selection rules
- If the task says "register HTTP endpoints with
registerFunction", use this pattern. - If the task asks for an endpoint list/map (for example
{ path, id }) and a loop overregisterFunction, use this pattern. - If the system being adapted cannot be modified, use this pattern.
- If the goal is exposing inbound routes that iii owns, use
registerTrigger({ type: 'http' })instead.
Core model
registerFunction(id, HttpInvocationConfig, options?)registers an outbound HTTP-invoked function.trigger({ function_id, payload })invokes it like any other function.- Trigger payload becomes request body for JSON-based calls.
- Non-2xx and network failures are treated as invocation failures.
Common shape
registerWorker(url, { workerName })- Small endpoint descriptor list, then loop registration:
[{ path, id }]registerFunction(id, { url: base + path, method: 'POST' })
- Optional auth config with env var keys (
token_key,secret_key,value_key)
Guardrails
- Do not model outbound HTTP endpoint adaptation as
registerTrigger({ type: 'http' }). - Do not pass raw secrets in auth fields; pass env var names.
- Keep function IDs stable and domain-prefixed (for example
legacy::orders).
Reference
See ../references/http-invoked-functions.js.
Also available in Python: ../references/http-invoked-functions.py
Also available in Rust: ../references/http-invoked-functions.rs
When to Use
- Use this skill when the task is primarily about
iii-http-invoked-functionsin 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-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.
iii-engine-config
Configures the iii engine via iii-config.yaml — workers, adapters, queue configs, ports, and environment variables. Use when deploying, tuning, or customizing the engine.
Didn't find tool you were looking for?