Last 30 Days
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to do the recent Reddit/X/web research it advertises, but it runs included Python code and may use local OpenAI or xAI API keys to contact external services.
This skill looks purpose-aligned, but review the bundled Python before use, especially if you plan to add OpenAI or xAI API keys. Use web-only mode or avoid sensitive research topics if you do not want queries sent to external providers.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Using the skill runs local code that performs the research workflow and network requests.
The skill explicitly instructs running bundled Python code as part of its normal research workflow.
python3 ./scripts/last30days.py "$ARGUMENTS" --emit=compact 2>&1
Only run it from a trusted skill package, and review the bundled scripts before using API keys with it.
If configured, your provider API keys may be used to make Reddit/X research requests and could incur provider usage costs.
The code reads optional OpenAI and xAI API keys from the environment or ~/.config/last30days/.env.
'OPENAI_API_KEY': os.environ.get('OPENAI_API_KEY') or file_env.get('OPENAI_API_KEY'),
'XAI_API_KEY': os.environ.get('XAI_API_KEY') or file_env.get('XAI_API_KEY')Use scoped provider keys where possible, keep ~/.config/last30days/.env private, and remove keys if you only want web-only mode.
Research topics may be shared with external providers such as OpenAI or xAI when their API keys are available.
The user's research topic is included in requests to an external provider API for Reddit discovery.
OPENAI_RESPONSES_URL = "https://api.openai.com/v1/responses"
...
"input": REDDIT_SEARCH_PROMPT.format(
topic=topic,Avoid using the skill for private or sensitive topics unless you are comfortable sending those queries to the configured providers.
The skill is understandable from the included artifacts, but the registry metadata is less complete than ideal for a code-running, API-key-capable integration.
The registry metadata gives limited provenance and does not declare the optional provider credentials described in SKILL.md.
Source: unknown Homepage: none Required env vars: none Env var declarations: none Primary credential: none
Treat it as an unverified third-party skill and review the included code before adding API keys.
