โ† All skills
Tencent SkillHub ยท Communication & Collaboration

ADHD X Bookmark Analyzer

Automatically scrapes, categorizes, and summarizes your X bookmarks into actionable insights delivered to your preferred messaging channel for easy review.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Automatically scrapes, categorizes, and summarizes your X bookmarks into actionable insights delivered to your preferred messaging channel for easy review.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, bookmark-rules.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

ADHD X Bookmark Analysis

Your bookmarks are a graveyard. This brings them back to life.

What This Skill Does

You bookmark 50 tweets a day. You read maybe 2. That thread about the $200K agency architecture? Buried. The AI tool that would save you hours? Forgotten. This skill turns your X bookmark chaos into actionable intelligence. Your agent scrapes your bookmarks, categorizes them by topic, extracts the key insights, and delivers a summary to your preferred channel. No more bookmark graveyards. No more "I saved something about that..." Just organized, searchable knowledge from everything you thought was worth saving. Built for ADHD brains who collect everything and process nothing.

Capabilities

โœ… Automatic X bookmark scraping (scheduled or on-demand) โœ… Smart categorization by topic (AI, business, tools, threads) โœ… Key insight extraction from threads and long-form content โœ… Channel delivery (Discord, Slack, Telegram, or file-only) โœ… Searchable archive of everything you saved

X Authentication (Required)

Option A: bird CLI (Recommended) # Install bird CLI npm install -g bird-cli # Authenticate (opens browser for OAuth) bird login # Verify access bird whoami bird bookmarks --limit 5 Credentials are stored securely in ~/.bird/ by the CLI. The skill never handles raw tokens directly. Option B: Browser Session (Advanced) If you prefer browser cookies: Log into X in Chrome/Safari OpenClaw's browser tool can access your session Less reliable than bird CLI โ€” session expires, requires re-login โš ๏ธ Security Note: Never paste raw session cookies into config files. Use bird CLI for persistent, secure auth.

Message Delivery (Optional)

To receive summaries in Discord/Slack/Telegram, configure via environment variables (not plaintext files): # Discord (using OpenClaw's built-in message tool) # No extra config needed โ€” just specify channel ID in your prompt # Or use a webhook (store securely): export BOOKMARK_DISCORD_WEBHOOK="https://discord.com/api/webhooks/..." # Slack export BOOKMARK_SLACK_WEBHOOK="https://hooks.slack.com/services/..." The skill reads these from environment. Never commit webhooks to files.

Installation

clawhub install adhd-bookmark-analyzer Or manually copy to your workspace: ~/.openclaw/workspace/skills/adhd-bookmark-analyzer/ โ”œโ”€โ”€ SKILL.md # This file (instructions for your agent) โ”œโ”€โ”€ bookmark-rules.md # Categorization logic & settings

On-Demand Analysis

Just ask your agent: "Analyze my X bookmarks from this week" "What did I bookmark about AI agents?" "Summarize my bookmarks and send to Discord" The agent will: Run bird bookmarks to fetch your saves Categorize and extract insights per bookmark-rules.md Deliver summary to your specified channel (or just reply inline)

Scheduled Daily Reports

Add to your agent's cron schedule (via OpenClaw cron or HEARTBEAT.md): # Daily at 9 AM: Analyze yesterday's bookmarks "Check my X bookmarks from the last 24 hours, categorize them, and post summary to Discord channel 123456789"

Search Your Archive

"Search my bookmark archive for 'pricing strategy'" The agent searches bookmark-archive/ and returns matching entries with context.

Example Output

๐Ÿ“š X Bookmark Summary โ€” Feb 15, 2026 You saved 18 bookmarks in the last 24 hours: ๐Ÿค– AI & Tech Tools (7) โ€ข New Claude API pricing ($0.25/M output tokens) โ€ข OpenClaw 0.7.0 release notes โ€ข Thread on RAG vs fine-tuning tradeoffs ๐Ÿ’ผ Business & Strategy (5) โ€ข How @username built $50K MRR with AI agents โ€ข Pricing psychology thread (15 tactics) โ€ข Case study: AI replacing $200K/year ops role ๐Ÿ”ง Development & Code (4) โ€ข Python async patterns for LLM calls โ€ข GitHub repo: AI code review automation ๐Ÿ“– Threads Worth Reading (2) โ€ข @username's 20-tweet thread on AI safety โ€ข Founder story: 0 to $1M in 8 months

Categorization

Default categories in bookmark-rules.md: CategoryMatchesAI & Tech ToolsProduct launches, tool reviews, API updatesBusiness & StrategyGrowth tactics, pricing, case studiesDevelopment & CodeCode snippets, repos, technical threadsThreads Worth ReadingLong-form content, storytellingResourcesBooks, courses, guides, listsOtherDoesn't fit above Customize by editing bookmark-rules.md: categories: - name: "Indie Hacking" keywords: ["indie hacker", "SaaS", "MRR", "bootstrap"] - name: "Crypto Alpha" keywords: ["alpha", "degen", "airdrop", "farming"]

File Structure

After running, the skill creates: ~/.openclaw/workspace/skills/adhd-bookmark-analyzer/ โ”œโ”€โ”€ SKILL.md # Instructions (this file) โ”œโ”€โ”€ bookmark-rules.md # Categories & settings โ””โ”€โ”€ bookmark-archive/ # Created by agent โ”œโ”€โ”€ 2026-02-15.json # Daily snapshots โ””โ”€โ”€ index.json # Searchable index

Security Notes

Authentication: Use bird login for X access. Credentials stored in ~/.bird/, managed by the CLI. Webhooks: Store Discord/Slack webhook URLs in environment variables, not config files: export BOOKMARK_DISCORD_WEBHOOK="https://..." Data Storage: Bookmark archives are stored locally in your workspace. No data is sent to external services except your configured delivery channel. Permissions: The skill only reads your bookmarks and writes to your local archive. It does not post to X, modify bookmarks, or access DMs.

Troubleshooting

"No bookmarks found" bird whoami # Check auth bird bookmarks --limit 1 # Test access Categories seem wrong Edit keywords in bookmark-rules.md Add domain-specific terms for your niche Want file-only (no notifications) Just don't configure a webhook Ask agent to "save to archive only"

Tips

Bookmark liberally โ€” The skill handles organization Review weekly โ€” Skim the summaries, dig into what matters Customize categories โ€” Match your actual interests Use search โ€” Your archive becomes a second brain The goal: Make the good stuff findable when you need it. Not inbox zero for bookmarks โ€” just signal over noise.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs
  • SKILL.md Primary doc
  • bookmark-rules.md Docs
  • README.md Docs