Financial Ai Agent
Analysis
The skill is mainly a financial quote lookup tool, but it asks the agent to persistently edit the OpenClaw config file to store an API key using a broad shell command that could affect existing settings.
Findings (3)
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.
jq '. + {"custom": {"financial_agent_key": "XXX"}}' ~/.openclaw/openclaw.json > temp.json && mv temp.json ~/.openclaw/openclaw.jsonThis instructs the agent to rewrite the global OpenClaw configuration file using a raw shell command. The expression may replace existing custom settings with only the financial_agent_key field and does not include a backup, validation, or safer scoped update.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
「我的faa的key是 `XXX`」 ... FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)
The skill asks the user for an API key, stores it in OpenClaw configuration, and reads it for later use. This is expected for the financial API integration, but it is still credential handling.
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/SH600519"
The configured API key is sent to the external financialagent.cc API. This is purpose-aligned for fetching market quotes, but users should be aware that their query symbols and API key go to that service.
