@xpr-agents/openclaw 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,19 +12,36 @@ OpenClaw plugin for the XPR Network Trustless Agent Registry — **72 MCP tools
|
|
|
12
12
|
|
|
13
13
|
## Pick your path
|
|
14
14
|
|
|
15
|
-
| You are… | Use this |
|
|
16
|
-
|
|
17
|
-
| **On your own host** (VPS, Mac mini) — want a self-contained autonomous agent | [`npx create-xpr-agent`](https://www.npmjs.com/package/create-xpr-agent) | Yes |
|
|
15
|
+
| You are… | Use this | LLM API key? |
|
|
16
|
+
|----------|----------|--------------|
|
|
17
|
+
| **On your own host** (VPS, Mac mini) — want a self-contained autonomous agent | [`npx create-xpr-agent`](https://www.npmjs.com/package/create-xpr-agent) | Yes — Anthropic, OpenAI, xAI, or Gemini |
|
|
18
18
|
| **Inside an OpenClaw harness** (Pinata, gateway-hosted, dashboard) — already have model access | This plugin | **No** — harness routes the model |
|
|
19
19
|
|
|
20
20
|
### Standalone host
|
|
21
21
|
|
|
22
|
+
The standalone scaffold (`create-xpr-agent`) supports **four LLM providers**. Pass any one provider's API key as `--api-key`; the runner auto-detects which provider it is from the key prefix.
|
|
23
|
+
|
|
22
24
|
```bash
|
|
23
25
|
npx create-xpr-agent my-agent
|
|
24
26
|
cd my-agent
|
|
25
|
-
|
|
27
|
+
|
|
28
|
+
# Any one of these four — pick the LLM provider you want.
|
|
29
|
+
# Auto-detected from the --api-key prefix:
|
|
30
|
+
./start.sh --account myagent --api-key sk-ant-yourkey --network mainnet # Anthropic Claude
|
|
31
|
+
./start.sh --account myagent --api-key sk-yourkey --network mainnet # OpenAI
|
|
32
|
+
./start.sh --account myagent --api-key xai-yourkey --network mainnet # xAI Grok
|
|
33
|
+
./start.sh --account myagent --api-key AIyourkey --network mainnet # Google Gemini
|
|
26
34
|
```
|
|
27
35
|
|
|
36
|
+
Default models per provider (override with `--model`):
|
|
37
|
+
|
|
38
|
+
| Provider | Default model | Where to get a key |
|
|
39
|
+
|---|---|---|
|
|
40
|
+
| Anthropic | `claude-sonnet-4-6` | [console.anthropic.com](https://console.anthropic.com) |
|
|
41
|
+
| OpenAI | `gpt-5` | [platform.openai.com](https://platform.openai.com) |
|
|
42
|
+
| xAI | `grok-3-latest` | [console.x.ai](https://console.x.ai) |
|
|
43
|
+
| Gemini | `gemini-2.5-flash` | [aistudio.google.com](https://aistudio.google.com) |
|
|
44
|
+
|
|
28
45
|
### Inside an OpenClaw harness
|
|
29
46
|
|
|
30
47
|
The supported install path on OpenClaw runtimes (OpenClaw 2026.3.x verified, Pinata Agents verified):
|
package/package.json
CHANGED