# Send open-stellar-wallet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "open-stellar",
    "name": "open-stellar-wallet",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Sixela33/open-stellar",
    "canonicalUrl": "https://clawhub.ai/Sixela33/open-stellar",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/open-stellar",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-stellar",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "open-stellar",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T10:00:05.944Z",
      "expiresAt": "2026-05-19T10:00:05.944Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-stellar",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-stellar",
        "contentDisposition": "attachment; filename=\"open-stellar-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "open-stellar"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/open-stellar"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/open-stellar",
    "downloadUrl": "https://openagent3.xyz/downloads/open-stellar",
    "agentUrl": "https://openagent3.xyz/skills/open-stellar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-stellar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-stellar/agent.md"
  }
}
```
## Documentation

### Stellar CLI Skill

Interact with the Stellar blockchain: manage wallets, send XLM, configure networks, and work with Soroban smart contracts.

### First-Run Setup (automatic)

When this skill is first used, run these steps automatically — do NOT ask the user for confirmation:

Connect to testnet and verify:

stellar network use testnet
stellar network health --network testnet

If the health check fails, inform the user and stop.

Create and fund a default wallet:

stellar keys generate default --fund --network testnet
stellar keys use default
stellar keys public-key default

If default already exists, skip generation and just verify with stellar keys public-key default.

Report to the user:

✅ Stellar CLI ready. Network: testnet | Wallet: default | Public key: G... | Funded with 10,000 test XLM.

If the user asks to switch to mainnet, warn that real funds are involved and require explicit confirmation.

### Create a wallet

stellar keys generate <NAME> --fund --network testnet

--fund uses Friendbot to send 10,000 test XLM. Omit it for an unfunded identity.
Add --overwrite to replace an existing identity with the same name.

### List wallets

stellar keys ls -l

### Get public key / secret key

stellar keys public-key <NAME>
stellar keys secret <NAME>

Warning: Never share secret keys — they grant full control of the account.

### Import an existing key

stellar keys add <NAME> --public-key <G_ADDRESS>

### Fund / set default / remove

stellar keys fund <NAME> --network testnet
stellar keys use <NAME>
stellar keys rm <NAME>

### Sending XLM

stellar tx new payment \\
  --source-account <SENDER> \\
  --destination <RECEIVER> \\
  --amount <STROOPS> \\
  --network <NETWORK>

--amount is in stroops (1 XLM = 10,000,000 stroops):

XLMStroops110000000101000000001001000000000

--source-account and --destination accept identity names (e.g. alice) or public keys (G...).
--asset defaults to native (XLM). For other assets: --asset CODE:ISSUER.
--inclusion-fee <STROOPS> overrides the default 100 stroop fee.

### Example: send 10 XLM

stellar tx new payment \\
  --source-account default \\
  --destination <RECEIVER> \\
  --amount 100000000 \\
  --network testnet

### Build → Sign → Send (manual pipeline)

# 1. Build
stellar tx new payment \\
  --source-account default \\
  --destination <RECEIVER> \\
  --amount 100000000 \\
  --network testnet \\
  --build-only > tx.xdr

# 2. Sign
stellar tx sign --sign-with-key default --network testnet < tx.xdr > signed_tx.xdr

# 3. Send
stellar tx send --network testnet < signed_tx.xdr

### Create a new on-chain account

stellar tx new create-account \\
  --source-account default \\
  --destination <NEW_PUBLIC_KEY> \\
  --network testnet

### Network Management

Built-in networks: testnet, futurenet, mainnet, local.

stellar network use <NAME>
stellar network health --network <NAME>
stellar network ls

Add a custom network:

stellar network add <NAME> \\
  --rpc-url <RPC_URL> \\
  --network-passphrase "<PASSPHRASE>"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Sixela33
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T10:00:05.944Z
- Expires at: 2026-05-19T10:00:05.944Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/open-stellar)
- [Send to Agent page](https://openagent3.xyz/skills/open-stellar/agent)
- [JSON manifest](https://openagent3.xyz/skills/open-stellar/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/open-stellar/agent.md)
- [Download page](https://openagent3.xyz/downloads/open-stellar)