ovh

Web & Frontend Development
v1.0.0
Benign

Manage OVHcloud services via API.

747 downloads747 installsby @pushp1997

Setup & Installation

Install command

clawhub install pushp1997/ovh

If the CLI is not installed:

Install command

npx clawhub@latest install pushp1997/ovh

Or install with OpenClaw CLI:

Install command

openclaw skills install pushp1997/ovh

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/pushp1997/ovh

What This Skill Does

Manage OVHcloud services via a bundled CLI script that wraps the OVHcloud API. Covers domains, DNS records, VPS, cloud instances, dedicated servers, SSL certificates, and billing.

Handles the full range of OVHcloud resources through one CLI tool instead of navigating the web console or writing raw API calls.

When to Use It

  • Add or update DNS records for an OVH-managed domain
  • Reboot or check the status of a VPS
  • Check when a domain is due for renewal
  • List cloud instances across a project
  • Review recent OVHcloud bills and orders
View original SKILL.md file
# OVH

Manage OVHcloud services via the bundled `ovh-cli.py` script.

## Setup

Store credentials in environment:

```bash
export OVH_ENDPOINT="ovh-ca"  # or ovh-eu, ovh-us, etc.
export OVH_APP_KEY="your-app-key"
export OVH_APP_SECRET="your-app-secret"
export OVH_CONSUMER_KEY="your-consumer-key"
```

**Get credentials:**
1. Go to https://ca.api.ovh.com/createToken/ (or eu/us variant)
2. Create application with desired permissions
3. Validate the consumer key via the provided URL

**Endpoints:** `ovh-eu`, `ovh-ca`, `ovh-us`, `soyoustart-eu`, `soyoustart-ca`, `kimsufi-eu`, `kimsufi-ca`

## Usage

The script is at `scripts/ovh-cli.py`. Commands:

```bash
# Account info
ovh-cli.py me

# Domains
ovh-cli.py domains                      # List all domains
ovh-cli.py domain <domain>              # Get domain info
ovh-cli.py domain <domain> renew        # Check renewal info

# DNS (OVH-managed zones, not Cloudflare)
ovh-cli.py dns <domain>                 # List DNS records
ovh-cli.py dns <domain> get <id>        # Get specific record
ovh-cli.py dns <domain> create --type A --subdomain www --target 1.2.3.4 [--ttl 300]
ovh-cli.py dns <domain> update <id> --target 5.6.7.8
ovh-cli.py dns <domain> delete <id>
ovh-cli.py dns <domain> refresh         # Refresh zone (apply changes)

# VPS
ovh-cli.py vps                          # List all VPS
ovh-cli.py vps <name>                   # VPS details
ovh-cli.py vps <name> status            # Current state
ovh-cli.py vps <name> reboot            # Reboot VPS
ovh-cli.py vps <name> start             # Start VPS
ovh-cli.py vps <name> stop              # Stop VPS
ovh-cli.py vps <name> ips               # List IPs

# Cloud Projects
ovh-cli.py cloud                        # List projects
ovh-cli.py cloud <project> instances    # List instances
ovh-cli.py cloud <project> instance <id> # Instance details

# Dedicated Servers
ovh-cli.py dedicated                    # List servers
ovh-cli.py dedicated <name>             # Server details
ovh-cli.py dedicated <name> reboot      # Reboot server

# SSL Certificates
ovh-cli.py ssl                          # List certificates
ovh-cli.py ssl <id>                     # Certificate details

# Bills & Orders
ovh-cli.py bills [--limit N]            # Recent bills
ovh-cli.py orders [--limit N]           # Recent orders
```

## Common Patterns

**Check domain expiry:**
```bash
ovh-cli.py domain pushp.ovh renew
```

**Add DNS record:**
```bash
ovh-cli.py dns pushp.ovh create --type A --subdomain api --target 203.0.113.50
ovh-cli.py dns pushp.ovh refresh
```

**Manage VPS:**
```bash
ovh-cli.py vps myvps status
ovh-cli.py vps myvps reboot
```

## Notes

- DNS changes require `refresh` to apply
- Use `--json` flag for machine-readable output
- Some operations are async; check status with subsequent calls

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Add or update DNS records for an OVH-managed domain

AGENT
  1. 1Add or update DNS records for an OVH-managed domain
  2. 2Reboot or check the status of a VPS
  3. 3Check when a domain is due for renewal
  4. 4List cloud instances across a project
  5. 5Review recent OVHcloud bills and orders
OUTPUT
Manage OVHcloud services via API.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedMar 1, 2026