jike-data-service
Analysis
This looks like a coherent Douyin marketing-data client, but it needs review because its check command can reveal the API key and it includes remote state-changing keyword commands.
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.
| 添加监控关键词 | `keywords add` | 添加新关键词到监控列表 | ... | 删除关键词 | `keywords delete` | 从监控列表删除关键词 |
The skill exposes documented commands that change the remote monitoring keyword list. This fits the marketing-data purpose, but it is still a mutating action.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
if key: print(f"Key: {key[:8]}...{key[-4:]}" if len(key) > 12 else f"Key: {key}")The check command emits the configured API secret in output: partially for longer keys and fully for keys of 12 characters or fewer. Routine diagnostic output should not reveal secrets.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
url = f"{base}{path}" ... headers["X-API-Key"] = secret_key ... urllib.request.urlopen(req, timeout=30)The script sends user queries and the API key to the configured external API endpoint. This is expected for the service, but users should understand that data leaves the local environment.
