cloud-setup
Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.
What this skill does
# Cloud Environment Setup
Configure Elastic Cloud authentication and preferences. All other `cloud/*` skills depend on this setup.
## Workflow
```text
Setup Progress:
- [ ] Step 1: Verify API key
- [ ] Step 2: Set defaults
- [ ] Step 3: Validate connection
```
### Step 1: Verify API key
Check whether `EC_API_KEY` is already set:
```bash
echo "${EC_API_KEY:?Not set}"
```
If not set, instruct the user to set it. **Never ask the user to paste an API key into the chat** — secrets must not
appear in conversation history.
If the user indicates they do not have an Elastic Cloud account yet, propose starting a free trial at
[Elastic Cloud free trial](https://cloud.elastic.co/registration). The trial provides 14 days of full access to Elastic
Cloud Serverless with no credit card required. Once the user has registered and logged in, proceed with API key
generation below.
Direct the user to:
1. Generate a key at [Elastic Cloud API keys](https://cloud.elastic.co/account/keys). Only **Organization owners** can
create and manage Cloud API keys.
1. When creating this key, include **Project Admin** privileges or higher (Org Owner) so it can create and manage
serverless projects.
1. Create a `.env` file in the project root (recommended — works in sandboxed agent shells):
```bash
EC_API_KEY=your-api-key
```
All `cloud/*` scripts auto-load `.env` from the working directory — no manual sourcing needed.
Alternatively, export directly in the terminal:
```bash
export EC_API_KEY="your-api-key"
```
Terminal exports might not be visible to sandboxed agents running in a separate shell session. Prefer the `.env` file
when working with an agent.
Remind the user that storing secrets in local files is acceptable for development, but for production or shared
environments, use a centralized secrets manager (for example, HashiCorp Vault, AWS Secrets Manager, 1Password CLI) to
avoid secrets sprawl.
### Step 2: Set defaults
Export the base URL and default region:
```bash
export EC_BASE_URL="https://api.elastic-cloud.com"
export EC_REGION="gcp-us-central1"
```
Ask the user if they want a different region. To list available regions:
```bash
curl -s -H "Authorization: ApiKey ${EC_API_KEY}" \
"${EC_BASE_URL}/api/v1/serverless/regions" | python3 -m json.tool
```
### Step 3: Validate connection
Confirm the API key works by calling the regions endpoint:
```bash
curl -sf -H "Authorization: ApiKey ${EC_API_KEY}" \
"${EC_BASE_URL}/api/v1/serverless/regions" > /dev/null && echo "Authenticated." || echo "Authentication failed."
```
If validation fails, check:
- The API key is valid and not expired
- Network connectivity to `api.elastic-cloud.com`
## Examples
### First-time setup
```text
User: set up my cloud environment
Agent: Check if EC_API_KEY is set in your terminal. If not, generate a key at
https://cloud.elastic.co/account/keys and run:
export EC_API_KEY="your-key"
Then confirm and I'll validate the connection.
```
### Setup with custom region
```text
User: set up cloud with eu region
Agent: [runs setup, sets EC_REGION to user's preferred EU region]
```
## Guidelines
- Never receive, echo, or log API keys, passwords, or any credentials in the chat. Instruct the user to manage secrets
in their terminal or using files directly.
- Always validate the connection after setting the key.
- Default region is `gcp-us-central1` — only change if the user requests a different region.
- This skill is a prerequisite. Other cloud skills should refer here when `EC_API_KEY` is missing.
## Environment variables
| Variable | Required | Description |
| ------------- | -------- | ------------------------------------------------------------- |
| `EC_API_KEY` | Yes | Elastic Cloud API key |
| `EC_BASE_URL` | No | Cloud API base URL (default: `https://api.elastic-cloud.com`) |
| `EC_REGION` | No | Default region (default: `gcp-us-central1`) |
## Troubleshooting
| Problem | Fix |
| -------------------- | -------------------------------------------------- |
| `401 Unauthorized` | API key is invalid or expired — generate a new one |
| `connection refused` | Check network access to `api.elastic-cloud.com` |
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.