导购个人业绩分析
Analysis
The skill fits its retail analytics purpose, but it loads an undeclared local API client from a hard-coded personal path while accessing store, employee, and customer-performance data.
Findings (2)
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.
sys.path.insert(0, '/Users/yangguangwei/.openclaw/workspace-front-door') from api_client import get_api_client
The skill imports a runtime API client from a hard-coded local path outside the provided skill manifest, so important code that controls API access is not part of the reviewed package.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
client = get_api_client()
response = client.call_api('copilot', '/api/v1/guide/customer-funnel', params=params)The skill uses a local API client to retrieve guide and AIoT customer-funnel data from Copilot APIs, which is purpose-aligned but depends on the user's available service privileges.
