Byted Data Label
Analysis
This looks like a real Seederive API helper, but it needs review because it uses cloud secret keys, uploads user data to a remote service, can change or delete labeling resources, and auto-installs a dependency.
Findings (5)
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.
当用户提到以下任何场景时必须使用此 Skill... 即使用户没有直接提到「Seederive」... 只要涉及对一批文本做分类/打标/分析/翻译/评分... 都应触发此 Skill。
The skill directs the agent to use Seederive for broad generic analysis and translation tasks, not only when the user asks for Seederive. This can redirect user intent toward an external platform.
def task_delete(args, config):
"""删除任务"""
_delete(config, f"/task/{args.id}")The CLI performs destructive cloud task deletion directly when invoked. The references also document update, delete, backfill, tag-base deletion, and model-change commands without an explicit confirmation step.
except ImportError:
print("缺少 requests 库,正在安装...")
import subprocess
subprocess.check_call([sys.executable, "-m", "pip", "install", "requests", "-q"])The script automatically installs an unpinned package from pip during normal execution, despite there being no install spec or declared dependency.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
access_key = os.environ.get("VOLCENGINE_ACCESS_KEY", "")
secret_key = os.environ.get("VOLCENGINE_SECRET_KEY", "")
...
"Volc-Secret-Key": config["secret_key"]The script reads cloud AK/SK credentials and sends the secret key in outbound headers. This high-impact credential use is not reflected by the registry metadata's no-credential/no-env-var declarations.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
DEFAULT_BASE_URL = "https://sd6qlcofkmfq59riqgli0.apigateway-cn-beijing.volceapi.com" ... resp = requests.post(_url(config, path), headers=_headers(config), files=files, data=data)
The script posts user-supplied files and data to an external API endpoint. This is expected for a cloud labeling platform, but the artifacts do not describe data retention, workspace boundaries, or privacy handling.
