home / skills / openclaw / skills / jwdiario
This skill fetches the daily JW text from wol.jw.org/es, returning the verse and explanation in clear, contextual format.
npx playbooks add skill openclaw/skills --skill jwdiarioReview the files below or copy the command above to add this skill to your agents.
---
name: jwdiario
description: Buscar y obtener el texto diario de la página oficial de los Testigos de Jehová en español (wol.jw.org/es/). Utiliza web_fetch para acceder al contenido y extraer el texto del día actual. Use cuando se solicite el texto diario de JW o contenido bíblico diario de fuentes JW.
---
# Habilidad JWDiario
Esta habilidad permite obtener el texto diario de la página oficial de los Testigos de Jehová en español (wol.jw.org/es/).
## Funcionalidad principal
La habilidad realiza lo siguiente:
1. Accede a la página de la Biblioteca en Línea de los Testigos de Jehová
2. Extrae el texto diario correspondiente a la fecha actual
3. Presenta el texto con contexto bíblico y explicación pertinente
## Uso típico
Cuando se solicita:
- "Texto diario de JW"
- "Texto de hoy de JW"
- "Buscar texto del día en JW"
- "Mostrar lectura diaria de JW"
## Flujo de trabajo
1. Usa `web_fetch` para acceder a https://wol.jw.org/es/
2. Extrae el contenido del día actual
3. Formatea el texto de manera clara y legible
4. Incluye el versículo bíblico correspondiente y su explicación
## Ejemplo de uso
```
Usuario: "Texto diario de JW por favor"
Habilidad: Obtiene el texto del día desde wol.jw.org/es/ y lo presenta con el versículo bíblico y explicación correspondiente.
```
## Recursos necesarios
- `web_fetch` para acceder al sitio web
- Capacidad de procesamiento de texto para formatear correctamente la salidaThis skill fetches and presents the daily Bible text published on the Spanish site of Jehovah’s Witnesses (wol.jw.org/es/). It retrieves the current day’s passage, includes the associated scripture reference, and formats a concise explanatory note. Use it when a user requests the JW daily text or the daily biblical reading from JW resources.
The skill uses a web_fetch integration to access the Wol Online Library Spanish homepage and locate the daily text entry for the current date. It parses the page to extract the scripture passage, citation, and any brief explanatory context provided. Finally, it formats the passage and context into a clear, readable output for the user.
Is the content sourced from the official JW site?
Yes. The skill retrieves the daily text from the Spanish Wol Online Library (wol.jw.org/es/).
What happens if the site structure changes?
If the site layout changes, the parsing may fail. Implement error handling and update parsing rules when failures are detected.