Zyt customised person
Analysis
This Chanjing integration is mostly purpose-aligned, but it relies on account credentials and references high-impact helper scripts for upload/create/delete that are not included in the reviewed package.
Findings (4)
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.
4 file(s): SKILL.md, examples.md, reference.md, scripts/_auth.py
SKILL.md tells the agent to use helper scripts such as upload_file, create_person, poll_person, and delete_person, but the reviewed package only includes scripts/_auth.py. The code for the upload/create/delete workflow is absent from the supplied artifacts.
`POST /open/v1/delete_customised_person` ... 删除成功时响应只返回通用成功消息,因此脚本直接回显传入的 `person_id`。
The skill supports deleting a Chanjing custom digital human by ID. This is within the stated purpose, but it is a destructive account action.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
CONFIG_FILE = CONFIG_DIR / "credentials.json" ... data=json.dumps({"app_id": app_id, "secret_key": secret_key})The auth helper reads local Chanjing app_id and secret_key values, sends them to the Chanjing token endpoint, and caches an access token. This is expected for the service but grants account-level API access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
调用 `upload_file` 上传本地源视频,获取 `file_id` ... API 基础地址固定:`https://open-api.chanjing.cc`
The workflow sends local source videos, potentially containing a real person's face and voice, to Chanjing or its returned upload URL. This data flow is disclosed and purpose-aligned, but sensitive.
