AI Citation Content Writer

PassAudited by ClawScan on May 1, 2026.

Overview

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.

This 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.

What this means

A poorly chosen output path could replace an existing local file with generated template text.

Why it was flagged

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.

Skill content
if args.output:
        with open(args.output, 'w') as f:
            f.write(content)
Recommendation

Use a dedicated working directory and a new output filename, and review before overwriting existing files.

What this means

If relying on the helper script for FAQ, comparison, how-to, or statistics formats, users may receive mismatched or incomplete output.

Why it was flagged

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

Skill content
TEMPLATES = {
    "definition": """# What is {topic}? (Complete Guide)
Recommendation

Review generated content carefully and verify the helper supports the requested format before relying on it.