skill-generator — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited skill-generator (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Este skill permite al agente aprender y persistir nuevas habilidades automáticamente. Cuando se formula una consulta T-SQL compleja que funciona correctamente, o cuando el médico solicita guardar un reporte/consulta recurrente, el agente genera un nuevo skill en el espacio de trabajo.
diabeticos-sin-insulina)..agents/skills/<name>/ si no existe..agents/skills/<name>/SKILL.md.v_historiaClinica, t_Cie10, etc.).---
name: diabeticos-adultos-procedencia
description: Obtiene la distribución geográfica de pacientes diabéticos de más de 45 años.
---
# Consulta de Diabéticos Adultos por Procedencia
Este skill contiene la consulta optimizada para obtener pacientes diabéticos mayores de 45 años agrupados por su procedencia geográfica.
## Consulta T-SQL Ejecutada
```sql
SELECT
proc_Descripcion AS Procedencia,
COUNT(DISTINCT hc_paciente) AS TotalPacientes
FROM
v_historiaClinica
WHERE
(valor LIKE '%diabetes%' OR estructura LIKE '%diabetes%')
AND DATEDIFF(YEAR, pac_Nacimiento, GETDATE()) > 45
GROUP BY
proc_Descripcion
ORDER BY
TotalPacientes DESC;
```
## Uso
Pide al agente: "Ejecutar la consulta de diabéticos adultos por procedencia"..agents/skills/<name>/SKILL.md y que podrá usarlo directamente en futuras preguntas estadísticas.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.