1---2name: flutter-leancode-architecture-usage3description: Explain what the `flutter-leancode-architecture` plugin does and how to use it. Use when the user invokes `/flutter-leancode-architecture-usage`, asks what this plugin covers, or needs help with project structure, error handling, logging, or cross-plugin architecture choices.4---56# Architecture Usage78## How to respond910- If the user invoked this skill without a concrete task, start by explaining what this plugin covers.11- Show how to use it through concrete architecture tasks such as scaffolding, reviewing, or choosing the next plugin.12- Point to the most relevant rule or specialized skill, and route to sibling plugins when the task becomes DI, navigation, analytics, localization, or state management specific.13- If the user already gave a concrete architecture task, briefly explain why this plugin fits and then do the work.14- Do not reply with filler like "skill loaded", "ready for the task", or "what would you like to do?" before explaining the plugin.1516## What this plugin does1718- Covers LeanCode Flutter architecture standards for project structure, error handling, and logging.19- Helps decide when a task belongs here versus a dedicated plugin for DI, navigation, analytics, localization, or state management.2021## How to use it2223- Ask to scaffold a new feature aligned with LeanCode architecture.24- Ask for an architecture review of an existing feature or folder.25- Ask how to structure files, handle errors, or apply logging safely.26- Ask which related plugin should be used next for a concrete implementation task.2728## Example requests2930- "Scaffold a new booking feature using LeanCode architecture."31- "Review `lib/features/booking/` for architecture drift."32- "Which plugin should I use next for navigation and DI in this feature?"3334## Reach for these assets3536- `references/project-structure.md` - feature structure and organization.37- `references/error-handling.md` - failures, retries, and error UX.38- `references/logging.md` - logging conventions and security guardrails.39- `skills/review-leancode-arch/SKILL.md` - systematic architecture review.40- `skills/scaffold-feature/SKILL.md` - feature scaffolding workflow.41- If the task becomes DI, navigation, analytics, localization, or state-management specific, switch to the matching dedicated plugin.