iii / worker
$worker

skills

v0.2.1

Agentic content registry worker. Hosts skills + prompts + the iii:// resource resolver that the mcp worker serves to harnesses.

  • macOS: arm64 · x64
  • Linux: arm64 · armv7 · x64
  • Windows: arm64 · x64 · x86

functions

13

prompts::list

function

List registered prompts (name, function_id, arg count, registered_at).

request
empty object
response
  • promptsunknown[]required

prompts::unregister

function

Remove a registered prompt by name.

request
  • namestringrequired
response
  • namestringrequired
  • removedbooleanrequired

prompts::mcp-get

function

Internal: dispatches a registered prompt handler and normalizes the result for MCP prompts/get.

request
  • argumentsunknown
  • namestringrequired
response
valueunknown

skills::fetch_skill

function

Fetches the content of one or more skill resources identified by iii:// URIs. When you encounter iii:// links in skill instructions, use this tool to retrieve their contents (batch with `uris` when helpful).

request
  • uristring

    A single iii:// URI to read. Must start with "iii://".

  • urisstring[]

    Multiple iii:// URIs to read and concatenate into one response.

response
valuestring

prompts::mcp-list

function

Internal: returns the MCP prompts/list envelope (full arguments schema for each registered prompt).

request
empty object
response
valueunknown

skills::list

function

List registered skills (id, body length, registered_at) without bodies.

request
empty object
response
  • skillsunknown[]required

skill::fetch

function

Fetches the content of one or more skill resources identified by iii:// URIs. When you encounter iii:// links in skill instructions, use this tool to retrieve their contents (batch with `uris` when helpful).

request
  • uristring

    A single iii:// URI to read. Must start with "iii://".

  • urisstring[]

    Multiple iii:// URIs to read and concatenate into one response.

response
valuestring

skills::resources-list

function

Internal: returns the MCP resources/list envelope with the iii://skills index + one iii://{id} entry per registered skill.

request
empty object
response
valueunknown

skills::resources-templates

function

Internal: returns the MCP resources/templates/list envelope.

request
empty object
response
valueunknown

prompts::register

function

Register a slash-command prompt; clients call prompts/get to render it.

request
  • argumentsunknown[]
  • descriptionstringrequired

    Free-text description shown in the client's prompt picker.

  • function_idstringrequired

    Handler function called on prompts/get with the supplied arguments.

  • namestringrequired

    Unique prompt name (lowercase ASCII, kebab/underscore, max 64 chars).

response
  • namestringrequired
  • registered_atstringrequired

skills::unregister

function

Remove a registered skill by id.

request
  • idstringrequired
response
  • idstringrequired
  • removedbooleanrequired

skills::resources-read

function

Internal: resolves an iii:// URI and returns the MCP resources/read contents envelope.

request
  • uristringrequired
response
valueunknown

skills::register

function

Register a markdown skill so it appears as iii://{id} in resources/list.

request
  • idstringrequired

    Unique skill id (lowercase ASCII, kebab/underscore, max 64 chars).

  • skillstringrequired

    Markdown body served at iii://{id}.

response
  • idstringrequired
  • registered_atstringrequired

triggers

2

skills::on-change

trigger

Fires after any mutation of the skills registry (register / unregister).

invocation
valueunknown
return
valueunknown

prompts::on-change

trigger

Fires after any mutation of the prompts registry (register / unregister).

invocation
valueunknown
return
valueunknown