Nueva feature
Skill eduardo-lezama/intranet-dashboard/.windsurf.bak/skills/nueva-feature
Intranet dashboard based on html, css and js. Includes advance use of agentic workflows and MCP. For personal use with my own info panels, automation and IoT related stuff
npx -y skills add eduardo-lezama/intranet-dashboard --skill nueva-featureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Usar al implementar una funcionalidad nueva de principio a fin
SKILL.md
2.3 KB, as published. Nobody here has run it
Cuándo usar esta skill
- Al implementar una nueva funcionalidad completa
- Cuando el usuario pida "añadir", "crear", "implementar" algo nuevo
- Para features que tocan múltiples capas (backend + frontend)
Contexto necesario antes de empezar
- Leer archivos relacionados con la feature
- Identificar qué capas se verán afectadas
- Verificar si hay patrones similares en el código existente
- Comprobar dependencias necesarias
Pasos
1. Planificación
- Definir scope exacto de la feature
- Listar archivos a crear/modificar
- Identificar dependencias externas (APIs, configs)
2. Backend (si aplica)
- Añadir configuración en
config.pysi es necesario - Crear cliente en
blueprints/[servicio]_client.pysi hay API externa - Añadir endpoint en
blueprints/main.py - Aplicar
@cache.cached()si corresponde
3. Frontend (si aplica)
- Añadir método en
static/js/dashboard.js - Añadir estilos en
static/css/components.cssodashboard.css - Añadir HTML en template correspondiente
4. Validación
ruff check .
ruff format --check .
python -c "from app import app"
5. Test manual
- Verificar que la feature funciona en navegador
- Comprobar logs de Flask
6. Commit
- Usar skill
@commitpara generar mensaje
<patrones_criticos> SIEMPRE:
- Seguir patrones existentes en el código
- Añadir logging con
current_app.logger - Documentar nuevas variables de entorno en README
NUNCA:
- Instalar dependencias sin preguntar
- Hardcodear valores que deberían ir en config
- Crear archivos fuera de la estructura existente
PREFERENTEMENTE:
- Reutilizar componentes CSS existentes
- Usar
utils.fetchJSON()en frontend - Cache para endpoints de lectura </patrones_criticos>
Sobre versiones y documentación
Al implementar esta skill, si usas APIs de Flask, requests, o Flask-Caching:
- Verifica la versión en
requirements.txt - Consulta el código existente para ver cómo se usa
- Si hay dudas sobre una API, indica qué versión asumes
Checklist de validación
-
ruff check .pasa sin errores -
ruff format --check .pasa - La app arranca sin errores
- La feature funciona en navegador
- No se han tocado archivos fuera del scope
- Variables de entorno documentadas si las hay