What problem does it solve? Keeping a Dart API client in sync with an evolving upstream OpenAPI specification is tedious and error-prone. This Skill automates fetching the latest Ollama OpenAPI spec, reviewing changes, scaffolding new models and resources, and verifying coverage so the ollama_dart package stays aligned with the official Ollama API. ## Core Features & Use Cases - Spec Fetch & Review: Downloads the latest Ollama OpenAPI spec and produces a structured change review against the current package implementation. - Scaffolding & Implementation Guidance: Generates new schema models and resources using manifest-driven placement rules, type mappings, and package-specific implementation patterns. - Verification & Quality Gates: Runs coverage, export, and drift checks plus Dart analyze, format, and unit tests to confirm the update is complete. - Use Case: When Ollama releases a new API field or endpoint, run the fetch-review-scaffold-verify workflow to update ollama_dart models like ChatRequest or GenerateResponse and confirm all expected properties are covered. ## Quick Start Ask the AI to fetch the latest Ollama OpenAPI spec, review the changes, and update the ollama_dart package accordingly.