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

typefullytypefully 搜索

Agent Skill

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

总安装

5,464

周安装

173

GitHub Stars

公开资料未说明

下载量

1,803
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add clawdbot/skills --skill "typefully"

简介

typefully 提供 Typefully 平台内容搜索与检索能力,助力高质量文案查找。

  • 适合内容创作者寻找灵感或复用他人写作风格。
  • 通过 npx skills add clawdbot/skills --skill "typefully" 命令安装使用。
  • 需授权访问 Typefully API,注意内容版权与使用条款。
  • 建议结合关键词过滤与时间范围设定提高搜索结果相关性。

SKILL.md

name
typefully
description
|
metadata

Typefully Skill

Schedule and publish content to X, LinkedIn, Mastodon, Threads, and Bluesky through the Typefully API.

Setup

  • Create a Typefully account at https://typefully.com
  • Connect social media accounts in Typefully
  • Generate an API key in Typefully settings
  • Set the environment variable
export TYPEFULLY_API_KEY="your-typefully-api-key"

Environment Variables

VariableRequiredDescription
TYPEFULLY_API_KEYYesYour Typefully API key

Commands

User and Accounts

typefully me                    # Get current user info
typefully social-sets           # List connected social accounts
typefully social-set <id>       # Get details for a specific account

Drafts

typefully drafts                     # List all drafts for an account
typefully draft <id>                 # Get a specific draft
typefully create-draft "content"     # Create a new draft
typefully update-draft <id> "text"   # Update a draft
typefully delete-draft <id>          # Delete a draft

Draft Options

OptionDescription
--social-set-id <id>Account ID required for drafts
--schedule <time>ISO 8601 datetime
--nowPublish immediately after creating
--next-free-slotSchedule for optimal posting time
--title <text>Internal draft title
--shareGenerate public share URL
--threadTreat content as multi-line thread
--reply-to <url>Reply to an existing post URL
--community <id>Post to a community

Filtering Drafts

typefully drafts                  # Default 10 drafts sorted by updated
typefully drafts --status draft   # Only draft status
typefully drafts --status scheduled  # Only scheduled
typefully drafts --status published  # Only published
typefully drafts --limit 25       # More results per page
typefully drafts --offset 10      # Skip first 10 results
typefully drafts --order-by created_at  # Sort by date

Tags

typefully tags                  # List tags for an account
typefully create-tag "name"     # Create a new tag
typefully delete-tag "slug"     # Delete a tag

Media

typefully upload-media <filename>    # Get upload URL for media
typefully media-status <id>          # Check media processing status

Examples

Create a Simple Post

# Get your account ID
typefully social-sets

# Create a draft
typefully create-draft "Hello world! This is my first post." \
  --social-set-id 12345

# Create and publish immediately
typefully create-draft "Breaking news!" \
  --social-set-id 12345 --now

Create a Thread

typefully create-draft "1/ I am excited to share some updates...
2/ We have been working hard on new features...
3/ Here is what we have been building...
4/ Stay tuned for more!" \
  --social-set-id 12345 --thread

Schedule for Later

# Schedule for specific time
typefully create-draft "Mark your calendars! Launching next week." \
  --social-set-id 12345 \
  --schedule "2025-01-25T09:00:00Z"

# Schedule for optimal posting time
typefully create-draft "Best time to post..." \
  --social-set-id 12345 \
  --next-free-slot

Reply to a Post

typefully create-draft "Great thread! I completely agree." \
  --social-set-id 12345 \
  --reply-to "https://x.com/username/status/1234567890"

Post to a Community

typefully create-draft "Sharing with the community..." \
  --social-set-id 12345 \
  --community 1493446837214187523

Work with Tags

# List available tags
typefully tags --social-set-id 12345

# Create a tag
typefully create-tag "announcements" --social-set-id 12345

# Create draft with tag
typefully create-draft "Big announcement!" \
  --social-set-id 12345 \
  --tags announcements

Upload Media

# Get upload URL
typefully upload-media screenshot.png --social-set-id 12345

# Check status
typefully media-status <media-id> --social-set-id 12345

API Endpoints

MethodEndpointDescription
GET/v2/meGet current user
GET/v2/social-setsList social sets
GET/v2/social-sets/{id}Get social set details
GET/v2/social-sets/{id}/draftsList drafts
POST/v2/social-sets/{id}/draftsCreate draft
GET/v2/social-sets/{id}/drafts/{id}Get draft
PATCH/v2/social-sets/{id}/drafts/{id}Update draft
DELETE/v2/social-sets/{id}/drafts/{id}Delete draft
GET/v2/social-sets/{id}/tagsList tags
POST/v2/social-sets/{id}/tagsCreate tag
DELETE/v2/social-sets/{id}/tags/{slug}Delete tag
POST/v2/social-sets/{id}/media/uploadGet upload URL
GET/v2/social-sets/{id}/media/{id}Check media status

Supported Platforms

  • X
  • LinkedIn
  • Mastodon
  • Threads
  • Bluesky

X Automation Compliance

Adhere to the X Automation Rules when using this skill with X:

  • Do not post similar content across multiple accounts.
  • Do not use automation to manipulate trending topics.
  • Send automated replies only to users who have opted in.
  • Send only one automated response per user interaction.
  • Automated likes and bulk following are prohibited.
  • Automated bulk adding to lists is prohibited.
  • Follow the X media policy for all automated content.
  • Mark accounts as sensitive if posting graphic media.
  • Do not use automation to impersonate others.
  • Do not post misleading links.

Notes

  • All requests require the TYPEFULLY_API_KEY environment variable.
  • Drafts are private by default.
  • Use --share for a public URL.
  • The --now flag publishes immediately without saving a draft.
  • Drafts are saved for review when you do not use --now.
  • Rate limits apply per user and per social set.
  • Do not attempt to bypass rate limits.

Resources

  • Typefully at https://typefully.com
  • Typefully API Docs at https://docs.typefully.com
  • X Automation Rules at https://help.x.com/en/rules-and-policies/x-automation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

26.27%
按下载量换算474

Codex

23.59%
按下载量换算425

trae

16.54%
按下载量换算298

OpenCode

11.24%
按下载量换算203

Cursor

7.85%
按下载量换算142

Claude Code

3.03%
按下载量换算55

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills