# Send solana-light-token-client 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": "solana-light-token-client",
    "name": "solana-light-token-client",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tilo-14/solana-light-token-client",
    "canonicalUrl": "https://clawhub.ai/tilo-14/solana-light-token-client",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solana-light-token-client",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-light-token-client",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/revoke.md",
      "references/wrap.md",
      "references/create-interface-pda.md",
      "references/load-associated-token-account.md",
      "references/transfer-checked.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "solana-light-token-client",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T16:49:51.851Z",
      "expiresAt": "2026-05-19T16:49:51.851Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-light-token-client",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-light-token-client",
        "contentDisposition": "attachment; filename=\"solana-light-token-client-1.0.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "solana-light-token-client"
      },
      "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/solana-light-token-client"
    },
    "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/solana-light-token-client",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-light-token-client",
    "agentUrl": "https://openagent3.xyz/skills/solana-light-token-client/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-light-token-client/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-light-token-client/agent.md"
  }
}
```
## Documentation

### Light Token Client SDKs

Client-side cookbook for @lightprotocol/compressed-token (TypeScript) and light_token_client (Rust). Covers all token operations: create mints, associated token accounts, transfer, approve, revoke, burn, wrap, unwrap, freeze, thaw, close, and load.

Creation costSPLLight TokenToken account~2,000,000 lamports~11,000 lamports

### Prerequisites

Examples show both localnet and devnet configurations. For devnet, set:

API_KEY env var — Helius or Triton RPC API key. In production, load from a secrets manager.
~/.config/solana/id.json — local Solana keypair (solana-keygen new). In production, load from a secrets manager.

### Workflow

Clarify intent

Recommend plan mode, if it's not activated
Use AskUserQuestion to resolve blind spots
All questions must be resolved before execution


Identify references and skills

Match task to domain references below
Locate relevant documentation and examples


Write plan file (YAML task format)

Use AskUserQuestion for anything unclear — never guess or assume
Identify blockers: permissions, dependencies, unknowns
Plan must be complete before execution begins


Execute

Use Task tool with subagents for parallel research
Subagents load skills via Skill tool
Track progress with TodoWrite


When stuck: ask to spawn a read-only subagent with Read, Glob, Grep, and DeepWiki MCP access, loading skills/ask-mcp. Scope reads to skill references, example repos, and docs.

### Domain references

TaskReferenceCreate a mintcreate-mint.mdCreate SPL interface PDAcreate-interface-pda.mdCreate associated token accountcreate-associated-token-account.mdCreate token accountcreate-token-account.mdMint tokensmint-to.mdTransfer tokenstransfer-interface.mdTransfer checkedtransfer-checked.mdApprove delegateapprove.mdRevoke delegaterevoke.mdWrap SPL to Lightwrap.mdUnwrap Light to SPLunwrap.mdLoad associated token accountload-associated-token-account.mdBurn tokensburn.mdBurn checkedburn-checked.mdFreeze token accountfreeze.mdThaw token accountthaw.mdClose token accountclose-token-account.mdMint SPL, wrap, and transferspl-mint-wrap-transfer.md

### Operations overview

OperationTypeScriptRustDocsCreate Light mintcreateMintInterfaceCreateMintcreate-mintCreate SPL mint w/ interface PDAcreateMintInterface + TOKEN_PROGRAM_ID—create-mintCreate T22 mint w/ interface PDAcreateMintInterface + TOKEN_2022_PROGRAM_ID—create-mintAdd interface PDA to existing mintcreateSplInterface—create-mintCreate associated token accountcreateAtaInterfaceCreateAtacreate-ataCreate token account—CreateTokenAccountcreate-token-accountMint tomintToInterfaceMintTomint-toTransfertransferInterfaceTransferInterfacetransfer-interfaceTransfer checked—TransferCheckedtransfer-checkedApproveapproveApproveapprove-revokeRevokerevokeRevokeapprove-revokeBurn—BurnburnBurn checked—BurnCheckedburnWrap SPL to LightwrapWrapwrap-unwrapUnwrap Light to SPLunwrapUnwrapwrap-unwrapLoad associated token account (cold to hot)loadAta—load-ataFreeze—Freezefreeze-thawThaw—Thawfreeze-thawClose—Closeclose-token-account

### External references

ResourceLinkDocs cookbookzkcompression.com/light-token/cookbookTypeScript examplesexamples-light-token/typescript-clientRust examplesexamples-light-token/rust-client@lightprotocol/stateless.jsAPI docs@lightprotocol/compressed-tokenAPI docslight-clientdocs.rslight-token-clientdocs.rslight-tokendocs.rs

### Security

This skill does not pull, store, or transmit external secrets. It provides code patterns, documentation references, and development guidance only.

Declared dependencies. Devnet and mainnet examples require API_KEY (Helius or Triton RPC key) and read ~/.config/solana/id.json for the payer keypair. Neither is needed on localnet. In production, load both from a secrets manager.
User-provided configuration. RPC endpoints, wallet keypairs, and authentication tokens are configured in the user's application code. The skill demonstrates patterns — it does not store or transmit secrets.
Install source. npx skills add Lightprotocol/skills installs from the public GitHub repository (Lightprotocol/skills). Verify the source before running.
Subagent scope. When stuck, the skill asks to spawn a read-only subagent with Read, Glob, and Grep scoped to skill references, example repos, and docs.
Audited protocol. Light Protocol smart contracts are independently audited. Reports are published at github.com/Lightprotocol/light-protocol/tree/main/audits.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tilo-14
- Version: 1.0.6
## 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-12T16:49:51.851Z
- Expires at: 2026-05-19T16:49:51.851Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solana-light-token-client)
- [Send to Agent page](https://openagent3.xyz/skills/solana-light-token-client/agent)
- [JSON manifest](https://openagent3.xyz/skills/solana-light-token-client/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solana-light-token-client/agent.md)
- [Download page](https://openagent3.xyz/downloads/solana-light-token-client)