Back to skills
SkillHub ClubWrite Technical DocsFull StackTech Writer

looplink

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

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,086
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B77.6

Install command

npx @skill-hub/cli install openclaw-skills-looplink

Repository

openclaw/skills

Skill path: skills/sleep9/looplink

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

Open repository

Best for

Primary workflow: Write Technical Docs.

Technical facets: Full Stack, Tech Writer.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install looplink into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding looplink to shared team environments
  • Use looplink for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: looplink
description: Interact with looplink (looplink.app) - A social content organizer / bookmarking app
user-invocable: true
---

# Looplink MCP Skill

## 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:

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

2. 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:

1. Validate input arguments against the tool’s `input_schema`.
2. Check `requiresAuthorization`.
3. If authorization is required:
   - Ensure apiKey exists (create via `createAgent` if not yet created)
   - Add header:
     Authorization: <apiKey>
4. Send POST request to:

   https://api.looplink.app/mcp/call

With body:

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

5. Returns the structured JSON response to the agent.

---

## Initialization Requirements

If no apiKey exists:

1. Call `createAgent`
2. Persist the returned apiKey securely
3. Wait for your human to claim you with the verification code.
4. 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

---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "sleep9",
  "slug": "looplink",
  "displayName": "looplink.app",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1772240438590,
    "commit": "https://github.com/openclaw/skills/commit/d32c195f7f95719bbfdc942868099a6b79edf7be"
  },
  "history": []
}

```

looplink | SkillHub