Nerve Bridge Skill
Analysis
This skill is openly designed to drive another IDE with AppleScript and send it arbitrary code/command instructions, which is powerful enough that users should review it carefully before installing.
Findings (5)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Use when needing to execute code/commands in Trae IDE and wait for completion confirmation.
The skill is explicitly intended to send code/command execution instructions into another IDE, which is a high-impact escape-hatch capability without clear scoping or approval boundaries in the artifacts.
full_payload = (instruction + "\n\n" "# --- SYSTEM HOOK ---\n" "# REQUIRED: Execute this to report completion:\n" + hook_code + "\n")
The script automatically appends Python code and marks it as required for Trae to execute, so every submitted instruction includes an additional code-execution step.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
System Events and Terminal must have "Accessibility" permissions
macOS Accessibility permissions allow broad UI automation. This is disclosed and needed for the skill’s stated purpose, but users should understand the breadth of that local permission.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
if os.path.exists(FEEDBACK_FILE): ... data = json.load(f) ... print(f"✅ [Ack] Feedback received from Trae: {data}")The completion acknowledgment is based only on a local JSON file path, with no authentication of which process wrote it.
Payload is copied to system clipboard via `pbcopy`
The instruction sent to Trae is placed on the system clipboard, which is disclosed and purpose-aligned but can expose sensitive prompt contents to other local clipboard-aware apps.
