# Send Local Wallet Standard 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": "lws",
    "name": "Local Wallet Standard",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/njdawn/lws",
    "canonicalUrl": "https://clawhub.ai/njdawn/lws",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lws",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lws",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lws",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T02:02:15.927Z",
      "expiresAt": "2026-05-12T02:02:15.927Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lws",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lws",
        "contentDisposition": "attachment; filename=\"lws-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lws"
      },
      "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/lws"
    },
    "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/lws",
    "downloadUrl": "https://openagent3.xyz/downloads/lws",
    "agentUrl": "https://openagent3.xyz/skills/lws/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lws/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lws/agent.md"
  }
}
```
## Documentation

### LWS CLI

Minimal, offline-first CLI for generating wallets, deriving addresses, and signing messages across multiple chains.

### Installation

One-liner:

curl -fsSL https://raw.githubusercontent.com/dawnlabsai/lws/main/lws/install.sh | bash

The installer will:

Install Rust via rustup if not already present
Clone the repo and build from source
Place the lws binary at ~/.lws/bin/lws
Add ~/.lws/bin to your shell's PATH (supports zsh, bash, fish)

Set LWS_INSTALL_DIR to override the install location.

From source:

git clone https://github.com/dawnlabsai/lws.git
cd lws/lws
cargo build --workspace --release
cp target/release/lws ~/.lws/bin/lws

### lws generate

Generate a new BIP-39 mnemonic phrase.

lws generate [--words 12|24]

--words — Number of mnemonic words, 12 or 24 (default: 12)

### lws derive

Derive an address from a mnemonic.

lws derive --mnemonic <PHRASE> --chain <CHAIN> [--index 0]

--mnemonic — BIP-39 mnemonic phrase (required)
--chain — Chain type: evm, solana, bitcoin, cosmos, tron (required)
--index — Account index (default: 0)

### lws sign

Sign a message with a mnemonic-derived key.

lws sign --mnemonic <PHRASE> --chain <CHAIN> --message <MSG> [--index 0]

--mnemonic — BIP-39 mnemonic phrase (required)
--chain — Chain type (required)
--message — Message to sign (required)
--index — Account index (default: 0)

### lws info

Show the vault path and list supported chains.

lws info

### lws create-wallet

Create a new wallet — generates a mnemonic and saves a wallet descriptor to the vault.

lws create-wallet --name <NAME> --chain <CHAIN> [--words 12|24]

--name — Wallet name (required)
--chain — Chain type (required)
--words — Mnemonic word count (default: 12)

### lws list-wallets

List all saved wallets in the vault.

lws list-wallets

### lws update

Update lws to the latest version by building from the latest commit.

lws update [--force]

--force — Rebuild even if already on the latest commit

### lws uninstall

Remove lws from the system.

lws uninstall [--purge]

--purge — Also remove all wallet data and config (~/.lws)

Removes the binary, cleans PATH entries from shell config files, and optionally deletes the entire ~/.lws directory. Prompts for confirmation before proceeding.

### File Layout

~/.lws/
├── bin/
│   └── lws              # CLI binary
└── wallets/
    └── <wallet-id>.json  # Wallet descriptors
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: njdawn
- 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-05T02:02:15.927Z
- Expires at: 2026-05-12T02:02:15.927Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lws)
- [Send to Agent page](https://openagent3.xyz/skills/lws/agent)
- [JSON manifest](https://openagent3.xyz/skills/lws/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lws/agent.md)
- [Download page](https://openagent3.xyz/downloads/lws)