Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

venetech-news维内泰克新闻

Agent Skill

venetech-news 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,135

周安装

414

GitHub Stars

公开资料未说明

下载量

3,246
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:venetech-news(维内泰克新闻)
来源仓库:https://github.com/oscarmiranda90/venetech-news
安装命令:
openclaw skills install venetech-news
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install venetech-news

简介

Venetech新闻聚合美国科技、金融与初创动态,提供行业简报服务。

  • 覆盖人工智能、金融科技与危机应对等热点领域。
  • 支持关键词订阅与趋势摘要生成。
  • 安装命令:openclaw skills install venetech-news,依赖外部新闻源API。
  • 信息时效性强,重要决策应交叉验证多个信源。

SKILL.md

name
VeneTech News
description
>

VeneTech News — Skill de Noticias Tech Venezolanas

Visión General

Obtiene y resume noticias de tecnología, startups, IA, fintech y emprendimiento digital desde el ecosistema venezolano y latinoamericano. Agrega contenido de 14 fuentes en español e inglés, priorizando el contexto venezolano.


Fuentes RSS y HTTP

🇻🇪 Portales Venezolanos (scraping HTTP + BeautifulSoup)

# Banca y Negocios — fintech y economía digital
curl -sL -A "Mozilla/5.0" "https://bancaynegocios.com/tecnologia/"

# Con-Café — tech y vida digital en Caracas (tiene RSS WordPress)
curl -sL -A "Mozilla/5.0" "https://con-cafe.com/feed/"

# El Estímulo — análisis, economía y startups
curl -sL -A "Mozilla/5.0" "https://elestimulo.com/tecnologia/"

# El Nacional — política, economía y tech
curl -sL -A "Mozilla/5.0" "https://www.elnacional.com/tecnologia/"

# Noticias 24 — breaking news y tech Venezuela
curl -sL -A "Mozilla/5.0" "https://www.noticias24.com/tecnologia/"

# El Pitazo — periodismo independiente verificado
curl -sL -A "Mozilla/5.0" "https://elpitazo.net/tecnologia/"

# Globovisión — noticias 24h Venezuela y mundo
curl -sL -A "Mozilla/5.0" "https://globovision.com/tecnologia/"

# TeleSUR — Venezuela y Latinoamérica
curl -sL -A "Mozilla/5.0" "https://www.telesurtv.net/tecnologia/"

🌎 Tech en Español — RSS Feed (más limpio y estable)

# Xataka — gadgets, móviles, IA
curl -sL -A "Mozilla/5.0" "https://www.xataka.com/rss"

# Hipertextual — tecnología, ciencia, tendencias
curl -sL -A "Mozilla/5.0" "https://hipertextual.com/feed"

# FayerWayer — tech latinoamericano, startups
curl -sL -A "Mozilla/5.0" "https://www.fayerwayer.com/feed/"

# Bloomberg Línea — tech y mercados para LATAM
curl -sL -A "Mozilla/5.0" "https://bloomberglinea.com/arc/outboundfeeds/rss/category/tecnologia/"

🇺🇸 Tech Global en Inglés — RSS Feed oficial

# TechCrunch — startups, VC, innovación global
curl -sL "https://techcrunch.com/feed/"

# Ars Technica — hardware, software, ciberseguridad
curl -sL "https://feeds.arstechnica.com/arstechnica/index"

Parseo de RSS

Extraer títulos y descripciones de un feed RSS:

curl -sL -A "Mozilla/5.0" "https://www.xataka.com/rss" | \
  python3 -c "
import sys, xml.etree.ElementTree as ET
root = ET.parse(sys.stdin).getroot()
items = root.findall('.//item')[:8]
for i in items:
    title = i.find('title')
    desc  = i.find('description')
    link  = i.find('link')
    pub   = i.find('pubDate')
    print('TÍTULO:', title.text.strip() if title is not None else '')
    print('DESC:',   (desc.text or '')[:120].strip() if desc is not None else '')
    print('URL:',    link.text.strip() if link is not None else '')
    print('FECHA:',  pub.text.strip() if pub is not None else '')
    print('---')
"

Parseo ligero para HTML de portales venezolanos (BeautifulSoup):

pip install beautifulsoup4 requests --break-system-packages -q

python3 - <<'EOF'
import requests
from bs4 import BeautifulSoup

HEADERS = {
    "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
                  "AppleWebKit/537.36 (KHTML, like Gecko) "
                  "Chrome/120.0.0.0 Safari/537.36"
}

url = "https://con-cafe.com/feed/"
r = requests.get(url, headers=HEADERS, timeout=10)
soup = BeautifulSoup(r.content, "xml")
items = soup.find_all("item")[:6]
for item in items:
    print("TÍTULO:", item.find("title").text.strip()[:90])
    print("URL:", item.find("link").text.strip() if item.find("link") else "")
    print("---")
EOF

Workflow Estándar

1. Resumen Rápido (texto, 5–8 noticias)

  1. Obtener feed RSS de Con-Café (WordPress nativo, más confiable)
  2. Complementar con Xataka y FayerWayer para contexto regional
  3. Agregar 1–2 noticias de TechCrunch si hay algo relevante para Venezuela
  4. Filtrar por categorías relevantes (ver abajo)
  5. Deduplicar titulares similares entre fuentes
  6. Sintetizar en formato editorial con contexto venezolano

2. Briefing Completo (semanal o por categoría)

  1. Scraping/RSS de las 8 fuentes venezolanas
  2. RSS de las 4 fuentes tech en español
  3. RSS de TechCrunch y Ars Technica para contexto global
  4. Agrupar por categoría editorial
  5. Destacar noticias que afecten directamente a Venezuela
  6. Generar resumen en formato newsletter

Filtros de Relevancia para Venezuela

Al procesar noticias internacionales, priorizar si menciona:

  • Empresas venezolanas o fundadores venezolanos
  • Mercados latinoamericanos con impacto en Venezuela
  • Criptomonedas / USDT (muy usadas en Venezuela como reserva de valor)
  • Remesas digitales y transferencias internacionales
  • Ecommerce o pagos digitales en LATAM
  • Trabajos remotos y plataformas de freelance
  • Regulación tech en Venezuela o países similares
  • Acceso a internet, censura digital, VPNs
  • Inteligencia Artificial accesible en mercados emergentes

Categorías Editoriales

EmojiCategoríaPalabras clave
🚀Startups Venezuelastartup, emprendimiento, fundador, ronda, inversión, lanzamiento VE
🤖Inteligencia ArtificialIA, AI, ChatGPT, LLM, modelo, automatización, machine learning
💰Fintech & Criptofintech, crypto, bitcoin, USDT, blockchain, pago digital, remesa
📱Gadgets & Appsapp, smartphone, dispositivo, lanzamiento, software, plataforma
🌎Tech LatinoaméricaLATAM, Colombia, Brasil, México, startup regional, ecosistema
📊Economía Digitalecommerce, trabajo remoto, freelance, digitalización, plataforma
🔒Ciberseguridadciberseguridad, privacidad, VPN, hackeo, datos, malware, Venezuela
🎓Educación Techcurso, beca, bootcamp, formación, oportunidad para venezolanos

Formato de Salida

📡 VenTech News — [Fecha]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━

🚀 STARTUPS VENEZUELA
• [Titular adaptado al contexto venezolano]
  → [Fuente] | [URL]

🤖 INTELIGENCIA ARTIFICIAL
• [Titular + por qué importa para Venezuela]
  → [Fuente] | [URL]

💰 FINTECH & CRIPTO
• [Titular]
  → [Fuente] | [URL]

[... otras categorías con noticias disponibles ...]

━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🇻🇪 VenTech News — Construyendo el ecosistema digital venezolano

Buenas Prácticas

  • Nunca reproducir artículos completos — solo título, resumen (≤150 palabras) y URL
  • Respetar robots.txt de cada portal antes de iniciar scraping
  • Rate limiting: máximo 1 request por segundo por dominio
  • User-Agent real: usar Mozilla/5.0 Chrome para evitar bloqueos en portales VE
  • Proxies rotativos: recomendados para elpitazo.net (bloqueos frecuentes)
  • RSS primero: preferir feed RSS sobre scraping directo cuando esté disponible
  • Contexto venezolano: siempre agregar una frase sobre cómo la noticia impacta al ecosistema venezolano o la diáspora

Notas Técnicas por Portal

PortalMétodo recomendadoNotas
con-cafe.comRSS /feed/WordPress, muy confiable
xataka.comRSS /rssFeed oficial limpio
hipertextual.comRSS /feedFeed oficial disponible
fayerwayer.comRSS /feed/RSS público estable
techcrunch.comRSS /feed/NO scraping directo
arstechnica.comRSS feed oficialNO scraping directo
elpitazo.netHTTP + BS4Usar proxies, bloqueos frecuentes
globovision.comHTTP + BS4API interna detectable en DevTools
elnacional.comHTTP + BS4Requiere User-Agent real
elestimulo.comHTTP + BS4Puede requerir Selenium si hay JS
bancaynegocios.comHTTP + BS4Sección /tecnologia separada
noticias24.comHTTP + BS4Estructura limpia, fácil parseo
telesurtv.netHTTP + BS4Verificar robots.txt, sección /tecnologia
bloomberglinea.comHTTP + BS4Verificar rate limiting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.84%
按下载量换算3,208

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills