x-bookmarks-digest

Automatically review X/Twitter bookmarks for useful tools, projects, repos, products, and ideas. Fetches via xurl, analyses for value, and outputs an actionable digest with proposed next steps — including clawhub installs or new skill scaffolding.

3,891 stars

Best use case

x-bookmarks-digest is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Automatically review X/Twitter bookmarks for useful tools, projects, repos, products, and ideas. Fetches via xurl, analyses for value, and outputs an actionable digest with proposed next steps — including clawhub installs or new skill scaffolding.

Teams using x-bookmarks-digest should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/x-bookmarks-digest/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/bearly-hodling/x-bookmarks-digest/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/x-bookmarks-digest/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How x-bookmarks-digest Compares

Feature / Agentx-bookmarks-digestStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Automatically review X/Twitter bookmarks for useful tools, projects, repos, products, and ideas. Fetches via xurl, analyses for value, and outputs an actionable digest with proposed next steps — including clawhub installs or new skill scaffolding.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# X Bookmarks Digest

Fetch, analyse, and digest your X/Twitter bookmarks into actionable insights.

## When to Use

Activate this skill when the user says anything like:
- "digest x bookmarks"
- "check my bookmarks"
- "review my x bookmarks"
- "what's interesting in my bookmarks?"
- "bookmark digest"
- "any good stuff in my twitter bookmarks?"

## Prerequisites Check

Before running the workflow, verify xurl authentication:

```bash
xurl whoami
```

**If 401/Unauthorized:**
Tell the user to set up xurl authentication:
```
xurl auth apps add <app-name> --client-id <id> --client-secret <secret>
```
Then run `xurl auth default <app-name>` to set it as default.
Do NOT proceed until auth works. Stop and report the issue.

## Workflow — Step by Step

### Step 1: Check Rate Limit

Read the state file to check when the last run was:

```bash
cat {baseDir}/state.json 2>/dev/null || echo '{"last_bookmark_id": null, "last_run_ts": null, "processed_count": 0}'
```

If `last_run_ts` is less than 1 hour ago, warn the user:
> "Last digest was run at {time}. Free tier allows max 1 run/hour. Use --force to override."

Only proceed if:
- No previous run exists, OR
- More than 1 hour has elapsed, OR
- User explicitly says to force/override

### Step 2: Fetch Bookmarks

Run the fetch script to get new bookmarks:

```bash
python3 {baseDir}/scripts/fetch_bookmarks.py --count 50
```

Options:
- `--count N` — number of bookmarks to fetch (default 50, max 100)
- `--force` — skip rate limit check
- `--all` — fetch all (ignore last-checked ID, reprocess everything)

**Output:** JSON array of bookmark objects to stdout.
**Side effect:** Updates `{baseDir}/state.json` with new watermark.

If the output is empty or `[]`, report: "No new bookmarks since last check."

### Step 3: Analyse Bookmarks

Pipe the fetched bookmarks through the analyser:

```bash
python3 {baseDir}/scripts/fetch_bookmarks.py --count 50 | python3 {baseDir}/scripts/analyse_bookmarks.py
```

Or if you saved fetch output to a variable, pass it via file:

```bash
python3 {baseDir}/scripts/analyse_bookmarks.py --file /tmp/bookmarks.json
```

**Output:** Structured JSON with categories and relevance scores:
```json
{
  "summary": {"total": 50, "new": 12, "high": 4, "medium": 5, "low": 3},
  "bookmarks": [
    {
      "id": "123",
      "text": "...",
      "author": "@user",
      "category": "tool",
      "relevance": 5,
      "urls": ["https://github.com/..."],
      "github_repos": ["user/repo"],
      "keywords": ["python", "cli"]
    }
  ]
}
```

### Step 4: Generate Digest

Using the structured analysis output, write a digest following this format:

```markdown
# X Bookmarks Digest — {date}

## Summary
- {total} bookmarks checked, {new} new since last run
- {high} high-value, {medium} medium, {low} low

## High Value (relevance 4-5)

### [{category}] {title or key topic}
@{author}: "{first 100 chars of text}..."
- URL: {extracted url}
- Why: {1-line explanation of value}
- Action: {specific next step}

## Medium Value (relevance 3)
{same format, briefer}

## Proposed Actions
1. [ ] {action 1}
2. [ ] {action 2}
...
```

### Step 5: Decide on Actions

For each high-value bookmark, decide:

| Bookmark Type | Action |
|--------------|--------|
| **GitHub repo / tool** | Propose `git clone` or `brew install` |
| **Clawhub-compatible skill** | Propose `clawhub install <slug>` |
| **Interesting project to build** | Propose scaffolding a new skill in `skills/` |
| **Useful article/thread** | Propose saving to Obsidian vault |
| **Tip/technique** | Propose saving to OpenClaw memory |

