home / skills / openclaw / skills / jwdiario

jwdiario skill

/skills/djismgaming/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 jwdiario

Review the files below or copy the command above to add this skill to your agents.

Files (2)
SKILL.md
1.4 KB
---
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 salida

Overview

This 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.

How this skill works

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.

When to use it

  • When a user asks for “JW daily text” or “Texto diario de JW”.
  • When someone wants the current day’s scriptural reading from wol.jw.org/es/.
  • When offering a daily devotional or scripture-of-the-day feature in Spanish.
  • When validating or archiving daily JW content for reference or backup.

Best practices

  • Respect source attribution: indicate the material was retrieved from wol.jw.org/es/.
  • Check and handle network or parsing errors gracefully; report when the daily text cannot be retrieved.
  • Strip site navigation and ads; present only the passage, reference, and brief explanation.
  • Cache results for a short interval to avoid repeated fetches for the same date and reduce load on the source site.
  • Validate date and timezone to ensure the correct day’s entry is returned for the user.

Example use cases

  • User requests: “Show me today’s JW text” and receives the scripture passage, citation, and short explanation.
  • Daily devotional email or bot message that automatically includes the current JW daily text in Spanish.
  • Archiving tool that fetches and stores each day’s JW text for backup or historical reference.
  • A multilingual assistant that serves Spanish-language users seeking the JW daily scripture.

FAQ

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.