Back to skill
v1.0.0

AI Citation Content Writer

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 6:12 AM.

Analysis

This appears to be a straightforward local content-template writer with no credential, network, persistence, or privileged behavior, though users should review output paths and generated content.

GuidanceThis skill is reasonable to install from a security perspective. Use safe output filenames, keep generated files in a project directory, and fact-check citations, statistics, and comparisons before publishing.

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_content.py
if args.output:
        with open(args.output, 'w') as f:
            f.write(content)

The helper writes generated content to a caller-supplied output path. This is expected for a content generator, but it can overwrite an existing file if used carelessly.

User impactA poorly chosen output path could replace an existing local file with generated template text.
RecommendationUse a dedicated working directory and a new output filename, and review before overwriting existing files.
Human-Agent Trust Exploitation
SeverityInfoConfidenceMediumStatusNote
scripts/generate_content.py
TEMPLATES = {
    "definition": """# What is {topic}? (Complete Guide)

The documentation describes five content formats, but the helper script artifact visibly implements only the definition template and defaults other requested formats to it.

User impactIf relying on the helper script for FAQ, comparison, how-to, or statistics formats, users may receive mismatched or incomplete output.
RecommendationReview generated content carefully and verify the helper supports the requested format before relying on it.