Auto Coding
Analysis
The skill is a coherent coding assistant, but it exposes live-looking API keys and uses local Nanobot LLM credentials that are not clearly declared in the registry.
Findings (6)
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.
安全检查 | 无硬编码密钥 | ✅
The test report claims there are no hardcoded secrets, while the provided artifacts contain exposed API keys.
"requires":{"bins":["python","pip"]},"install":[{"package":"dashscope"},{"package":"duckduckgo-search"}]The skill metadata asks for Python/pip and unpinned PyPI packages, while the registry section says there is no install spec.
测试验证 - 运行测试确保代码工作
The skill expects generated code or tests to be run as part of validating coding output.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
API_KEYS = { "bailian": "sk-sp-f5a...", "minimax": "sk-api-YOuc..." }The distributed source embeds live-looking LLM provider API tokens instead of using placeholders or user-supplied credentials.
config_path = Path.home() / ".nanobot" / "config.json" ... api_key = provider_config.get("apiKey", "")The design explicitly reads API keys from the user's persistent Nanobot configuration to call the configured LLM provider.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
api_base = "https://coding.dashscope.aliyuncs.com/v1" ... api_base = "https://api.minimaxi.com/anthropic/v1"
The code sends prompts and model requests to external LLM provider endpoints.
