Collection of agent skills for SLICC and Tessl-compatible runtimes — productivity, creative, document, and integration skills.
74
92%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
Shell command for AEM Edge Delivery Services. Manages EDS page content.
Run oauth-token adobe to authenticate (auto-triggered on first use).
No manual configuration needed — no client IDs, no service tokens.
aem <command> <eds-url-or-path> [options]All commands accept full EDS URLs: https://main--repo--org.aem.page/path
Or use --org/--repo flags with a plain path.
aem list <url> — List pages in a directoryaem get <url> [--output <vfs-path>] — Get page HTMLaem put <url> <vfs-file> — Write HTML from a VFS fileaem preview <url> — Trigger AEM previewaem publish <url> — Trigger AEM publishaem upload <vfs-file> <url> — Upload a media fileaem help — Show usageFor editing a page, follow this sequence:
aem get https://main--myrepo--myorg.aem.page/page --output /workspace/page.html/workspace/page.html as needed.aem put https://main--myrepo--myorg.aem.page/page /workspace/page.htmlaem preview https://main--myrepo--myorg.aem.page/pageaem get) or inspect the preview URL to confirm the changes appear correctly.aem publish https://main--myrepo--myorg.aem.page/pageError guidance:
aem put fails, check that the VFS file path is correct and the file is valid HTML before retrying.aem preview or aem publish fails, re-run the command — transient network issues are common. If it continues to fail, verify authentication with oauth-token adobe.aem put succeeds before running aem preview to avoid publishing stale content.aem list https://main--myrepo--myorg.aem.page/
aem get https://main--myrepo--myorg.aem.page/products/overview
aem get https://main--myrepo--myorg.aem.page/page --output /workspace/page.html
aem put https://main--myrepo--myorg.aem.page/page /workspace/page.html
aem preview https://main--myrepo--myorg.aem.page/page
aem publish https://main--myrepo--myorg.aem.page/page
aem upload /workspace/image.png https://main--myrepo--myorg.aem.page/media_123.png