spine-envoy
Pass
Audited by Gen Agent Trust Hub on Sep 23, 2026
Risk Level: SAFECOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTIONCREDENTIALS_UNSAFE
Full Analysis
- [COMMAND_EXECUTION]: The skill orchestrates calls to various external AI provider CLIs (such as
claude,codex,grok, andopencode) usingtimeoutandenv. It performs strict validation on arguments like model names and effort levels using theis_safe_identifierfunction, which enforces an alphanumeric allowlist to prevent command injection. - [INDIRECT_PROMPT_INJECTION]: As the skill's primary purpose is to relay data from external AI providers, it is exposed to indirect prompt injection. It mitigates this risk by wrapping all provider output in a clearly labeled envelope (
# External Provider Output) and explicitly instructing the agent to evaluate the content as data, not instructions. Additionally,scripts/sanitize.shstrips potentially malicious zero-width Unicode characters and terminal escape sequences from the provider responses. - [CREDENTIALS_UNSAFE]: The skill includes proactive security checks to prevent the accidental exposure of secrets.
scripts/_common.shcontains apreflight_checkthat scans prompt files for API keys and tokens, and a_cleanupfunction that uses regex to redact authentication tokens (e.g.,sk-,ghp_,xoxb-) from log files before they are finalized.
Audit Metadata