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.
npx skills add acquia/acquia-skills --skill meo-codebasesgit clone --depth 1 https://github.com/acquia/acquia-skillsWrote 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.
[](https://agentmods.dev/skills/acquia/acquia-skills/meo-codebases)<a href="https://agentmods.dev/skills/acquia/acquia-skills/meo-codebases"><img src="https://agentmods.dev/badge/skills/acquia/acquia-skills/meo-codebases.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00037 | $0.01226 |
| Opus 5 | $0.00018 | $0.00613 |
| Sonnet 5 | $0.00007 | $0.00245 |
| Haiku 4.5 | $0.00004 | $0.00123 |
Grade A, and why
meo-codebases 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 189 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MEO Codebase Management
Platform: This skill applies to MEO (Multi-site Enterprise Operations) subscriptions only.
Use when:
- Listing or inspecting codebases for a subscription
- Browsing git branches and tags (references) available in a codebase
- Creating a new codebase for a subscription
- Managing domain routing patterns on a codebase
Note: All commands use acli api:v3:*. Run acli list api:v3:codebases to see all current codebase commands.
List Codebases
# Codebases for a subscription
acli api:v3:subscriptions:list-codebases <subscriptionId>
# All codebases you have access to
acli api:v3:codebases:list
Get Codebase Details
acli api:v3:codebases:find <codebaseId>
Returns id, label, region, vcs_url, status, and linked subscription.
Create a Codebase
acli api:v3:subscriptions:create-codebase <subscriptionId> <codebase_id> <label> <region>
| Argument | Required | Description |
|---|---|---|
subscriptionId |
Yes | UUID of the subscription |
codebase_id |
Yes | Client-supplied UUID for the new codebase |
label |
Yes | Human-readable name |
region |
Yes | AWS region (e.g. us-east-1) |
Update a Codebase
acli api:v3:codebases:update <codebaseId> --label="New Label" --description="..."
Delete a Codebase
Destructive operation — explicit approval required. Permanently deletes the codebase. All sites referencing this codebase must be deleted first. This cannot be undone. Confirm with the user before executing.
acli api:v3:codebases:delete <codebaseId>
List Environments for a Codebase
acli api:v3:codebases:list-environments <codebaseId>
Returns all environments that have site instances built from this codebase.
List Sites for a Codebase
acli api:v3:codebases:list-sites <codebaseId>
Browse Git References (Branches & Tags)
# List all branches and tags
acli api:v3:codebases:list-references <codebaseId>
# Get details for a specific reference
acli api:v3:codebases:find-reference <codebaseId> <referenceName>
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.
- 4d ago First seen · 189 lines · 37 tokens per session scan A 2c760db92d14
meo-codebases is a skill published in the GitHub repository acquia/acquia-skills (9 stars, last pushed 5d ago), licensed MIT. It adds 37 tokens to every session and 1,226 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.
Other skills, from other repositories
finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work.
chinese-git-workflow
A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.
chinese-commit-conventions
A Chinese-language guide to Conventional Commits, a format for writing consistent Git commit messages, plus related changelog, commit-checking, and commit-helper configuration.
prepare-release
Prepare a new release by collecting commits, generating bilingual release notes, updating version files, and creating a release branch. Use when asked to prepare/create a release, bump version, or run /prepare-release.
comet-github-issue-fix
A workflow for fixing a confirmed Comet-related GitHub issue or review blocker within an isolated scope. It covers matching the work to the relevant workflow, testing the change, checking runtime results, and preparing a careful handoff.
comet-github
A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.