What problem does it solve? Strapi v5 introduced breaking architectural changes compared to v4, and AI models often generate outdated code based on deprecated v4 patterns like entityService. This Skill prevents that by routing every task through the official Strapi v5 documentation before writing any code. ## Core Features & Use Cases - Documentation Index: A curated catalog of official Strapi v5 doc URLs organized by topic (Document Service API, REST/GraphQL, TypeScript, migrations, plugins, deployment). - Strict Coding Rules: Enforces the Document Service API, documentId identifiers, explicit populate parameters, flat REST responses, and strict TypeScript typing. - Migration Support: Covers v4-to-v5 upgrade paths including breaking changes, codemods, and entityService refactoring. - Use Case: Ask the agent to build a custom controller for a blog API, and it will first fetch the current Strapi v5 controller documentation, then produce strictly typed TypeScript code using strapi.documents() instead of the deprecated entityService. ## Quick Start Ask the agent to create a custom Strapi v5 endpoint, service, or content-type and it will consult the official docs before writing the code.