龙港求职技能
WarnAudited by ClawScan on May 10, 2026.
Overview
This job-search skill mostly matches its stated purpose, but it embeds a QQ mail password and emails results to a fixed QQ address by default.
Install only if you are comfortable reviewing and changing the email behavior. Before running it, replace the hardcoded sender credential, set your own recipient address, and ensure the missing Node dependency is properly declared and installed.
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.
Emails are sent through a fixed account the user does not control, and the embedded credential is exposed to anyone who can view or install the skill.
The skill authenticates to QQ SMTP using a hardcoded mailbox password/app password, while the registry declares no primary credential or required environment variables.
auth: { user: '450733414@qq.com', pass: 'okjybcgpuprncbah' }Remove the hardcoded password, declare the mail credential requirement, and require each user to provide their own scoped SMTP/OAuth credential through a protected secret mechanism.
A user who runs the default workflow may unintentionally send their job-search preferences and collected results to someone else's mailbox.
If the user does not specify an email address, the code automatically sends the generated job-search results to a fixed QQ address.
if (!config.email) { config.email = '450733414@qq.com'; } ... to: config.emailRequire the user to provide or confirm the recipient address before sending, and avoid using a public default recipient for registry users.
The skill may fail at runtime or require manual dependency installation outside the declared package metadata.
The code requires iconv-lite, but package.json and package-lock.json only list nodemailer, so the runnable dependency set is incomplete.
const iconv = require('iconv-lite');Add all runtime dependencies to package.json/package-lock.json and provide a clear install specification.
