ac-workspace-manager
Pass
Audited by Gen Agent Trust Hub on Feb 17, 2026
Risk Level: SAFE
Full Analysis
- [COMMAND_EXECUTION] (SAFE): The skill executes git commands using
subprocess.run. It correctly implements best practices by passing arguments as a list rather than a single string and avoids theshell=Trueparameter, which prevents shell injection vulnerabilities. - [DATA_EXPOSURE] (SAFE): The skill maintains a local state file at
.claude/worktree-log.json. Analysis shows no attempts to access sensitive system files (e.g., SSH keys, credentials) or exfiltrate data to external servers. - [INDIRECT_PROMPT_INJECTION] (LOW): The skill accepts user-provided names for worktrees which are used in file paths and git branch names.
- Ingestion points: The
nameparameter increate_worktree. - Boundary markers: None present.
- Capability inventory:
subprocess.runfor git operations andPath.mkdirfor directory creation. - Sanitization: The use of Python's
pathlibfor path construction and list-based subprocess arguments provides inherent protection against basic shell injection and directory traversal, though explicit validation of thenamestring is not present.
Audit Metadata