This skill retrieves real-time energy production and inverter status data from the Solax Cloud API and returns it as structured JSON.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install solax-cloud-api
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install solax-cloud-api using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The solax-summary-fetch skill is a specialized utility designed for developers and smart home enthusiasts who need to programmatically access solar energy metrics. By leveraging the Solax Cloud API, this entry in the ecosystem of Openclaw Skills allows for the automated retrieval of inverter performance data, battery levels, and grid status. It transforms raw API responses into a clean, typed JSON format, making it an essential component for any energy-aware automation stack or custom monitoring dashboard.
To get started, navigate to the skill directory and install the required Node.js dependencies:
cd /home/openclaw/.openclaw/workspace/skills/solax-summary-fetch/scripts
npm install
It is highly recommended to configure your credentials as environment variables to maintain security:
export SOLAX_TOKENID="your_api_token"
export SOLAX_SN="your_inverter_serial"
You can then execute the skill using the following command:
node fetch_summary.mjs --tokenId "$SOLAX_TOKENID" --sn "$SOLAX_SN"
The skill returns a JSON object conforming to the SolaxSummary interface. Below is a representation of the data structure provided:
| Property | Type | Description |
|---|---|---|
| yieldToday | number | Total energy produced today in kWh |
| yieldTotal | number | Lifetime energy production in kWh |
| acPower | number | Current AC power output in Watts |
| uploadTime | string | The timestamp of the last data update from the inverter |
| ok | boolean | Status flag indicating if the request was successful |
In the event of a failure, the skill returns an error object: {"ok": false, "error": "Reason for failure"}.
Loading
A digestive health tracking application that uses data-driven insights to help users identify food sensitivities and optimize gut wellness.

A systematic file organization skill for AI agents using the proven PARA method to maintain a clean workspace.

A data-driven analysis engine for comparing technology stacks, calculating TCO, and assessing ecosystem health.

A professional toolkit for optimizing LLM prompts, evaluating RAG performance, and designing complex agentic workflows.

A powerful VPS management engine for automating the installation of Docker-based applications and infrastructure tools.

A powerful automation engine for deploying and managing self-hosted open-source applications and infrastructure on Linux VPS servers.








































