Huo15 Comic Storyboard
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
A malformed or untrusted script.json could make the skill create or overwrite .png files outside the intended output folder.
The scene id comes from script.json and is used directly as part of the output file path. Absolute paths or path traversal sequences in the scene id could cause generated images to be written outside the requested storyboard directory.
sid = scene["id"]
out = out_dir / f"{sid}.png"
...
download(url, out)Sanitize scene ids to safe filenames, reject absolute paths and path separators, and verify the resolved output path remains inside out_dir before writing.
If the character manifest is wrong or malicious, the skill could upload unintended local files as reference images to the external provider.
Reference image paths are taken from the character manifest and sent to the provider workflow without checking that they are under --char-dir. ArkClient converts local reference paths into data URIs for the remote image-generation request.
for img in info.get("images", []):
if "_full." in img:
refs.append(img)
...
client.generate_image(
prompt=prompt,
reference_images=refs,
size="768x1344",
)Only use trusted character manifests, and update the skill to resolve and require reference paths to stay under the selected character directory with image-type validation.
Users must provide a provider API key, and the key may authorize paid generation requests.
The code requires an ARK_API_KEY provider credential. That is expected for Seedream generation, but the registry metadata says no required env vars or primary credential.
self.api_key = api_key or os.environ.get("ARK_API_KEY", "")
if not self.api_key:
raise RuntimeError("缺少 ARK_API_KEY 环境变量")Document ARK_API_KEY in metadata and use a limited-scope or budget-limited key where possible.
