一键导入
commit
Analiza los cambios en el stage, ejecuta validaciones previas y realiza un commit siguiendo el estándar de Conventional Commits del equipo con emojis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analiza los cambios en el stage, ejecuta validaciones previas y realiza un commit siguiendo el estándar de Conventional Commits del equipo con emojis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.
Ejecuta el análisis estático de Dart/Flutter y resuelve los issues y advertencias encontrados siguiendo las reglas de analysis_options.yaml y las prácticas del equipo
Genera unit tests y widget tests siguiendo el estándar del equipo (estructura AAA, groups por método, escenarios de error, convención de nombres y ubicación)
Implementa un sistema de respaldo y restauración en formato JSON local, siguiendo principios de Clean Architecture, serialización pura, compatibilidad cruzada e inmutabilidad.
| name | commit |
| description | Analiza los cambios en el stage, ejecuta validaciones previas y realiza un commit siguiendo el estándar de Conventional Commits del equipo con emojis. |
When the user asks you to commit the current changes, you MUST follow this exact sequence:
dart analyze to ensure there are no errors or warnings. If issues exist, fix them first.flutter test to ensure no tests are broken.git add . (or stage the specific files requested).git commit -m "..." command using the STRICT template below.You MUST strictly format the commit message as follows:
<type>(<scope>): <emoji> <Subject line (max 50 chars)>
<Body (MINIMUM 150 characters). Explain in detail WHAT was changed and WHY. Give context to the team.>
Componentes afectados:
- <component_1>
- <component_2>
You MUST choose exactly ONE type and its corresponding emoji from this list:
feat: 🆕 (New feature)fix: 🔨 (Bug fix)chore: 🧹 (Routine tasks, dependencies, etc.)docs: 📓 (Documentation changes)test: 🧪 (Adding or fixing tests)style: 🎨 (Formatting, missing semi colons, etc; no code change)refactor: 🏗️ (Code change that neither fixes a bug nor adds a feature)perf: 🛠️ (Code change that improves performance)build: 🧱 (Changes that affect the build system)ci: ⚙️ (Changes to our CI configuration files and scripts)revert: ⚠️ (Reverts a previous commit)feat(auth): 🆕 Implement login screen with Google provider
Se implementó la pantalla de inicio de sesión utilizando la arquitectura limpia previamente definida. Se agregaron los adaptadores para Google SignIn y se conectó el caso de uso principal con la capa de presentación. Esto resuelve el requerimiento del negocio para permitir el acceso rápido de nuevos usuarios sin necesidad de crear contraseñas manuales.
Componentes afectados:
- lib/ui/pages/login_page.dart
- lib/infrastructure/driven_adapters/auth_api.dart
- lib/domain/usecase/auth_use_case.dart
Before committing, ensure internally:
dart analyze and flutter test?<type> and <emoji>?