Medical Record Generator
PassAudited by ClawScan on May 10, 2026.
Overview
This appears to be a straightforward local medical-record template generator, but users should treat generated records as sensitive and verify any default medical assumptions.
Before installing, be aware that this skill is a local medical-record drafting aid, not a medical authority. Avoid entering unnecessary patient identifiers, protect any saved Markdown files, and review all default-filled medical fields carefully before using the output.
Findings (3)
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.
Using the skill may run local JavaScript as part of generating the record.
The skill explicitly tells the agent to execute an included local JavaScript helper. The reviewed code is purpose-aligned and has no network or dependency behavior, but local code execution is still something users should notice.
此技能包含一个可执行的病历生成脚本。当需要生成病历时,读取并执行 `scripts/generate_record.js`。
Only use the helper for the intended record-generation task, and review updates to the script before running newer versions.
Patient symptoms, demographics, and generated medical details may be saved on disk where other local users or backups could access them.
The helper can persist generated medical-record text to a local Markdown file. This is purpose-aligned, but the content may include sensitive health information.
const filepath = path.join(process.cwd(), filename); fs.writeFileSync(filepath, recordText, 'utf8');
Save records only in appropriate private locations, avoid unnecessary identifiers, and delete or protect generated files when they are no longer needed.
A generated record may contain unverified normal findings or default statements that are not true for the patient.
The skill discloses that it fills unspecified medical information with normal or default clinical values, which can make generated records look more certain than the user-provided facts support.
未明确说明的信息按"正常"或临床默认值填充
Treat the output as a draft only and have a qualified clinician verify all default-filled sections before clinical, legal, or administrative use.
