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

teleskopiqteleskopiq 搜索

Agent Skill

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

总安装

13,268

周安装

542

GitHub Stars

公开资料未说明

下载量

4,249
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install teleskopiq

简介

通过带有专门用于生产的 Markdown 标签的 GraphQL API 创建和管理 AI 生成的 YouTube 脚本、元数据、缩略图和时间表。

SKILL.md

Teleskopiq Skill

YouTube content creation platform — AI-generated scripts, metadata, and thumbnails via GraphQL API.

Setup

Set environment variables:

export TELESKOPIQ_API_KEY="tsk_..."
export TELESKOPIQ_ENDPOINT="https://teleskopiq.com/api/graphql"  # optional, this is the default

Script Content Format

Script content is Markdown with special production tags. Use all of these when writing scripts.

Structure

## Section Title
### Sub-section

Your spoken narration goes here. Write as you'd actually say it aloud.

Production Tags

These are rendered with distinct colors in the Teleskopiq editor and exported to PDF. Always use them to mark non-spoken directions:

TagSyntaxPurposeColor
B-Roll[B-ROLL: description of footage]Cut-away video footageCyan
Visual Cue[VISUAL: prop, action or camera move]On-screen action/propPurple
Graphic[GRAPHIC: text overlay or lower-third]Text overlay, title cardYellow
Music[MUSIC: track name or mood]Background music cuePink
SFX[SFX: sound effect description]Sound effect or ambientRed

Full Example

## Hook

What happens when you give an AI agent full control of your computer?

[B-ROLL: terminal window running automated scripts, fast-forward timelapse]

I tried it for 24 hours. Here's what I learned.

## The Setup

[GRAPHIC: "OpenClaw — AI Agent Framework"]

OpenClaw gives your AI access to your machine — calendar, email, terminal, browser.

[VISUAL: screen recording of OpenClaw dashboard]

Today I set it completely loose.

## What It Did Well

[MUSIC: upbeat lo-fi background]

- Scheduled my week automatically
- Organized 3 months of project files

[B-ROLL: clean desktop, organized folders]

## Where It Got Weird

[SFX: error chime]

It tried to commit code without asking.

[VISUAL: shocked face, zoom in]

## Call to Action

Would you let an AI run your computer for a day? Drop your answer in the comments.

[GRAPHIC: Subscribe button animation]

CLI Script

Located at scripts/teleskopiq.py relative to this skill directory.

SKILL_DIR="$HOME/.openclaw/workspace/skills/teleskopiq"
python3 "$SKILL_DIR/scripts/teleskopiq.py" <command> [options]

Before Writing a Script

Always fetch the channel style profile first with get-style and include it in the agent brief. This ensures the writing matches the channel's tone, vocabulary, pacing, and structure.

python3 "$SKILL_DIR/scripts/teleskopiq.py" get-style

Include the output in your writing context before using ai-write or writing content manually.


Commands

CommandDescription
get-styleFetch and display the channel's style profile
list-scriptsList all scripts with status and schedule
create-script --title "..." [--content "..."]Create a script, prints ID
generate-metadata --script-id IDStart metadata job, poll until done, print results
generate-thumbnails --script-id IDStart thumbnail jobs for all ideas
auto-schedule --script-id IDAuto-schedule to next available preferred day slot
schedule --script-id ID [--date YYYY-MM-DD] [--time HH:MM] [--status ReadyToShoot]Schedule (omit --date to auto-schedule)
ai-write --title "..." [--prompt "..."]Create a script and have Teleskopiq AI write it
full-flow --title "..." --content "..." [--date YYYY-MM-DD]Create + metadata + thumbnails + auto-schedule
full-flow --title "..." --ai-write [--prompt "..."]Same as above but AI writes the script

AI Writing

ai-write command

Creates a new script and uses Teleskopiq's AI to write it via WebSocket subscription:

python3 "$SKILL_DIR/scripts/teleskopiq.py" ai-write --title "My Video Title"
python3 "$SKILL_DIR/scripts/teleskopiq.py" ai-write --title "My Video Title" --prompt "Write a tutorial about..."

--ai-write flag on full-flow

Instead of providing --content, use --ai-write to have the AI generate the script, then continue with metadata, thumbnails, and scheduling:

python3 "$SKILL_DIR/scripts/teleskopiq.py" full-flow --title "My Video Title" --ai-write
python3 "$SKILL_DIR/scripts/teleskopiq.py" full-flow --title "My Video Title" --ai-write --prompt "Focus on beginner tips"

--prompt option

Custom instruction for the AI writer. If omitted, a default prompt is used that requests proper section headers and production tags.


Direct GraphQL Usage

All queries go to $TELESKOPIQ_ENDPOINT with header Authorization: Bearer $TELESKOPIQ_API_KEY.

List scripts

{ scripts { id title status { name } scheduledFor } }

Create script

mutation CreateScript($input: CreateScriptInput!) {
  createScript(input: $input) { id title status { name } }
}
# variables: { "input": { "title": "...", "content": "..." } }

Read script (full detail)

{ script(id: "...") {
    title status { name } scheduledFor
    metadata { titles description tags }
    thumbnailIdeas { text visual }
    thumbnails { url }
  }
}

Generate metadata (async)

mutation { startMetadataJob(scriptId: "...", scriptContent: "...") { success } }

⚠️ Async — poll script(id) query every 5s for ~30s until metadata is populated. generateScriptMetadata is deprecated — always use startMetadataJob.

Generate thumbnails (async, one per idea)

mutation { startThumbnailJob(scriptId: "...", idea: "...", ideaIndex: 0) { success } }

Run once per thumbnail idea (typically 3). Poll script(id) for thumbnails array.

Auto-schedule (server-side, uses channel's preferred publishing day)

# Normal: finds next empty preferred slot
mutation { autoScheduleScript(scriptId: "...") { scriptId scheduledFor slotsChecked bumped } }

# Urgent: takes the very next preferred slot, bumps displaced scripts forward
mutation { autoScheduleScript(scriptId: "...", urgent: true) { scriptId scheduledFor slotsChecked bumped } }
  • Default (urgent omitted or false): finds the next preferred publishing day with no script already scheduled. bumped is always 0.
  • urgent: true: takes the very next preferred day (even if occupied). Any script on that day gets cascaded to the next preferred day, and so on. bumped returns the count of displaced scripts.
  • Always prefer this over computing dates yourself.

Update / schedule script manually

mutation { updateScript(input: { id: "...", scheduledFor: "2025-03-09T12:00:00-05:00", status: ReadyToShoot }) { success } }

Status enum: Draft | InProgress | ReadyToShoot | Recorded | Editing | Ready | Published | OnIce


Async Job Polling Pattern

  1. Fire the mutation (startMetadataJob / startThumbnailJob)
  2. Wait 5 seconds
  3. Query script(id) and check if metadata / thumbnails is populated
  4. Repeat up to 6 times (30s total)
  5. If still empty, report timeout

Tips

  • Always use production tags ([B-ROLL: ...], [GRAPHIC: ...], etc.) when writing scripts — they render visually in the editor
  • Use autoScheduleScript for scheduling — don't compute dates manually
  • Content is plain Markdown; ## = section, ### = sub-section
  • generateScriptMetadata mutation is deprecated — use startMetadataJob

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.17%
按下载量换算3,619

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills