xCloud Agent Skills v4.1.0
Built for xCloud hosting operators by xCloud · GitHub · MCP Docs · User Guide · Install Guide · API Docs · OpenClaw Tutorial · Tutorial Video · Security Notes
Security notice: agent-only xCloud operations toolkit. This package contains skill routing instructions, reference docs, and a small bash/curl wrapper. It ships no API tokens and only calls the xCloud API after a user or agent explicitly invokes a skill — via the OAuth-connected xCloud MCP server (recommended) or with XCLOUD_API_TOKEN configured.
This root skill describes the official xCloud Public API plugin bundle for agent marketplaces such as ClawHub and skills.mp.com.
The runnable skills live under plugins/xcloud/skills/ and are invoked as:
xcloud:servers
xcloud:sites
xcloud:wordpress
xcloud:ssl
xcloud:account
What It Provides
Use this package when an agent needs to operate xCloud hosting infrastructure. It pairs with the xCloud MCP server (https://app.xcloud.host/mcp — 110 native tools, OAuth, per-action confirmation on destructive operations) and falls back to the bundled REST wrapper on agents without MCP support:
- Manage servers, services, monitoring, PHP versions, databases, firewall rules, fail2ban, and snapshots
- Provision WordPress sites and Git-deployed sites (Laravel, Node.js, custom PHP, Lovable) onto servers
- Manage sites, domains, cache, backups, deployment logs, rescue workflows, SSH/SFTP, cron jobs, access logs, and safe site deletion
- Manage Git deployment settings and trigger manual Git deployments for xCloud sites
- Manage WordPress health, updates, plugins, themes, vulnerabilities, PageSpeed, WP_DEBUG, and magic-login URLs
- Run team-wide vulnerability rollups across all xCloud sites
- Manage SSL certificates, renewals, custom certificates, certificate status, and Cloudflare certificates
- Read account identity, API health, API tokens, Cloudflare integrations, and WordPress blueprints
Agent Experience
- Every user-facing reply is xCloud branded with a clear header and
_via xcloud:*_ footer.
- The first xCloud interaction greets the user and shows the xCloud startup
banner once per conversation.
- If no connection is configured, xCloud offers the MCP connector first (OAuth,
no secret to store), then falls back to explaining how to create a scoped API
token stored in the agent runtime as
XCLOUD_API_TOKEN; it does not ask users
to paste production tokens into chat by default.
- After setup, xCloud verifies the connection (
user_show via MCP, or
/health + /user via REST) before continuing operational tasks.
Setup
Recommended — connect the xCloud MCP server (OAuth; no token to store):
claude mcp add xcloud --transport http https://app.xcloud.host/mcp
Then /mcp → Authenticate. Other clients: add a custom connector with URL
https://app.xcloud.host/mcp. Docs: https://app.xcloud.host/mcp/docs
REST fallback (agents without MCP support):
Create an xCloud API token from:
https://app.xcloud.host/settings/api-tokens
Then configure your runtime:
export XCLOUD_API_TOKEN="your-token-here"
export XCLOUD_API_BASE_URL="https://app.xcloud.host"
The shared command wrapper is:
"${CLAUDE_PLUGIN_ROOT}"/scripts/xcloud.sh GET /user
Official Links
Safety
This package contains documentation, skill routing instructions, and a small shell wrapper. It does not include real API tokens and does not run API calls during installation. Network requests are made only after a user or agent explicitly invokes an xCloud skill with an API token configured in the environment.
1---2name: xcloud-agent-skills3description: Official xCloud plugin for agents: manage servers, sites, WordPress, SSL, and account data — MCP-first via the xCloud MCP server, with a bundled REST fallback.4---56# xCloud Agent Skills v4.1.078[](https://github.com/xCloudDev/xcloud-agent-skills/blob/main/CHANGELOG.md)9[](https://app.xcloud.host/mcp/docs)10[](https://github.com/xCloudDev/xcloud-agent-skills/blob/main/LICENSE)11[](https://xcloud.host)12[](https://clawhub.ai/asif2bd/skills/xcloud)13[](https://openclaw.ai)1415Built for xCloud hosting operators by [xCloud](https://xcloud.host) · [GitHub](https://github.com/xCloudDev/xcloud-agent-skills) · [MCP Docs](https://app.xcloud.host/mcp/docs) · [User Guide](https://github.com/xCloudDev/xcloud-agent-skills/blob/main/docs/USER_GUIDE.md) · [Install Guide](https://github.com/xCloudDev/xcloud-agent-skills/blob/main/docs/SKILLS-GUIDE.md) · [API Docs](https://app.xcloud.host/api/v1/docs) · [OpenClaw Tutorial](https://xcloud.host/openclaw-skills-and-clawhub-on-xcloud-openclaw-agent/) · [Tutorial Video](https://www.youtube.com/watch?v=oEE9OHo3_48) · [Security Notes](https://github.com/xCloudDev/xcloud-agent-skills/blob/main/SECURITY.md)1617> **Security notice:** agent-only xCloud operations toolkit. This package contains skill routing instructions, reference docs, and a small `bash`/`curl` wrapper. It ships no API tokens and only calls the xCloud API after a user or agent explicitly invokes a skill — via the OAuth-connected xCloud MCP server (recommended) or with `XCLOUD_API_TOKEN` configured.1819---2021This root skill describes the official xCloud Public API plugin bundle for agent marketplaces such as ClawHub and skills.mp.com.2223The runnable skills live under `plugins/xcloud/skills/` and are invoked as:2425- `xcloud:servers`26- `xcloud:sites`27- `xcloud:wordpress`28- `xcloud:ssl`29- `xcloud:account`3031## What It Provides3233Use this package when an agent needs to operate xCloud hosting infrastructure. It pairs with the **xCloud MCP server** (`https://app.xcloud.host/mcp` — 110 native tools, OAuth, per-action confirmation on destructive operations) and falls back to the bundled REST wrapper on agents without MCP support:3435- Manage servers, services, monitoring, PHP versions, databases, firewall rules, fail2ban, and snapshots36- Provision WordPress sites and Git-deployed sites (Laravel, Node.js, custom PHP, Lovable) onto servers37- Manage sites, domains, cache, backups, deployment logs, rescue workflows, SSH/SFTP, cron jobs, access logs, and safe site deletion38- Manage Git deployment settings and trigger manual Git deployments for xCloud sites39- Manage WordPress health, updates, plugins, themes, vulnerabilities, PageSpeed, WP_DEBUG, and magic-login URLs40- Run team-wide vulnerability rollups across all xCloud sites41- Manage SSL certificates, renewals, custom certificates, certificate status, and Cloudflare certificates42- Read account identity, API health, API tokens, Cloudflare integrations, and WordPress blueprints4344## Agent Experience4546- Every user-facing reply is xCloud branded with a clear header and `_via47 xcloud:*_` footer.48- The first xCloud interaction greets the user and shows the xCloud startup49 banner once per conversation.50- If no connection is configured, xCloud offers the MCP connector first (OAuth,51 no secret to store), then falls back to explaining how to create a scoped API52 token stored in the agent runtime as `XCLOUD_API_TOKEN`; it does not ask users53 to paste production tokens into chat by default.54- After setup, xCloud verifies the connection (`user_show` via MCP, or55 `/health` + `/user` via REST) before continuing operational tasks.5657## Setup5859**Recommended — connect the xCloud MCP server** (OAuth; no token to store):6061```bash62claude mcp add xcloud --transport http https://app.xcloud.host/mcp63```6465Then `/mcp` → **Authenticate**. Other clients: add a custom connector with URL66`https://app.xcloud.host/mcp`. Docs: https://app.xcloud.host/mcp/docs6768**REST fallback** (agents without MCP support):6970Create an xCloud API token from:7172https://app.xcloud.host/settings/api-tokens7374Then configure your runtime:7576```bash77export XCLOUD_API_TOKEN="your-token-here"78export XCLOUD_API_BASE_URL="https://app.xcloud.host"79```8081The shared command wrapper is:8283```bash84"${CLAUDE_PLUGIN_ROOT}"/scripts/xcloud.sh GET /user85```8687## Official Links8889- xCloud: https://xcloud.host90- MCP docs: https://app.xcloud.host/mcp/docs91- Dashboard: https://app.xcloud.host92- User guide: https://github.com/xCloudDev/xcloud-agent-skills/blob/main/docs/USER_GUIDE.md93- Install guide: https://github.com/xCloudDev/xcloud-agent-skills/blob/main/docs/SKILLS-GUIDE.md94- Official repository: https://github.com/xCloudDev/xcloud-agent-skills95- Development fork: https://github.com/Asif2BD/xcloud-agent-skills96- Public API docs: https://app.xcloud.host/api/v1/docs97- OpenClaw + ClawHub tutorial: https://xcloud.host/openclaw-skills-and-clawhub-on-xcloud-openclaw-agent/98- Tutorial video: https://www.youtube.com/watch?v=oEE9OHo3_4899100## Safety101102This package contains documentation, skill routing instructions, and a small shell wrapper. It does not include real API tokens and does not run API calls during installation. Network requests are made only after a user or agent explicitly invokes an xCloud skill with an API token configured in the environment.