Tianshu Homework Split
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a simple local homework-text splitter with no evidence of credential use, network access, persistence, or destructive behavior.
This looks safe for its stated use: run it locally on homework or syllabus text you intend to process. Make sure the file path is not a private unrelated document, and note that Node is required even though the metadata does not declare it.
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.
If the user or agent points it at a private file, parts of that file may appear in the local output.
The helper reads the file path provided via --file as UTF-8 text. This is expected for splitting assignment text, but the selected file's contents may be reflected in the generated checklist.
const p = path.resolve(o.file); ... return fs.readFileSync(p, 'utf-8');
Use --file only with the intended homework or syllabus text, and check the path before running.
Users may need to verify the included script themselves and ensure Node is available locally.
The registry provides limited provenance and does not declare the Node runtime used by the documented workflow. The included files are small and dependency-free, so this is an install/provenance note rather than a concern.
Source: unknown; Homepage: none ... Required binaries (all must exist): none ... No install spec
Review the included script if provenance matters to you, and install/use Node only from a trusted source.
