AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pull Push

skill-acquia-acquia-skills-pull-push · by acquia

Use when syncing code, database, or files between local and Acquia Cloud environments, or pulling a Cloud database/files locally.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-acquia-acquia-skills-pull-push

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-acquia-acquia-skills-pull-push)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Pull Push? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Pull & Push with Acquia CLI

Use when:

  • Syncing your local environment with a Cloud Platform environment
  • Pulling code, database, or files from Cloud to local
  • Pushing code, database, files, or build artifacts to Cloud

Pull: Copy from Cloud to Local

Pull everything (code + database + files)

acli pull:all

Aliases: acli refresh, acli pull

Prompts you to select an environment, then copies code, database, and files to your local environment.

Options:

acli pull:all \
  --dir=/path/to/project \
  --no-code \        # skip code
  --no-databases \   # skip database
  --no-files \       # skip files
  --no-scripts       # skip post-pull scripts

Pull code only

acli pull:code

Pulls the latest code from the selected Cloud environment into your local directory.

acli pull:code --dir=/path/to/project

Pull database only

acli pull:database

Alias: acli pull:db

Imports a database backup from a Cloud environment into your local database.

Options:

acli pull:database \
  --on-demand \      # force a fresh on-demand backup (not cached)
  --no-import \      # download the backup file but don't import it
  --multiple-dbs     # download multiple databases (multisite)

Pull files only

acli pull:files

Copies Drupal public files (sites/default/files) from the Cloud environment to your local.


Run post-pull scripts manually

If you skipped scripts during a pull, run them separately:

acli pull:run-scripts
acli pull:run-scripts --dir=/path/to/project

Push: Copy from Local to Cloud

Push database

acli push:database

Alias: acli push:db

Uploads your local database to a Cloud Platform environment. Requires both a local and remote database to be configured.


Push files

acli push:files

Copies your local Drupal public files to the selected Cloud environment.


Push code (IDE only)

acli push:code

Push code from your Cloud IDE to a Cloud Platform environment. This command is only available inside a Cloud IDE or Lando environment.


Build and push a code artifact

Build your project and push the compiled artifact to a Cloud environment or custom git remote:

acli push:artifact

Common options:

# Push to a specific branch on Cloud
acli push:artifact --destination-git-branch=deploy/main

# Push to a specific tag
acli push:artifact --destination-git-tag=release-1.2.3

# Push to an external git URL (e.g. GitHub)
acli push:artifact --destination-git-urls=git@github.com:myorg/myrepo.git

# Dry run — build but don't push
acli push:artifact --no-push

# Build in a specific directory
acli push:artifact --dir=/path/to/project

# Skip sanitization step
acli push:artifact --no-sanitize

Typical Workflows

Refresh local dev environment

acli pull:all

Pull only the database (fastest for testing)

acli pull:database --on-demand

Deploy a build artifact to Cloud

acli push:artifact --destination-git-branch=tags/deploy-branch

Sync files to production (use with care)

acli push:files

Best Practices

  1. Always pull before you push — Avoid overwriting recent Cloud changes.
  2. Use --on-demand for fresh data — The default pull uses a cached backup; --on-demand forces a new one.
  3. Test artifact builds with --no-push — Verify the artifact is correct before pushing.
  4. Use --no-scripts in CI — Post-pull scripts are designed for local dev, not CI pipelines.
  5. Backup before pushing a database — A push:database overwrites the remote database.

Troubleshooting

"Local database not found"

pull:all and pull:database require a running local database. Make sure your local Drupal stack (Lando, DDEV, etc.) is running.

"Access denied" on push

Verify your SSH key is set up and your account has write access to the environment:

acli ssh-key:list
acli auth:me

Artifact push fails

Check that composer install and any build steps complete without errors before pushing:

acli push:artifact --no-push  # dry run to inspect

Related Topics

  • [Application Management](../application-management/SKILL.md) — Find environment IDs
  • [SSH Key Management](../ssh-key-management/SKILL.md) — Authentication
  • [Remote Access](../remote-access/SKILL.md) — SSH and Drush on Cloud environments

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.