$worker
iii-directory
v0.4.1Engine introspection (functions / triggers / workers), workers registry proxy, and filesystem-backed skill + prompt reader.
- macOS: arm64 · x64
- Linux: arm64 · armv7 · x64
- Windows: arm64 · x64 · x86
skill doc
iii-directory
indexindex.md
iii-directory
Engine introspection, workers registry proxy, and filesystem-backed skill + prompt reader for the iii engine. Hosts four MCP-agnostic surfaces:
- Skills (
skills::*,skill::fetch) — markdown documents underiii://{id}plus aniii://skillsindex. Use for "when and why to use my worker's tools". - Prompts (
prompts::*) — static prompt templates listed byprompts::listand read byprompts::get. Parametric command templates the user invokes. - Directory (
directory::*) — read-side enrichment overengine::functions::list,engine::workers::list,engine::trigger-types::list, andengine::triggers::list. "What's connected to the engine right now?" - Registry (
registry::*) — HTTP proxy overapi.workers.iii.devwith the same row shape asdirectory::*. "What's published in the public registry?"
directory::* and registry::* share the same worker-list /
worker-info envelope shape, so callers can switch between the local
engine view and the published-registry view without re-learning the API.
Skills and prompts are sourced from a single configured folder on disk
(skills_folder); see the README for the install,
configuration, and skills::download flow.
How-tos
directory::* — what's connected to the engine
directory::function-list— list functions registered with the engine; filter by search/prefix/worker.directory::function-info— inspect one function's schemas, owner, and how-to skill.directory::trigger-list— list trigger types registered with the engine.directory::trigger-info— inspect one trigger type's schemas + live instance count.directory::registered-trigger-list— list registered trigger instances (subscriber rows).directory::registered-trigger-info— inspect one registered trigger (instance + type + function).directory::worker-list— list workers connected to the engine; same row shape asregistry::worker-list.directory::worker-info— inspect one connected worker's full surface.
registry::* — what's published in the public registry
registry::worker-list— search published workers inapi.workers.iii.dev; same row shape asdirectory::worker-list.registry::worker-info— full registry detail for one worker (envelope + readme + api_reference + skills_tree).