zeabur-variables

Use when managing Zeabur environment variables via CLI. Use when variables are empty or SERVICE_NOT_FOUND errors. Use when user says "set env var", "add variable", or "why is my variable empty".

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "zeabur-variables" with this command: npx skills add zeabur/zeabur-claude-plugin/zeabur-zeabur-claude-plugin-zeabur-variables

Zeabur Variables Management

Always use npx zeabur@latest to invoke Zeabur CLI. Never use zeabur directly or any other installation method. If npx is not available, install Node.js first.

Known Issues

  1. Use --id not --name - name lookup unreliable
  2. ${VAR} gets empty - shell expands before CLI receives
  3. variable update may clear all vars - bug in CLI

Create Variables

# Always use service ID (name lookup is unreliable)
npx zeabur@latest variable create --id <service-id> \
  --key "KEY1=value1" \
  --key "KEY2=value2" \
  -y -i=false

Variable References

# WRONG - shell expands ${VAR} to empty
--key "REDIS_URL=${REDIS_URI_INTERNAL}"

# Use single quotes to prevent shell expansion
--key 'REDIS_URL=${REDIS_URI_INTERNAL}'

# Or set references in Zeabur Dashboard instead

List Variables

npx zeabur@latest variable list --id <service-id> -i=false

For ${VAR} references → use single quotes or set via Zeabur Dashboard.

Delete Variables

npx zeabur@latest variable delete --id <service-id> --delete-keys "KEY_NAME" -y -i=false

See Also

  • zeabur-service-list — get service IDs needed for variable commands
  • zeabur-update-service — update variables and restart in one workflow

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

zeabur-restart

No summary provided by upstream source.

Repository SourceNeeds Review
General

zeabur-domain-url

No summary provided by upstream source.

Repository SourceNeeds Review
General

zeabur-template

No summary provided by upstream source.

Repository SourceNeeds Review
General

zeabur-deployment-logs

No summary provided by upstream source.

Repository SourceNeeds Review