Skills adobe-automator
Universal Adobe application automation via ExtendScript bridge. Supports Photoshop, Illustrator, InDesign, Premiere Pro, and After Effects.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/abdul-karim-mia/adobe-automator" ~/.claude/skills/clawdbot-skills-adobe-automator && rm -rf "$T"
manifest:
skills/abdul-karim-mia/adobe-automator/SKILL.mdsource content
Adobe Master Automator (v1.1.2)
A generalized skill for automating multiple Adobe applications using a cross-platform ExtendScript bridge.
Supported Applications
- Photoshop
- Illustrator
- InDesign
- Premiere Pro
- After Effects
Commands
runScript
Executes raw ExtendScript (ES3) in the target application.
Parameters:
: Target application (app
,photoshop
,illustrator
,indesign
,premiere
).aftereffects
: The JSX code to execute.script
🛠 AI Protocol
1. Technical Constraints
- ES3 Syntax Only: Adobe apps use the ExtendScript (ES3) engine. Avoid modern JS features.
- Target App Availability: Ensure the target application is installed and running (or able to launch) on the host system.
2. Security & Side Effects
[!CAUTION] High Risk Capability: The
command accepts and executes arbitrary ExtendScript (JSX) code. Attempting to restrict this would break the skill's core purpose, but users must be aware of the implications.runScript
- Filesystem Access: The Adobe ExtendScript engine has unrestricted access to the host filesystem via the
andFile
objects.Folder - Untrusted Scripts: ❌ NEVER execute scripts from untrusted sources. A malicious script could delete files, exfiltrate data, or install persistent malware.
- Verification: Always inspect the
parameter payload before allowing execution.script
Setup
The skill automatically detects your operating system and routes commands to the appropriate application.
- Windows: Uses built-in
(Windows Script Host).cscript - macOS: Uses built-in
(AppleScript).osascript
Developed for the OpenClaw community by Abdul Karim Mia.