Back to skill
v1.0.0

Persona Pack Builder

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 7:09 AM.

Analysis

This appears to be a benign persona/prompt-packaging skill, with the main caveat that its optional generator writes local files and references template files that are not included in the manifest.

GuidanceThis skill looks safe to install for creating persona prompt packs. If you use the optional Python generator, run it in a clean folder, verify the missing templates are present, and review the generated prompt files before selling or sharing them.

Findings (2)

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.

Abnormal behavior control

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.

Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
scripts/generate_persona_pack.py
output_dir = Path(args.output).resolve(); output_dir.mkdir(parents=True, exist_ok=True) ... dest.write_text(rendered, encoding='utf-8')

The helper writes multiple generated files into a user-provided output path. This is directly aligned with generating a persona pack, but it can overwrite same-named files if aimed at an existing directory.

User impactIf the script is run against a folder containing existing files with the same names, those files could be replaced.
RecommendationRun the generator only in a new, dedicated output folder and review generated files before publishing or reusing them.
Agentic Supply Chain Vulnerabilities
SeverityLowConfidenceHighStatusNote
scripts/generate_persona_pack.py
template_dir = script_dir.parent / 'assets' / 'templates'

The script expects bundled templates under assets/templates, while the provided manifest does not include that directory. This suggests an incomplete package or broken optional helper, not hidden malicious behavior.

User impactThe optional generator may fail or require missing local template files before it can produce a pack.
RecommendationConfirm the package includes the expected templates before relying on the script; otherwise use the documented workflow manually.