thoughtful-commitment
Fail
Audited by Gen Agent Trust Hub on Feb 16, 2026
Risk Level: HIGHCOMMAND_EXECUTIONDATA_EXFILTRATIONPROMPT_INJECTION
Full Analysis
- [Data Exposure & Exfiltration] (HIGH): The skill explicitly targets and reads sensitive files located in
~/.cursor/projects/*/agent-transcripts/*.txtand~/Library/Application Support/Cursor/User/workspaceStorage/*/state.vscdb. These files contain private conversation history, code snippets, and workspace metadata. While this is the skill's stated purpose, it creates a high risk of accidental or malicious exposure if these details are included in public git commits. - [Indirect Prompt Injection] (HIGH): The skill is highly vulnerable to indirect injection.
- Ingestion points: Processes untrusted data from
cursor-mirrortranscripts,git loghistory, and GitHub PR descriptions viagh pr view. - Boundary markers: No explicit delimiters or sanitization logic is provided in the documentation to isolate untrusted data from the agent's instructions.
- Capability inventory: Includes
run_terminal_cmd,write_file, and variousgitoperations (commit, log, blame). - Sanitization: None detected. Malicious instructions embedded in a project's transcript or a PR could influence the agent to perform unauthorized actions during the
COMMITorARCHAEOLOGYprocesses. - [Command Execution] (HIGH): The skill makes extensive use of
run_terminal_cmdto execute complex shell pipelines (grep,awk,sed,sort) and Git commands. The examples show direct interpolation of parameters like<pattern>and<composer>into shell strings, which is susceptible to command injection if the agent does not strictly validate these inputs. - [Dynamic Execution] (MEDIUM): The
examples/shell-patterns.ymlfile contains severalpython3 -cpatterns for data processing. These one-liners ingest data fromstdin(which can be attacker-controlled transcripts) and process it using Python logic. While restricted to one-liners, this increases the attack surface for code injection if the input stream is not properly sanitized.
Recommendations
- AI detected serious security threats
Audit Metadata