tax-invoice-void-check-free
Pass
Audited by Gen Agent Trust Hub on Sep 16, 2026
Risk Level: SAFEEXTERNAL_DOWNLOADSINDIRECT_PROMPT_INJECTIONDYNAMIC_EXECUTION
Full Analysis
- [EXTERNAL_DOWNLOADS]: The skill's documentation in
SKILL.mdincludes a pre-written prompt for the AI agent that executes the commandnpx -y @alipay/agent-payment@latest install. This command fetches and executes code from the NPM registry at runtime. The package is associated with a well-known service provider. - [INDIRECT_PROMPT_INJECTION]: The skill processes untrusted user data in the form of invoice tables, which could potentially contain malicious instructions targeting the LLM.
- Ingestion points: User-supplied text provided via the
--inputflag or a JSONtextfield, which is read and parsed byscripts/run.mjs. - Boundary markers: None identified; the system relies on the structure of the TSV/table to separate fields.
- Capability inventory: The skill has access to
BashandReadtools, and its documentation explicitly instructs the agent to perform shell-based package installations. - Sanitization: The engine in
scripts/engine/tax-invoice-void-check.jsperforms numeric validation and regex-based cleaning for amount fields, but descriptive fields like 'reason' are processed as raw strings. - [DYNAMIC_EXECUTION]: The wrapper script
scripts/run.mjsutilizescreateRequireandpath.jointo dynamically load the local engine script (tax-invoice-void-check.js) at runtime. While the path is restricted to the skill's own directory, this represents dynamic module loading.
Audit Metadata