Skill Creator
Analysis
The skill appears purpose-aligned for creating and testing other skills, but users should supervise its local file changes, background evaluations, and any external helper scripts it references.
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.
skill_dir = Path(path).resolve() / skill_name ... skill_md_path.write_text(skill_content) ... example_script.chmod(0o755)
The helper creates files and an executable example script at a user-supplied path. This is expected for initializing a new skill, but it gives the workflow local file-write authority that should be pointed only at an intended skill workspace.
Use the `eval-viewer/generate_review.py` script to show the user the results
SKILL.md references an evaluation helper script that is not included in the provided file manifest. That may be a normal local tool dependency, but its provenance is outside the supplied artifacts.
make the skill descriptions a little bit "pushy" ... use this skill whenever the user mentions dashboards ... even if they don't explicitly ask
The skill encourages broader trigger language for generated skills. This is disclosed and related to improving skill triggering, but overly broad descriptions can make future skills activate more often than the user expects.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
run claude-with-access-to-the-skill on them ... While the runs happen in the background
The evaluation workflow can send test prompts and skill content through background agent runs. This is purpose-aligned for benchmarking a skill, but users should be aware of what data is included in those prompts.
