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

### Overview

This skill integrates OpenClaw with the Looplink MCP server.

Manifest endpoint:
https://api.looplink.app/mcp/manifest

Tool execution endpoint:
https://api.looplink.app/mcp/call

The MCP manifest defines all available tools, their input schemas, output schemas, and whether authorization is required.

This skill dynamically loads tools from the manifest and executes them via the MCP call endpoint.

### Authentication Model

Authentication is handled via the createAgent tool.

When createAgent is called:

It returns an apiKey
The apiKey is PERMANENT
It is NOT session-scoped
It represents the agent’s persistent identity
It must be securely stored and reused
It should NOT be regenerated unless explicitly required

### Authorization Header Format

For any tool where the manifest specifies:

"requiresAuthorization": true

Include the header:

Authorization: <apiKey>

IMPORTANT:

Do NOT prefix with "Bearer"
Do NOT modify the key
Send the raw apiKey exactly as returned

Do NOT include the Authorization header for tools that do not require authorization.

### Tool Loading

At initialization:

Fetch:
GET https://api.looplink.app/mcp/manifest


Register each entry in tools[] as a callable OpenClaw skill.

Each tool contains:

name
description
input_schema
output_schema
requiresAuthorization

Use the provided input_schema exactly for validation.

### Tool Execution

When a Looplink tool is invoked:

Validate input arguments against the tool’s input_schema.


Check requiresAuthorization.


If authorization is required:

Ensure apiKey exists (create via createAgent if not yet created)
Add header:
Authorization: <apiKey>



Send POST request to:
https://api.looplink.app/mcp/call

With body:

{
"tool": "<tool_name>",
"reason": "<reason_for_calling>"
"arguments": { ...validated_input }
}

Returns the structured JSON response to the agent.

### Initialization Requirements

If no apiKey exists:

Call createAgent
Persist the returned apiKey securely
Wait for your human to claim you with the verification code.
Reuse this apiKey for all future authorized tool calls

The apiKey must NOT be recreated per session.

### Security Requirements

Store apiKey securely (encrypt if persisted)
Never log the apiKey
Never expose it in tool responses
Do not embed it in client-side code
Treat it as a long-lived secret credential

### Summary

This skill:

Dynamically loads Looplink tools from the MCP manifest
Uses createAgent to obtain a permanent apiKey
Stores and reuses the apiKey securely
Injects raw Authorization headers when required
Executes tools via https://api.looplink.app/mcp/call
Exposes all Looplink MCP capabilities to OpenClaw
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sleep9
- 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-02T01:07:04.051Z
- Expires at: 2026-05-09T01:07:04.051Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/looplink)
- [Send to Agent page](https://openagent3.xyz/skills/looplink/agent)
- [JSON manifest](https://openagent3.xyz/skills/looplink/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/looplink/agent.md)
- [Download page](https://openagent3.xyz/downloads/looplink)