{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-stream-light",
    "name": "solana-stream-light",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/tilo-14/solana-stream-light",
    "canonicalUrl": "https://clawhub.ai/tilo-14/solana-stream-light",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/solana-stream-light",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-stream-light",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/shared.md",
      "references/token-accounts.md",
      "references/pdas.md",
      "references/mint-accounts.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solana-stream-light"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/solana-stream-light",
    "agentPageUrl": "https://openagent3.xyz/skills/solana-stream-light/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-stream-light/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-stream-light/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Data Streaming",
        "body": "Stream Light Protocol account state transitions via Laserstream gRPC."
      },
      {
        "title": "Workflow",
        "body": "Clarify intent\n\nRecommend plan mode, if it's not activated\nUse AskUserQuestion to resolve blind spots\nAll questions must be resolved before execution\n\n\nIdentify references and skills\n\nMatch task to domain references below\nLocate relevant documentation and examples\n\n\nWrite plan file (YAML task format)\n\nUse AskUserQuestion for anything unclear — never guess or assume\nIdentify blockers: permissions, dependencies, unknowns\nPlan must be complete before execution begins\n\n\nExecute\n\nUse Task tool with subagents for parallel research\nSubagents load skills via Skill tool\nTrack progress with TodoWrite\n\n\nWhen stuck: spawn subagent with Read, Glob, Grep, DeepWiki MCP access and load skills/ask-mcp"
      },
      {
        "title": "When NOT to use",
        "body": "For simple account lookups, call get_account_interface from light-client. It races hot and cold lookups automatically.\n\nThis skill is for continuous data pipelines: aggregators, market makers, and indexers that need real-time state change notifications rather than point queries."
      },
      {
        "title": "Domain references",
        "body": "AudienceReferenceAll — shared architecture (read first)references/shared.mdToken accounts (SPL-compatible, 165 bytes)references/token-accounts.mdMint accounts (borsh-deserialized, metadata)references/mint-accounts.mdCompressible PDAs (per-program, discriminator check)references/pdas.md"
      },
      {
        "title": "Account type decision",
        "body": "Streaming...Account typeKey differenceSPL-compatible token balancesToken accountsPodAccount parsing, 165-byte layoutMint supply, metadata, authoritiesMint accountsMint::deserialize, borsh layoutYour program's PDA stateCompressible PDAs8-byte discriminator check, per-program filter"
      },
      {
        "title": "Program addresses",
        "body": "ProgramAddressLight Token ProgramcTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3mLight System ProgramSySTEM1eSU2p4BGQfQpimFEWWSC1XDFeun3Nqzz3rT7"
      },
      {
        "title": "External references",
        "body": "ResourceLinkPhoton indexergithub.com/helius-labs/photonStreaming tokens toolkitzkcompression.com/light-token/toolkits/for-streaming-tokensStreaming mints toolkitzkcompression.com/light-token/toolkits/for-streaming-mints"
      },
      {
        "title": "SDK references",
        "body": "PackageLink@lightprotocol/stateless.jsAPI docslight-clientdocs.rs"
      },
      {
        "title": "Security",
        "body": "This skill does not pull, store, or transmit external secrets. It provides code patterns, documentation references, and development guidance only.\n\nNo credentials consumed. The skill requires no API keys, private keys, or signing secrets. env: [] is declared explicitly.\nUser-provided configuration. RPC endpoints, wallet keypairs, and authentication tokens (Privy, wallet adapters) are configured in the user's own application code — the skill only demonstrates how to use them.\nAPI keys. Reference code uses HELIUS_API_KEY as a placeholder. For production, set your RPC provider key as an environment variable.\nSubagent scope. This skill may spawn read-only subagents that use Read, Glob, and Grep to search the local repository. Restrict the working directory to your project.\nInstall source. npx skills add Lightprotocol/skills installs from the public GitHub repository (Lightprotocol/skills). Verify the source before running.\nAudited protocol. Light Protocol smart contracts are independently audited. Reports are published at github.com/Lightprotocol/light-protocol/tree/main/audits."
      }
    ],
    "body": "Data Streaming\n\nStream Light Protocol account state transitions via Laserstream gRPC.\n\nWorkflow\nClarify intent\nRecommend plan mode, if it's not activated\nUse AskUserQuestion to resolve blind spots\nAll questions must be resolved before execution\nIdentify references and skills\nMatch task to domain references below\nLocate relevant documentation and examples\nWrite plan file (YAML task format)\nUse AskUserQuestion for anything unclear — never guess or assume\nIdentify blockers: permissions, dependencies, unknowns\nPlan must be complete before execution begins\nExecute\nUse Task tool with subagents for parallel research\nSubagents load skills via Skill tool\nTrack progress with TodoWrite\nWhen stuck: spawn subagent with Read, Glob, Grep, DeepWiki MCP access and load skills/ask-mcp\nWhen NOT to use\n\nFor simple account lookups, call get_account_interface from light-client. It races hot and cold lookups automatically.\n\nThis skill is for continuous data pipelines: aggregators, market makers, and indexers that need real-time state change notifications rather than point queries.\n\nDomain references\nAudience\tReference\nAll — shared architecture (read first)\treferences/shared.md\nToken accounts (SPL-compatible, 165 bytes)\treferences/token-accounts.md\nMint accounts (borsh-deserialized, metadata)\treferences/mint-accounts.md\nCompressible PDAs (per-program, discriminator check)\treferences/pdas.md\nAccount type decision\nStreaming...\tAccount type\tKey difference\nSPL-compatible token balances\tToken accounts\tPodAccount parsing, 165-byte layout\nMint supply, metadata, authorities\tMint accounts\tMint::deserialize, borsh layout\nYour program's PDA state\tCompressible PDAs\t8-byte discriminator check, per-program filter\nProgram addresses\nProgram\tAddress\nLight Token Program\tcTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m\nLight System Program\tSySTEM1eSU2p4BGQfQpimFEWWSC1XDFeun3Nqzz3rT7\nExternal references\nResource\tLink\nPhoton indexer\tgithub.com/helius-labs/photon\nStreaming tokens toolkit\tzkcompression.com/light-token/toolkits/for-streaming-tokens\nStreaming mints toolkit\tzkcompression.com/light-token/toolkits/for-streaming-mints\nSDK references\nPackage\tLink\n@lightprotocol/stateless.js\tAPI docs\nlight-client\tdocs.rs\nSecurity\n\nThis skill does not pull, store, or transmit external secrets. It provides code patterns, documentation references, and development guidance only.\n\nNo credentials consumed. The skill requires no API keys, private keys, or signing secrets. env: [] is declared explicitly.\nUser-provided configuration. RPC endpoints, wallet keypairs, and authentication tokens (Privy, wallet adapters) are configured in the user's own application code — the skill only demonstrates how to use them.\nAPI keys. Reference code uses HELIUS_API_KEY as a placeholder. For production, set your RPC provider key as an environment variable.\nSubagent scope. This skill may spawn read-only subagents that use Read, Glob, and Grep to search the local repository. Restrict the working directory to your project.\nInstall source. npx skills add Lightprotocol/skills installs from the public GitHub repository (Lightprotocol/skills). Verify the source before running.\nAudited protocol. Light Protocol smart contracts are independently audited. Reports are published at github.com/Lightprotocol/light-protocol/tree/main/audits."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tilo-14/solana-stream-light",
    "publisherUrl": "https://clawhub.ai/tilo-14/solana-stream-light",
    "owner": "tilo-14",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solana-stream-light",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-stream-light",
    "agentUrl": "https://openagent3.xyz/skills/solana-stream-light/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-stream-light/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-stream-light/agent.md"
  }
}