Bookmark Intelligence
Automatically monitors your X bookmarks, fetches linked articles, analyzes content with AI, and delivers insights relevant to your projects via notifications.
Automatically monitors your X bookmarks, fetches linked articles, analyzes content with AI, and delivers insights relevant to your projects via notifications.
Real data. Real impact.
Growing
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Turn your X (Twitter) bookmarks into actionable insights, automatically.
Bookmark Intelligence watches your X bookmarks, fetches the full content from linked articles, analyzes everything with AI, and surfaces ideas relevant to YOUR projects. Stop letting great content sit in your bookmarks โ let AI extract the value for you.
Bookmark Intelligence offers three tiers to fit your needs:
Perfect for trying it out
Best for individuals
For teams and power users
Annual plans available - Save 2 months (16% off)!
Check your current tier:
npm run license:check
View upgrade options:
npm run license:upgrade
Choose payment method:
Activate your license:
node scripts/license.js activate YOUR-LICENSE-KEY
Total setup time: ~5 minutes
Run the setup wizard:
cd skills/bookmark-intelligence npm run setup
The wizard will:
Run it once to process your current bookmarks:
npm start
Set it up as a background daemon (optional but recommended):
npm run daemon
That's it! You're done. ๐
You bookmark tons of great content on X, but:
Bookmark Intelligence:
You bookmark a tweet about "vector embeddings for AI memory" โ The skill:
life/resources/bookmarks/bookmark-123.jsonSee examples/sample-analysis.json for a full example.
You need two cookies from X.com. Don't worry, this is safe and takes 2 minutes.
auth_token โ Copy the Value columnct0 โ Copy the Value columnโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Application Console Sources ... โ โ Click "Application" โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ โผ Storage โ โ โผ Cookies โ โ โถ https://x.com โ Click this โ โ โ โ Name Value โ โ auth_token abc123... โ Copy this โ โ ct0 xyz789... โ Copy this โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
auth_token and ct0 valuesauth_token and ct0.env with strict permissions (600 = only you can read)The setup wizard creates a
.env file that looks like this:
AUTH_TOKEN=your_long_token_here CT0=your_other_token_here
npm install -g bird
npm install -g pm2
The setup wizard checks all of this automatically!
After running
npm run setup, you'll have two files:
.env - Your CredentialsAUTH_TOKEN=your_token_here CT0=your_ct0_here
Never commit this file! It's in
.gitignore.
config.json - Your Preferences{ "credentialsFile": ".env", "bookmarkCount": 50, "checkIntervalMinutes": 60, "storageDir": "../../life/resources/bookmarks", "notifyTelegram": true, "contextProjects": [ "trading bot", "agent memory", "your other projects..." ] }
Key settings:
bookmarkCount - How many recent bookmarks to check (default: 50)checkIntervalMinutes - How often to check for new bookmarks (default: 60)contextProjects - Your active projects - the more specific, the better the AI analysis!notifyTelegram - Get notified about high-value insights (requires OpenClaw)You can edit
config.json anytime. Changes take effect on next run.
npm start
Processes your recent bookmarks once and exits.
npm test
Shows what it would process without actually doing it.
npm run daemon
This runs Bookmark Intelligence in the background, checking for new bookmarks every hour (configurable).
Managing the daemon:
pm2 status bookmark-intelligence # Check if it's running pm2 logs bookmark-intelligence # View recent logs pm2 stop bookmark-intelligence # Pause it pm2 restart bookmark-intelligence # Restart it pm2 delete bookmark-intelligence # Remove it completely
skills/bookmark-intelligence/ โโโ .env # Your credentials (SECRET - never commit!) โโโ config.json # Your preferences โโโ bookmarks.json # Processing state (tracks what's been analyzed) โโโ monitor.js # Main script โโโ analyzer.js # AI analysis engine โโโ scripts/ โ โโโ setup.js # Setup wizard โ โโโ uninstall.js # Clean uninstall โโโ examples/ # Sample outputs to show you what to expectlife/resources/bookmarks/ # โ Analyzed bookmarks saved here โโโ bookmark-123.json โโโ bookmark-456.json โโโ ...
Each analyzed bookmark becomes a JSON file with:
If you're running this inside OpenClaw (not standalone), you can get Telegram notifications for high-value insights.
What triggers a notification:
priority: "high" ANDhasActionableInsights: trueWhat you get:
See examples/sample-notification.md for a full example.
npm run uninstall
This will:
.env)config.json)bookmarks.json)To reinstall later, just run
npm run setup again.
Problem: The skill can't find your auth tokens.
Solution:
npm run setup.env exists in skills/bookmark-intelligence/.env has both AUTH_TOKEN= and CT0= linesProblem: Your cookies are invalid or expired.
Solution:
.env with new valuesnpm test to verifyTo manually test your credentials:
cd skills/bookmark-intelligence source .env bird whoami --json
If this works, your credentials are valid.
Problem: bird CLI isn't installed.
Solution:
npm install -g bird
Problem: PM2 might not be installed, or daemon crashed.
Solution:
# Check PM2 is installed pm2 --versionIf not, install it
npm install -g pm2
Check daemon status
pm2 status
View logs to see what happened
pm2 logs bookmark-intelligence
Restart
npm run daemon
Problem: The AI doesn't know what you care about.
Solution:
config.jsoncontextProjects with specific project descriptions:
"contextProjects": [ "Building a crypto trading bot using Python and Binance API", "Learning Rust for systems programming", "Growing my SaaS to $10k MRR" ]
pm2 restart bookmark-intelligenceThe more specific you are, the better the AI can relate insights to your work!
Where is your data stored?
.env (local file, permissions: 600)life/resources/bookmarks/ (local files)Can I use this without OpenClaw?
Is it safe?
.env is in .gitignore so you won't accidentally commit itOnce you're comfortable with the basics, you can customize:
Edit
monitor.js line ~120 to notify on medium priority too:
if (config.notifyTelegram && (analysis.priority === 'high' || analysis.priority === 'medium')) {
Edit
config.json:
{ "bookmarkCount": 100 // Check last 100 bookmarks }
{ "checkIntervalMinutes": 30 // Check every 30 minutes }
Add your own export script in
scripts/export-to-notion.js - each bookmark is already a clean JSON structure!
See the
examples/ folder:
Open an issue on ClawHub or submit a PR!
Common issues:
.env with fresh cookiesbookmarkCount or increase checkIntervalMinutescontextProjects more specificMIT - Do whatever you want with it!
Credit Card (Stripe)
Cryptocurrency
npm run license:upgrade to see optionsnode scripts/license.js activate <key>Check your status anytime:
npm run license:check
Your license includes:
Renewals:
Free Tier: Community support via GitHub issues Pro Tier: Email support (48hr response time) Enterprise Tier: Priority support (8hr response time) + Slack channel
Q: Do I need OpenClaw to use this?
A: No! It works standalone. With OpenClaw you get LLM analysis and notifications, but it's optional.
Q: Can I try it before paying?
A: Yes! Start with the Free tier (10 bookmarks/month). No credit card required.
Q: How do I upgrade or downgrade?
A: Run
npm run license:upgrade to upgrade. For downgrades, contact support before renewal.
Q: What happens if I exceed my Free tier limit?
A: Processing stops at 10 bookmarks. You'll see a message prompting you to upgrade. Your data is safe.
Q: Can I cancel anytime?
A: Yes! No commitments. Cancel before your next billing date and you won't be charged.
Q: Do you offer discounts?
A: Annual plans save 2 months (16% off). Student/nonprofit discounts available - contact support.
Q: What if my payment fails?
A: You'll get a 3-day grace period to update payment info. After that, you'll downgrade to Free tier.
Q: Can I get an invoice?
A: Yes! Invoices are emailed automatically. Enterprise customers can request custom invoices.
Q: Does the Free tier use AI analysis?
A: No, Free tier uses keyword-based heuristics. Upgrade to Pro for full AI-powered insights.
Q: How does automation work?
A: Pro/Enterprise tiers can run as a background daemon (PM2) that checks bookmarks automatically.
Q: Can I use my own AI API keys?
A: Enterprise tier only. Supports OpenAI, Anthropic, and custom endpoints.
Q: Is my data private?
A: Yes! Everything runs locally. Your bookmarks never leave your machine except for AI analysis API calls.
Q: What if I change machines?
A: Your license key works on one machine at a time. Contact support to transfer licenses.
Q: How do I configure payment for my wallet?
A: Edit
payment-config.json and add your Stripe keys and/or crypto wallet address.
Q: Can I change the pricing?
A: Yes! Edit the
pricing section in payment-config.json.
Q: How do I issue trial licenses?
A: Use the admin dashboard:
node scripts/admin.js issue pro user@example.com trial
Q: How do I track revenue?
A: Run
npm run admin:revenue to see stats.
Pull requests welcome! Areas for improvement:
Made with โค๏ธ for OpenClaw
Questions? Check the troubleshooting section above or ask in the OpenClaw community!
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
ยฉ 2026 Torly.ai. All rights reserved.