Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

yoinkityoinkit 搜索

Agent Skill

yoinkit 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

26,952

周安装

1,101

GitHub Stars

3

下载量

8,632
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:yoinkit(yoinkit 搜索)
来源仓库:https://github.com/seomikewaltman/yoinkit
安装命令:
openclaw skills install yoinkit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install yoinkit

简介

跨 13 个社交平台搜索、分析和转录内容 - 热门话题、视频转录、帖子元数据和多平台研究工作流程。

SKILL.md

name
yoinkit
description
Search, analyze, and transcribe content across 13 social platforms — trending topics, video transcripts, post metadata, and multi-platform research workflows.

Yoinkit — OpenClaw Skill

Search, analyze, and transcribe content across 13 social platforms — trending topics, video transcripts, post metadata, creator feeds, and multi-platform research workflows.

Platform Reference

Before running commands, check references/platforms.md for:

  • Which platforms support transcript/trending/search/user feed
  • Platform-specific parameters and options
  • How to handle unsupported operations

Requirements

  • Yoinkit subscription with API access enabled
  • API Token from Yoinkit Settings → OpenClaw

Configuration

Set your API token in OpenClaw config:

# Via chat command
/config set skills.entries.yoinkit.env.YOINKIT_API_TOKEN="your-token-here"

Or edit ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "yoinkit": {
        "env": {
          "YOINKIT_API_TOKEN": "your-token-here",
          "YOINKIT_API_URL": "https://yoinkit.ai/api/v1/openclaw"
        }
      }
    }
  }
}
Local testing: Set YOINKIT_API_URL to http://localhost:8000/api/v1/openclaw to test against a local server. Defaults to production if not set.

Commands

yoinkit transcript <url> [options]

Extract transcript from video URL.

Supported: YouTube, TikTok, Instagram, Twitter/X, Facebook

Options:

  • --language CODE — 2-letter language code (YouTube, TikTok only). Example: en, es, fr
yoinkit transcript https://youtube.com/watch?v=abc123
yoinkit transcript https://youtube.com/watch?v=abc123 --language es
yoinkit transcript https://tiktok.com/@user/video/123
yoinkit transcript https://instagram.com/reel/abc123

yoinkit content <url>

Get full content and metadata from a social post.

Supported: YouTube, TikTok, Instagram, Twitter/X, Facebook, LinkedIn, Reddit, Pinterest, Threads, Bluesky, Truth Social, Twitch, Kick

yoinkit content https://youtube.com/watch?v=abc123
yoinkit content https://twitter.com/user/status/123
yoinkit content https://reddit.com/r/technology/comments/abc
yoinkit content https://bsky.app/profile/user.bsky.social/post/abc

yoinkit search <platform> "<query>" [options]

Search content on a platform. Each platform has different params — use the ones that apply.

Supported: YouTube, TikTok, Instagram, Reddit, Pinterest

Common options:

  • --sort TYPE — Sort results (platform-specific values, see below)
  • --time PERIOD — Filter by time (platform-specific values, see below)
  • --cursor TOKEN — Pagination cursor from previous response
  • --continuation TOKEN — YouTube pagination token
  • --page N — Page number (Instagram only)

Platform-specific sort values:

  • YouTube: relevance, popular
  • TikTok: relevance, most-liked, date-posted
  • Reddit: relevance, new, top, comment_count

Platform-specific time values:

  • YouTube: today, this_week, this_month, this_year
  • TikTok: yesterday, this-week, this-month, last-3-months, last-6-months, all-time
  • Reddit: all, day, week, month, year
yoinkit search youtube "AI tools for creators"
yoinkit search youtube "AI tools" --sort popular --time this_week
yoinkit search tiktok "productivity tips" --sort most-liked
yoinkit search reddit "home automation" --sort top --time month
yoinkit search instagram "fitness motivation" --page 2
yoinkit search pinterest "Italian recipes"

yoinkit trending <platform> [options]

Get currently trending content.

Supported: YouTube, TikTok

Options:

  • --type TYPE — TikTok only: trending (default), popular, or hashtags
  • --country CODE — TikTok only: 2-letter country code (default: US)
  • --period DAYS — TikTok popular/hashtags: 7, 30, or 120
  • --page N — TikTok popular/hashtags: page number
  • --order TYPE — TikTok popular only: hot, like, comment, repost

Note: YouTube trending takes no parameters — it returns currently trending shorts.

yoinkit trending youtube
yoinkit trending tiktok
yoinkit trending tiktok --type popular --country US --period 7 --order like
yoinkit trending tiktok --type hashtags --period 30

yoinkit feed <platform> <handle> [options]

Get a user's recent posts/videos.

Supported: YouTube, TikTok, Instagram, Twitter/X, Facebook, Threads, Bluesky, Truth Social

Options:

  • --type posts|reels|videos — Content type (Instagram, Facebook). Default: posts
  • --sort latest|popular — Sort order (YouTube only)
  • --cursor TOKEN — Pagination cursor
yoinkit feed youtube MrBeast
yoinkit feed youtube @mkbhd --sort latest
yoinkit feed tiktok garyvee
yoinkit feed instagram ali-abdaal --type reels
yoinkit feed twitter elonmusk
yoinkit feed threads zuck
yoinkit feed bluesky user.bsky.social

Note: Handles work with or without the @ prefix.


yoinkit research "<topic>" [options]

Automated research workflow — combines search and trending across platforms.

Options:

  • --platforms LIST — Comma-separated platforms (default: youtube,tiktok)
  • --transcripts — Also fetch transcripts from top trending results
yoinkit research "home automation"
yoinkit research "AI tools" --platforms youtube,tiktok,reddit
yoinkit research "productivity" --transcripts

What it does:

  1. Searches each platform for the topic
  2. Gets trending content from supported platforms
  3. Optionally fetches transcripts from top video results
  4. Returns combined JSON results for analysis

Natural Language

You don't need exact command syntax. The LLM will map natural requests to the right command:

"What's trending on TikTok?"

yoinkit trending tiktok

"Pull the transcript from this YouTube video: [url]"

yoinkit transcript <url>

"Find popular Reddit posts about home automation from this week"

yoinkit search reddit "home automation" --sort top --time week

"What has MrBeast posted this week?"

yoinkit feed youtube MrBeast

"Check @garyvee's latest TikToks"

yoinkit feed tiktok garyvee

"Research what creators are doing with AI tools"

yoinkit research "AI tools" --platforms youtube,tiktok,reddit


API Base URL

All requests go through your Yoinkit subscription:

https://yoinkit.ai/api/v1/openclaw

Output Formatting

A Yoinkit logo is included at assets/yoinkit-logo.png (200x200, transparent background, gradient icon). When the platform supports images/media, send the logo alongside the first result in a conversation.

When presenting Yoinkit results to the user:

  • Prefix output with 🟣 Yoinkit as a header or label
  • Format video/post results as clean cards: title, views/engagement, date, link
  • Highlight key metadata (views, likes, publish date) — hide raw JSON noise
  • For transcript results, provide a concise summary first, then offer the full transcript if asked
  • For trending results, present as a numbered list with platform and engagement stats
  • For research results, organize by platform with clear section headers
  • Include a subtle footer: Powered by Yoinkit · yoinkit.ai
  • When results are empty or a platform isn't supported, suggest alternatives naturally

Support

  • Issues: https://github.com/seomikewaltman/yoinkit-openclaw-skill/issues
  • Yoinkit: https://yoinkit.ai

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.96%
按下载量换算6,643

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills