BBC Vietnamese Trendy News

v1.0.0

Fetch the latest trending global news when users ask about current or breaking news.

0· 264·1 current·2 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (fetch BBC Vietnamese headlines) align with included files and runtime needs: a small Python script plus requests/bs4/feedparser. Requiring python (and optionally conda to activate the environment) is reasonable for this implementation.
Instruction Scope
SKILL.md instructs the agent to run the bundled Python script and to install/activate a conda env. It references placeholders ({baseDir}, {path_to_conda_envs}) that must be resolved by the agent/platform; that is an implementation detail to verify. The instructions also tell the agent to treat the script output as 'verified' — this is a trust directive (not code-level exfiltration) and could lead the agent to overconfidently present feed content as authoritative.
Install Mechanism
No install spec; this is an instruction-only skill with bundled code and a requirements.txt. Nothing is downloaded from arbitrary URLs and no extract/run-from-remote steps are present.
Credentials
Only PYTHONIOENCODING=utf-8 and presence of conda/python binaries are required. No credentials, secrets, or unrelated environment variables are requested.
Persistence & Privilege
always is false, user-invocable true, and the skill does not request system-wide changes or modify other skills. It does not demand elevated persistence.
Assessment
This skill is internally consistent: it runs a small Python script that fetches the BBC Vietnamese RSS feed and formats headlines. Before installing, confirm you are comfortable allowing the agent to execute local Python code and make outbound HTTP requests to the BBC RSS URL. Ensure the platform will correctly substitute {baseDir} and {path_to_conda_envs} placeholders or adjust the commands to your environment. Note the SKILL.md instructs the agent to treat the feed output as 'verified' — RSS content can be incomplete or wrong, so consider training the agent to caveat it appropriately when reporting breaking news. If you operate in a highly restricted environment, review the script contents and dependencies (requests, feedparser, BeautifulSoup) yourself before enabling execution.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsconda, python
EnvPYTHONIOENCODING=utf-8
latestvk97f2dyjpweqjm7g96phwb9kwn82rh0g
264downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Daily News Skill

This skill allows the agent to fetch the daily top news headlines from BBC News Tiếng Việt sources by running a Python script. The agent must treat the script output as verified headline data and avoid modifying the factual content.

Instructions

When the user asks for latest news or trending global events:

  1. Locate Environment: Instead of calling conda directly (which may not be in the PATH), use the explicit path to the environment's python interpreter.

  2. Execute Command: Run the script by calling the python executable located inside the global_venv directory to ensure all dependencies are loaded correctly:

$(which conda || echo "/opt/conda/bin/conda" || echo "$HOME/miniconda3/bin/conda") run -n global_venv python "{baseDir}/daily_news.py"
  1. Fallback: If conda is still not found, execute using the direct path to the virtual environment's python:
{path_to_conda_envs}/global_venv/bin/python "{baseDir}/daily_news.py"
  1. The script will collect and format the latest news headlines.
  2. Paraphrase and summarize those relevant news items clearly.
  3. Present them as the final response.

Setup

Ensure you have the required Python packages installed:

conda activate global_venv
pip install -r "{baseDir}/requirements.txt"

Comments

Loading comments...