Nerve Bridge Skill

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill openly acts as a macOS automation bridge to Trae, but it can paste and submit unbounded code or command instructions to an IDE without clear approval or scope limits.

Review this skill carefully before installing. It is not showing exfiltration or hidden destructive behavior, but it is a powerful automation bridge: only use it if you are comfortable letting the agent submit instructions to Trae, run extra feedback code, and operate with macOS Accessibility permissions.

Findings (4)

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.

What this means

If the agent invokes this skill, it may cause Trae to change files, run code, or execute commands in the active IDE context without a separate confirmation step.

Why it was flagged

The skill is designed to paste arbitrary instructions into Trae and press Enter, enabling code or command execution in another IDE through UI automation.

Skill content
Use when needing to execute code/commands in Trae IDE... AppleScript activates Trae and simulates: Space (wake) → Delete → Cmd+V → Enter
Recommendation

Install only if you intentionally want OpenClaw to control Trae. Consider requiring manual confirmation before each use, limiting it to disposable workspaces, and reviewing the exact instruction before submission.

What this means

Trae may run an additional Python snippet beyond the user's main request; this is disclosed and limited to writing a feedback JSON file, but it still adds execution behavior.

Why it was flagged

Every invocation appends Python completion code to the instruction sent to Trae, asking Trae to execute extra code that writes a local feedback file.

Skill content
"# --- SYSTEM HOOK ---\n" "# REQUIRED: Execute this to report completion:\n" + hook_code
Recommendation

Treat the completion hook as code execution. Keep the feedback path scoped, and verify that Trae is operating in an environment where this local file write is acceptable.

What this means

Granting these permissions can let the running terminal automate application UI actions, not just interact with Trae.

Why it was flagged

macOS Accessibility permission allows UI automation through System Events/Terminal, which is broad local authority even though it is needed for the stated purpose.

Skill content
Permissions: System Events and Terminal must have "Accessibility" permissions
Recommendation

Grant Accessibility permissions only if you trust this workflow, and revoke them from Terminal/System Events when you no longer need this bridge.

What this means

Sensitive text included in instructions may temporarily reside on the system clipboard, and the feedback file could be spoofed by another local process.

Why it was flagged

Communication between OpenClaw and Trae uses shared local mechanisms: the system clipboard for instructions and a local JSON file for completion feedback.

Skill content
Payload is copied to system clipboard via `pbcopy`... Script waits up to 5 minutes... for `~/.openclaw/workspace/trae_feedback.json`
Recommendation

Avoid sending secrets through this bridge, clear the clipboard after sensitive use, and treat the feedback file as a convenience signal rather than a trusted security boundary.