一键导入
remote-access
Use when SSHing into a Cloud environment, running Drush commands remotely, or tailing live application logs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when SSHing into a Cloud environment, running Drush commands remotely, or tailing live application logs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when user asks about updating outdated Drupal packages, upgrading Drupal core minor or patch versions, updating contrib modules, or resolving composer version conflicts.
Use when user asks about fixing security vulnerabilities, composer audit failures, vulnerable Drupal packages, or CVE advisories in a Drupal codebase.
Use when user wants to update Drupal dependencies and deploy the changes to an Acquia environment, optionally triggering a pipeline build. Chains drupal-maintenance, acli, and pipelines-cli skills.
Use when listing Acquia Cloud applications, linking or unlinking a local repo to an application, opening an app in browser, checking VCS/branch deployment status, or exporting a site archive.
Use when setting up a new Code Studio (GitLab CI/CD) project, changing PHP version in Code Studio builds. NOT for checking pipeline job status — use pipelines-cli-pipeline-operations for that.
Use when listing, creating, deleting, or mirroring Cloud environments, managing CDEs, deploying code to an environment, or checking environment status.
| name | remote-access |
| description | Use when SSHing into a Cloud environment, running Drush commands remotely, or tailing live application logs. |
| license | Proprietary |
| compatibility | acli>=2.x |
| metadata | {"category":"authentication","author":"Acquia","version":"1.0.0","tags":"acli, acquia-cloud, ssh, drush, logs, remote","software_requirements":"acli>=2.x"} |
Use when:
Open an interactive shell in a Cloud Platform environment:
acli remote:ssh <alias>
Alias: acli ssh
The alias format is app-name.env (e.g. myapp.prod, myapp.dev).
# Open interactive shell
acli remote:ssh myapp.prod
# Run a single command without opening a shell
acli remote:ssh myapp.prod -- ls -la /var/www/html
# Run multiple commands
acli remote:ssh myapp.prod -- "cd /var/www/html && git log --oneline -5"
Run any Drush command on a Cloud environment without SSHing in manually:
acli remote:drush <drush_command>
Aliases: acli drush, acli dr
# Check Drupal status
acli remote:drush status
# Clear caches
acli remote:drush cr
# Run database updates
acli remote:drush updatedb
# Export configuration
acli remote:drush cex
Stream live logs from an environment:
acli app:log:tail
Aliases: acli tail, acli log:tail
Prompts you to select the application, environment, and log type.
List all Drush site aliases for your Cloud environments:
acli remote:aliases:list
Aliases: acli aliases, acli sa
Download Drush aliases for use with local Drush:
acli remote:aliases:download
Options:
acli remote:aliases:download \
--destination-dir=/path/to/aliases \
--all # download aliases for all applications
remote:drush over SSH for Drush commands — It handles authentication and environment selection automatically.remote:aliases:download so local Drush can target Cloud environments directly.acli app:log:tail while deploying to catch errors in real time.