Docx Template Strict

AdvisoryAudited by Static analysis on May 7, 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.

What this means

The script can read the selected template, data JSON, and image files, then create or replace the specified output DOCX.

Why it was flagged

The documented use runs a bundled local Python script. This is expected for the skill's DOCX-processing purpose, but users should understand it executes code against local files they provide.

Skill content
python3 ~/.openclaw/skills/docx-template-strict/scripts/fill_template.py --template "/path/to/template.docx" --out "/path/to/output.docx" --data "/path/to/data.json"
Recommendation

Run it only on intended local files and choose an output path where replacement is acceptable.

What this means

If lxml is not already available, the skill may fail or the user may need to install a Python dependency separately.

Why it was flagged

The script depends on the lxml Python package while the provided install metadata declares no install spec or required binaries. This is a dependency clarity note, not evidence of hidden installation or unsafe behavior.

Skill content
from lxml import etree
Recommendation

If a dependency must be installed, obtain it from a trusted package source and avoid running unreviewed substitute code.