Daily Stock Analysis v2.1
Analysis
This stock-analysis skill is broadly coherent with its stated purpose, but users should notice that it can use API keys, send analysis to external AI providers, and optionally push scheduled reports to chat or email channels.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
cron job add --schedule "cron:0 18 * * 1-5" ... "执行 daily_push()"
The documentation shows an optional scheduled daily workflow that can repeatedly run analysis and push reports; it is disclosed and user-created.
akshare>=1.12.0 pandas>=2.0.0 numpy>=1.24.0 requests>=2.31.0 openai>=1.0.0
Dependencies are declared with lower-bound ranges rather than exact pinned versions; this is common but means future installs may pull newer package versions.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"api_key": "sk-替换为你的DeepSeekAPIKey" ... "telegram_token": "", ... "email_password": ""
The example configuration supports AI provider keys, chat bot tokens/webhooks, and email credentials for the advertised analysis and notification features.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
response = self.client.chat.completions.create(... messages=[{"role": "user", "content": prompt}], ...)The AI analyzer sends the generated stock-analysis prompt to the configured OpenAI-compatible provider; this is expected for LLM analysis but transmits user-selected stock context externally.
