API Organization Pattern This skill defines the standardized API organization pattern used throughout this codebase. All external API integrations follow the same 5-file structure for consistency, type safety, and maintainability. When to Use This Skill Use this skill when: - Creating new API endpoints or integrations - Adding new API categories or domains - Implementing role-based API access (admin vs regular users) - Modifying existing API structure - Setting up authentication for API calls - Creating type-safe API wrappers Core Principles 1. Single Source of Truth - All API URLs defined on…