← 返回 Skills 市场
Jwdiario
作者
djismgaming
· GitHub ↗
· v1.0.2
· MIT-0
1892
总下载
1
收藏
2
当前安装
3
版本数
在 OpenClaw 中安装
/install jwdiario
功能描述
Buscar y obtener el texto diario de la página oficial de los Testigos de Jehová para la Librería Watchtower en español (wol.jw.org/es/). Utiliza web_fetch pa...
使用说明 (SKILL.md)
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:
- Accede a la página de la Biblioteca en Línea de los Testigos de Jehová
- Extrae el texto diario correspondiente a la fecha actual
- 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
- Usa
web_fetchpara acceder a https://wol.jw.org/es/wol/h/r4/lp-s/AÑO/MES/DIA (por ejemplo: https://wol.jw.org/es/wol/h/r4/lp-s/2026/2/8 para el 8 de febrero de 2026) - Extrae el contenido del día actual
- Incluye el encabezado del día con la cita bíblica correspondiente y la explicación sin cambiar su texto de ninguna forma.
- Incluye el enlace
https://wol.jw.org/es/al final del mensaje
Nota importante
- Siempre usar la versión en español de la página (wol.jw.org/es/).
- No traducir el texto. El contenido debe extraerse directamente de la fuente en español, tal como aparece en la página oficial.
Ejemplo de uso
Usuario: "Texto diario de JW por favor"
Habilidad: Obtiene el texto del día desde `https://wol.jw.org/es/wol/h/r4/lp-s` y lo presenta con el versículo bíblico y explicación correspondiente. No cambia el texto original. Añade el enlace al final.
Recursos necesarios
web_fetchpara acceder al sitio web- Capacidad de procesamiento de texto para formatear correctamente la salida
安全使用建议
This skill appears to do what it says — fetch the Spanish 'text of the day' from wol.jw.org — and it does not request credentials. However, consider the following before installing:
- Implementation risk: the code runs curl via child_process.execSync. While the URL is constructed from the system date (not directly from user input), shelling out increases attack surface compared to using a native fetch/http library. Prefer a version that uses a built-in HTTP client (fetch or https) instead of execSync.
- Parsing risk: the code uses a regex to extract content and strips HTML tags, which is brittle and may alter the exact presentation or miss content. That conflicts with the SKILL.md instruction to not change the text 'in any way'.
- Legal/terms: scraping site content may violate the source site's terms of use; check wol.jw.org policies if that matters for your environment.
If you still want to use it: review or replace the execSync/curl call with a safe HTTP fetch, and validate the parsing preserves the exact text you need. If you don't want to run subprocesses on your agent host, don't install it.
功能分析
Type: OpenClaw Skill
Name: jwdiario
Version: 1.0.2
The skill uses `execSync` in `main.js` to execute a shell command (`curl`) for web requests, which is a high-risk practice and a potential shell injection vulnerability. While the URL parameters are currently derived from the system clock (year/month/day), the use of shell execution instead of standard Node.js networking libraries is unnecessary and risky. The skill otherwise appears to perform its stated function of fetching daily text from wol.jw.org.
能力评估
Purpose & Capability
Name/description and included files all point to a simple web-scraper that fetches the daily text from wol.jw.org/es/. Required credentials, env vars, and config paths are absent, which is consistent with the stated purpose.
Instruction Scope
SKILL.md instructs use of 'web_fetch' to retrieve the day's page and to present the original Spanish text unmodified. The code instead shells out to curl (execSync) and strips HTML tags/normalizes whitespace before printing — this alters formatting and may not strictly preserve the original presentation. The instructions do not tell the agent to read unrelated files or secrets.
Install Mechanism
There is no install spec (instruction-only plus a single JS file). Nothing is downloaded during install; risk from install mechanism is low.
Credentials
The skill requests no environment variables, credentials, or config paths. Network access to wol.jw.org is required and expected for the stated task; no extraneous secrets are requested.
Persistence & Privilege
The skill is not forced-always, is user-invocable, and allows normal autonomous invocation. It does not request elevated or persistent system-wide privileges.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jwdiario - 安装完成后,直接呼叫该 Skill 的名称或使用
/jwdiario触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
Version 1.0.2
- Added main implementation file (main.js) with core functionality.
- Added metadata file (_meta.json) for skill registration and configuration.
v1.0.1
- Añadido enlace específico a la sección de texto diario ([wol.jw.org/es/wol/h/r4/lp-s]).
- Cambiada la URL de acceso para especificar la fecha en la ruta.
- Indicaciones claras para mantener el texto original, sin traducción o modificación.
- Ahora se requiere incluir el enlace de la página al final de la respuesta.
- Aclaraciones sobre solo usar la versión en español y sobre el uso del formato de URL con fecha.
v1.0.0
- Primera versión del skill "jwdiario".
- Permite buscar y mostrar el texto diario desde la página oficial de los Testigos de Jehová en español (wol.jw.org/es/).
- Utiliza `web_fetch` para acceder y extraer automáticamente el texto correspondiente al día actual.
- Presenta el versículo bíblico y su explicación de manera clara y legible.
元数据
常见问题
Jwdiario 是什么?
Buscar y obtener el texto diario de la página oficial de los Testigos de Jehová para la Librería Watchtower en español (wol.jw.org/es/). Utiliza web_fetch pa... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1892 次。
如何安装 Jwdiario?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jwdiario」即可一键安装,无需额外配置。
Jwdiario 是免费的吗?
是的,Jwdiario 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Jwdiario 支持哪些平台?
Jwdiario 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Jwdiario?
由 djismgaming(@djismgaming)开发并维护,当前版本 v1.0.2。
推荐 Skills