# Send Lukso Expert 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": "lukso-expert",
    "name": "Lukso Expert",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/LUKSOAgent/lukso-expert",
    "canonicalUrl": "https://clawhub.ai/LUKSOAgent/lukso-expert",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lukso-expert",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-expert",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/contracts-and-repos.md",
      "references/dev-patterns.md",
      "references/ecosystem.md",
      "references/lsp-standards.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lukso-expert",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T07:07:48.493Z",
      "expiresAt": "2026-05-09T07:07:48.493Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-expert",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-expert",
        "contentDisposition": "attachment; filename=\"lukso-expert-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lukso-expert"
      },
      "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/lukso-expert"
    },
    "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/lukso-expert",
    "downloadUrl": "https://openagent3.xyz/downloads/lukso-expert",
    "agentUrl": "https://openagent3.xyz/skills/lukso-expert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lukso-expert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lukso-expert/agent.md"
  }
}
```
## Documentation

### LUKSO Expert

Complete knowledge base for building on LUKSO — the blockchain for creative economies,
digital identity, and new social standards.

### Quick Facts

Chain ID: 42 (mainnet) / 4201 (testnet)
Native token: LYX
Consensus: Proof of Stake (32 LYX per validator)
EVM compatible: Yes, unmodified Ethereum execution layer
Unique: Universal Profiles (smart contract accounts) instead of EOAs
Founder: Fabian Vogelsteller (also created ERC-20 and ERC-725)

### Core Concepts

LUKSO extends Ethereum with LSP standards (LUKSO Standard Proposals) that enable:

Smart accounts (Universal Profiles) with built-in permissions, metadata, and social features
Flexible tokens (LSP7/LSP8) with safety features like force parameter and universal receiver hooks
Gasless transactions via relay service (LSP25)
On-chain social graph via followers system (LSP26)
Profile customization via The Grid (LSP28)

### Architecture Overview

Universal Profile (LSP0/ERC725Account)
├── KeyManager (LSP6) — permission layer
│   ├── Controllers — addresses with specific permissions
│   └── Allowed calls/addresses — fine-grained access control
├── Profile Data (LSP3) — name, description, avatar, links
├── Universal Receiver (LSP1) — hooks for incoming transactions
├── Owned Assets (LSP5) — registry of tokens/NFTs owned
├── Issued Assets (LSP12) — registry of tokens/NFTs created
└── The Grid (LSP28) — customizable profile layout

### Reference Files

Load these based on what you need:

### LSP Standards (references/lsp-standards.md)

Complete reference for ALL LSP standards (LSP0-LSP28+). Includes interfaces,
function signatures, and implementation details. Read when working with any
specific LSP or needing to understand the standards architecture.

### Developer Patterns (references/dev-patterns.md)

Practical code examples and implementation guides. Covers UP creation, token
operations, permissions, gasless transactions, and common pitfalls. Read when
writing code or debugging LUKSO-specific issues.

### Ecosystem (references/ecosystem.md)

Projects, team, community channels, grants, and chain infrastructure. Read when
answering ecosystem questions or looking for project information.

### Contracts & Repos (references/contracts-and-repos.md)

Deployed contract addresses, GitHub repositories, NPM packages, and API endpoints.
Read when looking up addresses, ABIs, or integration endpoints.

### Key Contract Addresses (Mainnet)

ContractAddressLSP26 Follower System0xf01103E5a9909Fc0DBe8166dA7085e0285daDDcAEnvio GraphQLhttps://envio.lukso-mainnet.universal.tech/v1/graphql

Full address list in references/contracts-and-repos.md

### Resolve username to UP address

# Envio GraphQL
query { Profile(where: {name: {_eq: "username"}}) { id name } }

### Check UP count

query { Profile_aggregate { aggregate { count } } }

### Follow a profile (LSP26)

const LSP26 = "0xf01103E5a9909Fc0DBe8166dA7085e0285daDDcA";
const calldata = lsp26Contract.methods.follow(targetAddress).encodeABI();
await universalProfile.methods.execute(0, LSP26, 0, calldata).send({from: controller});

### Important Gotchas

force parameter (LSP7/LSP8): Set to true to send tokens to any address.
Set to false (default) to only send to UPs with a Universal Receiver — prevents
accidental sends to EOAs or contracts that can't handle them.


LSP6 Permissions: Permissions are bitmask-based. Common mistake: granting
CALL permission but forgetting EXECUTE_RELAY_CALL for gasless transactions.


ERC725Y data encoding: Use @erc725/erc725.js for encoding — manual encoding
is error-prone, especially for VerifiableURI and array types.


Gas estimation: UP transactions go through KeyManager proxy, so gas estimates
can be off. Add 20-30% buffer.

### Developer Resources

Docs: https://docs.lukso.tech
GitHub: https://github.com/lukso-network
Medium: https://medium.com/lukso
Discord: https://discord.gg/lukso
Testnet faucet: https://faucet.testnet.lukso.network
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: LUKSOAgent
- 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-02T07:07:48.493Z
- Expires at: 2026-05-09T07:07:48.493Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lukso-expert)
- [Send to Agent page](https://openagent3.xyz/skills/lukso-expert/agent)
- [JSON manifest](https://openagent3.xyz/skills/lukso-expert/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lukso-expert/agent.md)
- [Download page](https://openagent3.xyz/downloads/lukso-expert)