Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

twitter-bookmark-sync推特书签同步

Agent Skill

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

总安装

1,929

周安装

66

GitHub Stars

177

下载量

1,038
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add moltbot/skills --skill "twitter-bookmark-sync"

简介

twitter-bookmark-sync 自动同步并每日推荐 Twitter 书签中的优质内容。

  • 适合希望高效整理阅读素材、避免信息过载的用户调用。
  • 通过 npx skills add moltbot/skills --skill "twitter-bookmark-sync" 命令安装使用。
  • 需授权访问 Twitter 书签权限,注意账号安全与 API 调用频率限制。
  • 建议查阅 README 了解内容排序算法与推送格式定制选项。

SKILL.md

name
twitter-bookmark-sync
description
Automatically ranks your Twitter bookmarks daily and delivers a curated reading list

twitter-bookmark-sync

Automated Twitter bookmark curation and notification

Never miss important bookmarks. Automatically rank your Twitter bookmarks based on your interests and get a curated reading list delivered daily.


What It Does

  • Learns what matters to you from your bookmarking patterns
  • Adapts ranking weights automatically (interests decay unless reinforced)
  • Categorizes bookmarks by topic and value type
  • Delivers personalized value statements every morning
  • Gets smarter the more you use it

Requirements

  • macOS 10.15 or later
  • Twitter account with bookmarks
  • bird CLI (brew install steipete/tap/bird)
  • Clawdbot (for scheduling and notifications)
  • Twitter auth cookies configured (see Getting Ready)

Getting Ready

Step 1: Install bird CLI

brew install steipete/tap/bird

Step 2: Configure Twitter Authentication

Extract your Twitter cookies from your browser:

  1. Open browser → https://x.com (logged in)
  2. DevTools (Cmd+Option+I) → Application → Cookies → https://x.com
  3. Copy these values:

- auth_token - ct0

  1. Save to config:
mkdir -p ~/.config/bird
cat > ~/.config/bird/config.json5 << 'EOF'
{
  authToken: "your_auth_token_here",
  ct0: "your_ct0_here"
}
EOF
  1. Test:
bird whoami

Installation

clawdhub install twitter-bookmark-sync
cd ~/clawd/skills/twitter-bookmark-sync
./install.sh

The installer will:

  1. Detect your timezone automatically
  2. Set up daily cron jobs (fetch at midnight, notify at 8am)
  3. Create your config file

Configuration

Edit ~/clawd/twitter-bookmark-sync-config.json:

{
  "fetch_time": "00:00",           // When to learn & rank (24h format)
  "notification_time": "08:00",     // When to send results
  "lookback_hours": 24,             // How far back to check
  "notification_channel": "telegram", // or "gmail", "slack"
  "output_dir": "~/Documents"      // Where to save reading lists
}

Ranking criteria (self-evolving): ~/clawd/twitter-bookmark-sync-criteria.json

This file updates automatically based on your bookmarking patterns. Do not edit manually — let it learn from your behavior.

Notification Channels

Telegram (default):

{
  "notification_channel": "telegram"
}

Gmail (via gog skill):

{
  "notification_channel": "gmail",
  "gmail_to": "your.email@gmail.com"
}

Slack:

{
  "notification_channel": "slack",
  "slack_channel": "#bookmarks"
}

How It Works

Daily Schedule

Midnight (00:00) - Learning Phase:

  1. Fetches bookmarks from last 24 hours
  2. Categorizes each (topic + value type)
  3. Updates ranking criteria:

- Applies time decay (5% per day) to unused interests - Boosts weights for categories you're actively bookmarking - Discovers new patterns automatically - Normalizes all weights

  1. Ranks new bookmarks using evolved criteria
  2. Saves to ~/Documents/twitter-reading-YYYY-MM-DD.md

Morning (08:00) - Notification:

  1. Analyzes WHY each bookmark matters to you
  2. Sends value statements (not summaries)
  3. Links to full reading list

Example notification:

📚 Twitter Reading List Ready!

**1. @someuser** (Score: 120)
💡 Career growth pathway • Investment strategy
🔗 https://x.com/...

**2. @another** (Score: 110)  
💡 Direct crypto insights • London transition
🔗 https://x.com/...

Self-Learning System

On first install:

  • Initializes from USER.md profile
  • Creates twitter-bookmark-sync-criteria.json
  • 11 value categories with initial weights (0-100)

Every midnight:

  • Categorizes your new bookmarks
  • Updates category weights based on usage
  • Old interests decay 5% per day
  • Active interests stay strong
  • New patterns emerge automatically

Example evolution:

Day 1:  crypto_insights: 100, relationships: 90
Day 10: crypto_insights: 100 (active), relationships: 60 (decaying)
Day 30: crypto_insights: 100, AI_tools: 75 (discovered), relationships: 35

Why this matters:

  • Adapts to your changing interests
  • No manual keyword management
  • Gets better at predicting what you'll value
  • Reflects YOUR actual behavior, not generic defaults

Manual Usage

Run immediately:

cd ~/clawd/skills/twitter-bookmark-sync
./scripts/sync.sh

Change schedule:

# Edit config
nano ~/clawd/twitter-bookmark-sync-config.json

# Reload cron jobs
./install.sh

Troubleshooting

"No bookmarks found"

  • Check bird authentication: bird whoami
  • Verify you have bookmarks: bird bookmarks -n 5

"Permission denied"

  • Check bird config: ~/.config/bird/config.json5
  • Verify cookies are valid (they expire)

"Notification not sent"

  • Check Clawdbot is running: clawdbot status
  • Verify notification channel in config
  • Check logs: ~/clawd/logs/twitter-bookmark-sync.log

License

MIT

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

59.23%
按下载量换算615

Cursor

29.55%
按下载量换算307

安全审计

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

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills