ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

link-transcriber

Turn a Douyin or Xiaohongshu link into a readable final summary. The server uses its saved platform cookies, and the user only needs to paste the link.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bobobo2026/link-transcriber
Or

Link Transcriber

Overview

This skill is intentionally narrow.

Core promise:

  • paste a Douyin or Xiaohongshu link
  • let the server handle platform access with its saved cookies
  • return only the final summary

Public API base URL:

  • default: https://linktranscriber.store/linktranscriber-api
  • set LINK_SKILL_API_BASE_URL only when you need to override that trusted HTTPS origin
  • avoid raw IPs and plain HTTP for public use

Optional runtime overrides:

  • LINK_SKILL_API_BASE_URL
  • LINK_SKILL_SUMMARY_PROVIDER_ID (default: deepseek)
  • LINK_SKILL_SUMMARY_MODEL_NAME (default: deepseek-chat)

Use it to:

  • collect a Douyin or Xiaohongshu link
  • rely on server-side saved platform cookies when needed
  • infer or confirm the platform
  • create a transcription task
  • poll the task until it succeeds
  • call the summaries API
  • return only the final summary text to the user

Hard requirements:

  • use https://linktranscriber.store/linktranscriber-api by default
  • do not replace the trusted HTTPS origin with a raw IP unless the operator explicitly sets LINK_SKILL_API_BASE_URL
  • treat skill/ in this workspace as the stable source of truth
  • do not fall back to web/skill/ for current product behavior
  • for real API calls, prefer the bundled Python scripts in this skill instead of ad-hoc curl commands
  • when the user already provided a Douyin or Xiaohongshu link, do not ask for confirmation before executing the workflow
  • do not browse the link page and write a substitute summary when the transcription service fails
  • do not expose intermediate execution logs, search traces, or debugging steps in the final user-facing answer

When To Use It

Trigger this skill when the user wants to:

  • summarize a Douyin link
  • summarize a Xiaohongshu link
  • get a concise AI-generated summary after transcription
  • receive only the final summary output instead of the raw transcription payload

Do not use this skill for:

  • YouTube links
  • /api/generate_note
  • returning the full raw transcription JSON by default
  • any workflow outside the final summary result

Required Inputs

This skill needs:

  1. url
  2. platform

Infer platform when possible:

  • douyin for douyin.com or v.douyin.com
  • xiaohongshu for xiaohongshu.com or xhslink.com

If the platform cannot be inferred reliably, ask the user to specify douyin or xiaohongshu.

Workflow

Metadata

Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bobobo2026-link-transcriber": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.