THEALGORITHM
Fail
Audited by Gen Agent Trust Hub on Feb 16, 2026
Risk Level: HIGHCOMMAND_EXECUTIONPROMPT_INJECTIONREMOTE_CODE_EXECUTION
Full Analysis
- Indirect Prompt Injection (HIGH): The skill lacks sanitization for user-provided data.
- Ingestion points: User requests enter the system in
Phases/Observe.mdviaISCManager.ts --request. - Boundary markers: No delimiters or safety instructions wrap the ISC row descriptions when they are passed to subagents.
- Capability inventory: The framework can spawn subagents with
Engineer,Architect, andPentesterroles, and has access toBrowserautomation and local command execution viabun run. - Sanitization: None found.
Phases/Execute.mdexplicitly shows row descriptions being used directly in subagent prompts: `Task({ prompt: "[Row description] - implement this requirement" })`. An attacker could inject malicious subagent instructions into the initial request.
- Persistence Mechanisms (HIGH): The
RalphLoopExecutor.tsandPhases/Execute.mddocument a persistent execution pattern. - Evidence: The 'Ralph Loop' writes state to
~/.claude/ralph-loop.local.mdand mentions a 'stop hook' that intercepts agent exit to feed the prompt back to the AI. This allows the agent to maintain activity across sessions or until a specific 'promise' tag is seen in the output. - Command Execution (MEDIUM): The skill frequently executes local TypeScript files using the
bunruntime. - Evidence: Files like
Phases/Execute.mdandReference/ISCFormat.mdlist numerous commands (e.g.,bun run ISCManager.ts,bun run EffortClassifier.ts). If the arguments to these tools (derived from ISC rows) are not handled safely by the underlying TypeScript code, it enables local command injection. - Remote Code Execution (MEDIUM): The framework delegates tasks to multiple remote researcher subagents.
- Evidence:
Data/Capabilities.yamldefines subagents likePerplexityResearcherandGeminiResearcher. Maliciously crafted ISC rows could be used to trigger these agents to perform unauthorized web research or data retrieval.
Recommendations
- AI detected serious security threats
Audit Metadata