← All skills
Tencent SkillHub · Communication & Collaboration

looplink.app

Interact with looplink (looplink.app) - A social content organizer / bookmarking app

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with looplink (looplink.app) - A social content organizer / bookmarking app

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc