application-management-bc616a — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited application-management-bc616a (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use when:
acli api:applications:listReturns a JSON array of all applications you have access to. Each entry includes id, uuid, name, type, status, and organization.
To display a readable table:
acli api:applications:list | python3 -c "
import json, sys
apps = json.load(sys.stdin)
for a in apps:
print(f\"{a['id']:<10} {a['name']:<40} {a.get('type',''):<10} {a.get('status',''):<10}\")
"acli app:openAliases: acli open, acli o
Opens the selected Cloud application in your default browser.
Associate your local checkout with a Cloud application so commands like env:deploy can detect the app automatically:
cd /path/to/project
acli app:linkTo remove the association:
acli app:unlinkStream live logs from a Cloud environment:
acli app:log:tailPrompts for the application and environment, then tails all available log streams in real time. Useful for monitoring deployments or debugging live issues.
acli app:vcs:infoLists all branches and tags in the application's git repository along with which environment (if any) each is currently deployed to.
Some Cloud operations (database copies, environment mirrors) return a notification UUID. Wait for them to complete:
acli app:task-wait <notification-uuid>Useful in CI/CD pipelines to block until a task finishes before proceeding.
Scaffold a new Drupal or Next.js project from an Acquia-recommended template:
# Interactive — prompts for template and directory
acli app:new:local
# Non-interactive
acli app:new:local my-project --template=acquia_drupal_recommended
acli app:new:local my-project --template=acquia_drupal_cmsAlias: acli new
Available templates:
acquia_drupal_recommended — Standard Acquia Drupal projectacquia_drupal_cms — Acquia Drupal CMS projectGenerate a new Drupal 9+ project from an existing Drupal 7 application using Acquia Migrate Accelerate:
acli app:new:from:drupal7Options: --drupal7-directory, --drupal7-uri, --stored-analysis, --recommendations, --directory
Aliases: acli ama, acli from:d7
Export an application's code, files, and database as a single archive file:
acli archive:export /path/to/destination/Options:
# Exclude public files
acli archive:export /path/to/destination/ --no-files
# Exclude database
acli archive:export /path/to/destination/ --no-database
# Use a specific source directory
acli archive:export /path/to/destination/ --dir=/path/to/drupalacli app:link in every project checkout so app-aware commands work without extra flags.acli app:vcs:info to confirm the right branch is ready.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.