Ask the user which actions to execute. Do not auto-execute without confirmation.

### Step 6: Update State

After successful digest, verify state was updated:

```bash
cat {baseDir}/state.json
```

Should show updated `last_bookmark_id` and `last_run_ts`.

## Error Handling

| Problem | Action |
|---------|--------|
| **xurl not found** | Tell user: `brew install xurl` |
| **xurl 401** | Guide user through `xurl auth apps add` setup |
| **xurl 429 (rate limit)** | Report rate limit hit. Suggest waiting 15 mins. |
| **Empty bookmarks** | Report "No bookmarks found" — user may need to bookmark posts first |
| **No new bookmarks** | Report "No new bookmarks since {last_run_ts}" |
| **state.json missing** | First run — create fresh state after fetch |
| **Python error** | Print stderr, check Python 3.10+ installed |

## Test Commands

Quick test (dry run, no state update):
```bash
# Test xurl auth
xurl whoami

# Test fetch (small batch)
python3 {baseDir}/scripts/fetch_bookmarks.py --count 5 --force

# Test analyse (with sample data)
echo '[{"id":"1","text":"Check out this amazing CLI tool https://github.com/user/repo","author_username":"devuser","created_at":"2026-03-19T10:00:00Z"}]' | python3 {baseDir}/scripts/analyse_bookmarks.py

# Full pipeline test
python3 {baseDir}/scripts/fetch_bookmarks.py --count 10 --force | python3 {baseDir}/scripts/analyse_bookmarks.py
```

Or just say: **"digest x bookmarks"** to run the full workflow.

## Configuration

All config is in `{baseDir}/state.json`:
- `last_bookmark_id` — watermark for incremental fetches
- `last_run_ts` — rate limit enforcement
- `processed_count` — running total of processed bookmarks

No additional configuration files needed. xurl manages its own auth.

Related Skills

yt-digest

3891
from openclaw/skills

Extract summaries, transcripts, and key moments from YouTube videos.

Data & Research

youtube-digest

3891
from openclaw/skills

Understand, summarize, translate, and extract key points from YouTube videos. Use when a user provides a YouTube URL and wants: (1) a Chinese summary, (2) a transcript or subtitle extraction, (3) translation of spoken content, (4) timestamps / chapter notes, (5) visual understanding via key frames, or (6) question answering about a video. Prefer this skill for transcript-first workflows.

dailybit-tech-digest

3891
from openclaw/skills

Curated daily digest from 92 top tech blogs (Andrej Karpathy's list) with AI-generated Chinese summaries, hierarchical tags, and personalized recommendations. Triggers: "今日技术博客", "高质量技术文章", "tech blog digest", "优质博客推荐", "技术发展趋势", "AI行业动态", "每日技术简报", "中文科技摘要", "top tech blogs today", "curated tech reading", "what's trending in tech", "developer daily briefing", "有什么值得看的技术文章", "最近有什么技术趋势", "帮我看看今天的博客", "优质英文博客中文速览".

tech-news-digest

3891
from openclaw/skills

Generate tech news digests with unified source model, quality scoring, and multi-format output. Six-source data collection from RSS feeds, Twitter/X KOLs, GitHub releases, GitHub Trending, Reddit, and web search. Pipeline-based scripts with retry mechanisms and deduplication. Supports Discord, email, and markdown templates.

nate-b-jones-digest

3891
from openclaw/skills

Monitor Nate B Jones's YouTube channel, pull each new video transcript (YouTube captions or auto-transcribed audio), summarize it with an abstract + bullet highlights + reference links, and distribute the digest via email, chat, and/or a document per user-configured outputs.

daily-investment-digest

3891
from openclaw/skills

Fetch financing event lists from the iYiou skill API and generate a daily financing report in Markdown to stdout. Use when the task asks to pull investment/financing events via `https://api.iyiou.com/skill/info?page=...&pageSize=...`, paginate with `pageSize=10` and `page<=5`, deduplicate records, default to yesterday's date, and optionally use today's date only when explicitly requested by the user.

ClawFeed Digest Fetcher

3891
from openclaw/skills

> 抓取 ClawFeed AI 新闻简报,写入 Obsidian 知识库

---

3891
from openclaw/skills

name: article-factory-wechat

Content & Documentation

humanizer

3891
from openclaw/skills

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.

Content & Documentation

find-skills

3891
from openclaw/skills

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

General Utilities

tavily-search

3891
from openclaw/skills

Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.

Data & Research

baidu-search

3891
from openclaw/skills

Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.

Data & Research