<< All versions
Skill v1.0.1
currentAutomated scan100/100dvcrn/openclaw-skills-marketplace/adobe
2 files
──Details
PublishedMay 28, 2026 at 03:51 PM
Content Hashsha256:54ca4f9e58386946...
Git SHA67b1c2373b5a
Bump Typepatch
──Files
Files (1 file, 1.9 KB)
SKILL.md1.9 KBactive
SKILL.md · 81 lines · 1.9 KB
version: "1.0.1" name: adobe description: "Access Adobe Creative Cloud APIs - Photoshop, Lightroom, PDF Services, and Firefly AI. Automate creative workflows."
Adobe Creative Cloud
Creative and document APIs.
Environment
bash
export ADOBE_CLIENT_ID="xxxxxxxxxx"export ADOBE_ACCESS_TOKEN="xxxxxxxxxx"
Photoshop API - Remove Background
bash
curl -X POST "https://image.adobe.io/sensei/cutout" \-H "Authorization: Bearer $ADOBE_ACCESS_TOKEN" \-H "x-api-key: $ADOBE_CLIENT_ID" \-H "Content-Type: application/json" \-d '{"input": {"href": "https://example.com/image.jpg", "storage": "external"},"output": {"href": "https://your-bucket.s3.amazonaws.com/output.png", "storage": "external"}}'
PDF Services - Create PDF
bash
curl -X POST "https://pdf-services.adobe.io/operation/createpdf" \-H "Authorization: Bearer $ADOBE_ACCESS_TOKEN" \-H "x-api-key: $ADOBE_CLIENT_ID" \-H "Content-Type: application/json" \-d '{"assetID": "{asset_id}"}'
PDF Services - Export PDF to Word
bash
curl -X POST "https://pdf-services.adobe.io/operation/exportpdf" \-H "Authorization: Bearer $ADOBE_ACCESS_TOKEN" \-H "x-api-key: $ADOBE_CLIENT_ID" \-H "Content-Type: application/json" \-d '{"assetID": "{asset_id}","targetFormat": "docx"}'
Firefly - Generate Image (AI)
bash
curl -X POST "https://firefly-api.adobe.io/v2/images/generate" \-H "Authorization: Bearer $ADOBE_ACCESS_TOKEN" \-H "x-api-key: $ADOBE_CLIENT_ID" \-H "Content-Type: application/json" \-d '{"prompt": "A futuristic cityscape at sunset","n": 1,"size": {"width": 1024, "height": 1024}}'
Lightroom - Get Catalog
bash
curl "https://lr.adobe.io/v2/catalogs" \-H "Authorization: Bearer $ADOBE_ACCESS_TOKEN" \-H "x-api-key: $ADOBE_CLIENT_ID"
Links
- Console: https://developer.adobe.com/console
- Docs: https://developer.adobe.com/apis