meo-site-instances

meo-site-instances is a skill for Claude Code, Codex from acquia/acquia-skills. It costs 40 tokens per session (1,556 once invoked), scanned A, original, MIT.

A command-line guide for managing individual MEO site instances, which are specific Drupal sites running in a particular environment.

In plain words
What is it for?
Use it to manage domains, database details, backups, protection mode, deletion schedules, recovery, and full site resets.
Why use it?
It helps you inspect site status and handle operational tasks without searching through the platform manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to manage domains, database details, backups, protection mode, deletion schedules, recovery, and full site resets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/acquia/acquia-skills/meo-site-instances
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add acquia/acquia-skills --skill meo-site-instances
Clone the repo
git clone --depth 1 https://github.com/acquia/acquia-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for meo-site-instances

README.md
[![agentmods](https://agentmods.dev/badge/skills/acquia/acquia-skills/meo-site-instances/github.svg)](https://agentmods.dev/skills/acquia/acquia-skills/meo-site-instances)
Your own site
<a href="https://agentmods.dev/skills/acquia/acquia-skills/meo-site-instances"><img src="https://agentmods.dev/badge/skills/acquia/acquia-skills/meo-site-instances/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for meo-site-instances

Your own site · 80×15
<a href="https://agentmods.dev/skills/acquia/acquia-skills/meo-site-instances"><img src="https://agentmods.dev/badge/skills/acquia/acquia-skills/meo-site-instances.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,556 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 123
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.01556
Opus 5 $0.00020 $0.00778
Sonnet 5 $0.00008 $0.00311
Haiku 4.5 $0.00004 $0.00156

Measured 8d ago against content hash aefe8b1b09ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

meo-site-instances scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/acli/meo-site-instances/SKILL.md · 211 lines

How it starts

The opening of the file, as written. The whole thing — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MEO Site Instance Management

Platform: This skill applies to MEO (Multi-site Enterprise Operations) subscriptions only.

A site instance is a specific Site running inside a specific Environment. Each site instance has its own domain(s), database, and protection mode state.

Use when:

  • Inspecting a site's status within a specific environment
  • Managing domains for a site instance
  • Accessing database details or managing backups
  • Enabling, disabling, or inheriting protection mode
  • Scheduling a site instance for deletion or recovering it
  • Wiping a site instance (database + files reset)

Addressing site instances: Commands require both <siteId> and <environmentId> as separate arguments.

Note: All commands use acli api:v3:*. Run acli list api:v3:site-instances to see all current commands.


Get Site Instance Details

acli api:v3:site-instances:find <siteId> <environmentId>

Returns status, domains, protection mode, database connection, and deployment info.


List Site Instances in an Environment

acli api:v3:environments:list-site-instances <environmentId>

Protection Mode

Protection mode prevents destructive operations (wipe, deletion) on the site instance.

# Enable protection on this site instance
acli api:v3:site-instances:enable-protection-mode <siteId> <environmentId>

# Disable protection
acli api:v3:site-instances:disable-protection-mode <siteId> <environmentId>

# Inherit protection mode from the parent environment
acli api:v3:site-instances:inherit-protection-mode <siteId> <environmentId>

Domains

# List domains assigned to this site instance
acli api:v3:site-instances:list-domains <siteId> <environmentId>

# Get details for a specific domain
acli api:v3:site-instances:find-domain <siteId> <environmentId> <domainName>

# Check domain provisioning status
acli api:v3:site-instances:find-domain-status <siteId> <environmentId> <domainName>

Read the full file on GitHub · 211 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 211 lines · 40 tokens per session scan A aefe8b1b09ff

Subscribe to this mod's changes

meo-site-instances is a skill published in the GitHub repository acquia/acquia-skills (9 stars, last pushed 4d ago), licensed MIT. It adds 40 tokens to every session and 1,556 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

google-cloud-storage-fuse

Mounts Cloud Storage buckets as a POSIX file system with Cloud Storage FUSE (gcsfuse). Use when interacting with gcsfuse: decide whether FUSE, native gs:// reads, or Filestore/Managed Lustre fits a workload, deploy tuned mounts on GKE, Compute Engine, or Cloud Run, enable and size file, stat, and list caches, tune…

google/skills · 214 tokens

cloud-databases-onboarding

Guides users through discovering their database requirements, recommends a Google Cloud database based on a recommendation matrix, and assists in database creation. Use when a user asks 'What database service should I use?', 'Help me pick a database', or when a user wants to create a new database on Google Cloud.…

google/skills · 83 tokens

cloud-sql-basics

This file generates or explains Cloud SQL resources. Use this file when the user asks to create a Cloud SQL instance or database for MySQL, PostgreSQL, or SQL Server. Cloud SQL manages third-party MySQL, PostgreSQL, and SQL Server instances as resources in Cloud SQL. For example, when Cloud SQL creates an open-source…

google/skills · 108 tokens

aws-cloudformation-rds

Provides AWS CloudFormation patterns for Amazon RDS databases. Use when creating RDS instances (MySQL, PostgreSQL, Aurora), DB clusters, multi-AZ deployments, parameter groups, subnet groups, and implementing template structure with Parameters, Outputs, Mappings, Conditions, and cross-stack references.

giuseppe-trisciuoglio/developer-kit · 65 tokens

aws-sdk-java-v2-rds

Provides AWS RDS (Relational Database Service) management patterns using AWS SDK for Java 2.x. Use when creating, modifying, monitoring, or managing Amazon RDS database instances, snapshots, parameter groups, and configurations.

giuseppe-trisciuoglio/developer-kit · 53 tokens

aws-cloudformation-dynamodb

Provides AWS CloudFormation patterns for DynamoDB tables, GSIs, LSIs, auto-scaling, and streams. Use when creating DynamoDB tables with CloudFormation, configuring primary keys, local/global secondary indexes, capacity modes (on-demand/provisioned), point-in-time recovery, encryption, TTL, and implementing template…

giuseppe-trisciuoglio/developer-kit · 84 tokens