taxonomy-steward
Pass
Audited by Gen Agent Trust Hub on Sep 4, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill ingests untrusted data from markdown frontmatter to perform taxonomy analysis, which could allow a malicious file to influence the agent's report or migration proposals.
- Ingestion points: The script
scripts/schema_health.pyrecursively reads.mdfiles in the user-provided directory to extract frontmatter data. - Boundary markers: Frontmatter is delimited by standard
---markers, which the agent identifies during analysis. - Capability inventory: The skill uses
scripts/schema_health.pyfor reading and thefrontmattersCLI tool for modifying files (e.g.,frontmatters set,frontmatters apply-base). - Sanitization: Data parsing is performed using
yaml.safe_load(), which prevents most common deserialization attacks. - [COMMAND_EXECUTION]: The skill requires the agent to execute a local Python script and an external CLI utility to perform its core functions.
- Evidence: Instructions guide the agent to run
scripts/schema_health.py <dir>and use thefrontmatterstool for migrations. Safety is mitigated by an explicit 'Never auto-apply' policy requiring human review of all proposed changes.
Audit Metadata