ollama_artifact_release_note_snippet
Release-note snippet. ARTIFACT. Renders the release-note draft from a change_pack artifact as a blockquote-wrapped DRAFT fragment with the caveat preserved. No model call, no polishing, no marketing lift. Returns {rendered, metadata} — operator reviews before publishing.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
slug |
string | yes | — | Slug of the source artifact (from artifact_list). |
extra_artifact_dirs |
string[] | no | — | Extra read-only search dirs (same as artifact_read). |
Full input schema
Section titled “Full input schema”The JSON Schema below is generated from the same zod schema the server validates against at the wire — it cannot drift from runtime behavior.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "slug": { "type": "string", "minLength": 1, "description": "Slug of the source artifact (from artifact_list)." }, "extra_artifact_dirs": { "description": "Extra read-only search dirs (same as artifact_read).", "type": "array", "items": { "type": "string", "minLength": 1 } } }, "required": [ "slug" ]}Envelope
Section titled “Envelope”Every tool returns the standard envelope — tier_used, model, tokens_in/tokens_out, elapsed_ms, backend provenance, warnings. See Envelope & tiers.
Source
Section titled “Source”Schema + handler: src/tools/artifactSnippets.ts · registration: src/index.ts
Back to the Tool Reference.