CAUTION version 1.0.1 · audited 2026-09-09
This is a documentation-style skill that tells an agent how to fetch public news RSS feeds (BBC, Reuters, NPR, Al Jazeera) with curl and turn the headlines into a short briefing. Optionally, it can send the summary text to OpenAI's text-to-speech endpoint using the user's OPENAI_API_KEY and save the resulting audio to /tmp/news.mp3. All network destinations are the named news feeds plus api.openai.com; there are no hidden endpoints, no downloads of executable code, no persistence and no payment or wallet activity. The only credential used is the OpenAI key, and it is used solely as an Authorization header to OpenAI's own API. The main residual risk is generic: the agent will read text from external news feeds, and any instructions embedded in that content could try to influence the agent, so summaries should be treated as untrusted input.
Instructions try to steer the agent beyond the declared purpose. The skill instructs the agent to fetch and summarize third-party RSS content (SKILL.md line 17: curl -s "https://feeds.bbci.co.uk/news/world/rss.xml"), so text controlled by external publishers or a network attacker enters the agent's context. The skill package itself contains no instructions attempting to override agent rules.
| Declared purpose | Fetch news from trusted international RSS feeds, summarize headlines into a briefing, and optionally produce a voice (audio) summary. |
| Observed behavior | Shell examples that curl five public RSS URLs, filter titles/descriptions with grep/sed/head, and one curl POST to api.openai.com/v1/audio/speech with the OPENAI_API_KEY bearer token, writing the MP3 to /tmp/news.mp3. Nothing else executes or is stored. |
| Verdict, rules only | CAUTION · reads credential-like environment variables: OPENAI_API_KEY |
| Verdict, AI | SAFE |
| Final verdict | CAUTION (never better than either pass) |
| capability | vs purpose | detail |
|---|---|---|
| network | needed | Outbound HTTPS to feeds.bbci.co.uk, www.reutersagency.com, feeds.npr.org, www.aljazeera.com (SKILL.md lines 17-42) and api.openai.com for TTS (line 70). |
| shell | needed | Bash snippets using curl, grep, sed and head to fetch and parse feeds (SKILL.md lines 15-53). |
| credentials | needed | Reads $OPENAI_API_KEY and sends it as a bearer token only to api.openai.com (SKILL.md line 71). No copying of the key elsewhere. |
| filesystem_write | needed | Writes the generated audio file to /tmp/news.mp3 (SKILL.md line 79). |
| severity | finding |
|---|---|
| low | Uses the user's OpenAI API key for text-to-speech The key is read from the environment and sent only to api.openai.com, which matches the declared voice-summary feature. It incurs API cost per use and means the summary text (which could include context the user pasted) leaves the machine. No other destination receives the key. SKILL.md:71 -H "Authorization: Bearer $OPENAI_API_KEY" \ |
| info | Writes an audio file to /tmp Single fixed output path in a temporary directory; no other files are created or modified. SKILL.md:79 --output /tmp/news.mp3 |
| low | Ingests untrusted external text into the agent RSS feed contents are attacker-influenceable in principle (compromised feed, hijacked network). Any instructions embedded in headlines or descriptions should be treated as data, not commands, especially if the agent holds credentials. SKILL.md:17 curl -s "https://feeds.bbci.co.uk/news/world/rss.xml" |
| info | Requires shell execution All functionality is delivered as bash/curl commands the agent is expected to run. The commands shown are read-only fetch-and-filter operations; no code is downloaded and executed, and there is no obfuscation or encoded payload anywhere in the package. SKILL.md:15 ```bash |
0 AI finding(s) were dropped because their file, line or quote did not match the package.
| domain | service rating | where |
|---|---|---|
| api.openai.com | not in the service index | SKILL.md:70 |
| clawhub.ai | not in the service index | skill-card.md:7 |
| feeds.bbci.co.uk | not in the service index | SKILL.md:17 |
| feeds.npr.org | not in the service index | SKILL.md:37 |
| www.aljazeera.com | not in the service index | SKILL.md:42 |
| www.reutersagency.com | not in the service index | SKILL.md:32 |
| Binaries invoked | bash, curl |
| Environment variables read | OPENAI_API_KEY |
| Hard-coded wallets | none |
| Pipes a download to a shell | 0 |
| eval / exec / subprocess | 0 |
| base64 blobs | 0 |
| File writes | 3 |
| Persistence | 0 |
| file | lines | sha256 |
|---|---|---|
SKILL.md | 104 | 1b4c45b56f567567… |
_meta.json | 6 | a11112804f3b3d00… |
skill-card.md | 45 | 4e6c2a6326716915… |
For agents
JSON: https://agenteconomy.report/k/news-summary.audit.json · badge: https://agenteconomy.report/k/news-summary.audited.svg ·
skill rating: /k/news-summary · commission an audit of any skill: US$ 29 per version.
The complete published package of this exact version was downloaded from the registry and read statically; nothing was executed. A deterministic pass extracts network destinations, binaries, environment variables, writes, install commands, obfuscation markers, subprocesses and wallets, each with file and line. An AI then reads the whole package with those facts and writes the summary, the capabilities and the findings under a strict schema; every finding it produces must cite a file, a line and the exact text, or it is dropped. The final verdict is the worst of the two passes. The audit does not change the skill's trust tier (policy); the author may respond through the dispute channel and the response is published here. Commissioned by: the Agent Economy Report (free program: the 150 most downloaded skills, September 2026).