A股智投大师
Analysis
The skill appears coherent for A-share stock analysis, with disclosed but noteworthy use of an API key, external provider calls, companion skill auto-installation, and watchlist or alert changes.
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.
"requires": { "skills": ["mx-data", "mx-search", "mx-select-stock", "mx-selfselect", "stock-monitor-skill"], "action": "auto-install" }The skill declares automatic installation of five companion skills. These dependencies are directly related to the stated stock-analysis purpose, but the artifacts do not pin versions or identify dependency publishers.
url = f"{API_BASE}/self-select/manage"The included code can call a provider endpoint for managing self-selected stocks. This matches the stated watchlist-management feature, but it is an account-side mutation capability.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
MX_API_KEY = os.environ.get("MX_API_KEY") or os.environ.get("MX_SEARCH_API_KEY")The code uses an environment-provided API key and sends it as an API credential. SKILL.md discloses that an API key is needed, but the registry metadata lists no required environment variables or primary credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API_BASE = "https://mkapi2.dfcfs.com/finskillshub/api/claw"
The skill sends stock queries, search keywords, screening terms, and watchlist-related requests to an external provider API. This is expected for market-data functionality, but the artifacts do not describe provider data retention or boundary details.
