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

sniplinksniplink 搜索

Agent Skill

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

总安装

4,187

周安装

178

GitHub Stars

公开资料未说明

下载量

1,467
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sniplink

简介

Sniplink 用于保存、分类和标记一次性 URL,适用于快速整理网络资源。

  • 适合在 OpenClaw 中需要从 X、GitHub 等平台收集链接并归档时使用。
  • 通过 clawhub 安装,使用 openclaw skills install sniplink 命令部署。
  • 建议确认存储范围和隐私设置,避免保存敏感或私人链接。
  • 可结合来源仓库和原始 README 进一步核验分类规则和存储机制。

SKILL.md

name
sniplink
description
OpenClaw skill. One-shot URL saver for tools and services discovered on X, GitHub, or anywhere. Drop a link, get it categorized, tagged, and stored — no friction, no multi-step forms. Built for ADHD brains and anyone who keeps losing track of tools they saved across bookmarks, notes, and chats.

SnipLink — The ADHD-Friendly URL Saver

Who It's For

You found something cool. You want it saved now — before you forget, before you lose the tab, before the momentum dies.

SnipLink saves it instantly: title, description, category, tags, social links. Done in seconds. No multi-step forms, no "where should I put this" paralysis.

Trigger

Use this skill when:

  1. User shares a URL and wants it saved — "save this", "remember this", "add to my stash"
  2. User shares an X/Twitter link — detect tweet content, extract the real target, and save it
  3. User asks "what tools do I have for X" or wants to search their saved links
  4. User is brainstorming and needs quick tool suggestions by tag or category
Zero friction. One URL in, clean record out. Confirm once, forget about it.

Workflow

1. Saving a Link (One-Shot)

Step 1: Detect source type

  • X/Twitter URL (x.com, twitter.com) → go to X/Twitter Pipeline (see below)
  • GitHub.com repo URL → use gh api (structured data, no scraping)
  • All other URLs → use web_fetch

Step 2: Extract info

For GitHub repos, extract:

  • Repo name, description, primary language, star count, license, topics/tags, last updated, owner

For all other pages:

  • web_fetch → title, meta description, pricing, features
  • Skip if behind login, paywall, or CAPTCHA

Step 3: Auto-categorize

  • AI/ML — AI services, LLMs, machine learning
  • Development — Coding tools, APIs, frameworks, testing
  • Productivity — Task management, notes, workflow automation
  • Marketing — SEO, social media, ads, content
  • Design — Graphics, UI/UX, video, prototyping
  • Finance — Billing, accounting, payments
  • Communication — Messaging, email, calls, CRM
  • Data — Analytics, databases, visualization
  • Other — Anything else

Step 4: Auto-generate tags

  • Extract from description, GitHub topics, or page keywords
  • Common: free, paid, api, no-code, open-source, mobile, cloud, etc.

Step 5: Social media lookup

  • web_search tool name + "LinkedIn" / "Twitter"
  • Store URLs if found

Step 6: Present for approval (MANDATORY)

  • Show the user a clean summary of what was extracted:

- Title, description, category, tags, price - Source (direct URL / tweet / GitHub)

  • Ask: "Save this? (yes / no / edit)"
  • If user says no → discard, ask if they want to modify
  • If user says edit → let them adjust fields before saving
  • If user says yes → save to database
  • NEVER save without user seeing the extracted data first

X/Twitter Pipeline

Trigger: User shares an x.com or twitter.com URL and wants it saved.

Step 1: Extract tweet content (use fxtwitter API first)

  • Primary method: curl -sL "https://api.fxtwitter.com/{user}/status/{id}"

- Returns JSON with tweet.text, tweet.author, tweet.media, tweet.raw_text.facets (links inside tweet) - Works without browser, no login, no CAPTCHA — fast and reliable

  • Extract username and ID from URL patterns: x.com/{user}/status/{id} or twitter.com/{user}/status/{id} or x.com/i/status/{id}
  • If fxtwitter fails, fallback to browser: browser_navigate to the tweet URL + snapshot
  • If both fail, tell the user the tweet is unreachable and ask them to paste the text

Step 2: Understand tweet context (CRITICAL — no blind clicking)

  • Read the full tweet text carefully
  • Determine the tweet's intent:

- Sharing a tool/service → tweet describes or links to something useful - Announcing a launch → new product, repo, or feature - Thread/review → opinion about an existing tool - Mentioning a repo by name → no direct link, but repo name is in the text - Just a meme/comment → nothing to save, tell the user politely

Step 3: Extract the target URL

  • If the tweet contains a link → analyze what it links to:

- GitHub URL → use gh api for structured data - Website URL → scrape with web_fetch - Another tweet/thread → follow if relevant, otherwise skip

  • If NO link but the tweet mentions a tool/repo name:

- Search GitHub: gh search repos <name> --limit 5 - Or search the web if it's not a repo

  • If multiple links → use the tweet context to determine which one is the main target

Step 4: Extract info from the target

  • Follow the standard extraction (Steps 2-4 from the main workflow)
  • Combine tweet context with page data for richer description

Step 5: Present for approval (MANDATORY)

  • Show the user:

- Tweet summary: what the tweet said - Extracted target: URL that was found/followed - Tool info: title, description, category, tags, price

  • Ask: "Save this to SnipLink? (yes / no / edit)"
  • NEVER auto-save from tweets — the user must always confirm

Step 6: Save or discard

  • On approval → save to database with tweet URL as a source field in notes
  • On rejection → discard cleanly

2. Retrieving Saved Links

  • By category: "Show me all AI tools"
  • By search: "Find something for PDF editing"
  • By tag: "Show me everything tagged free"
  • Full list: "List all my saved tools"

3. Tool Suggestions (Opt-In)

When user asks for project help, search by relevant tags/categories and suggest.

GitHub Integration

GitHub URLs get treated specially via gh api:

# Repo metadata example
gh api repos/{owner}/{repo}

Extracted fields: name, description, language, stargazers_count, topics, license, updated_at, homepage, html_url

No web scraping needed for GitHub — clean, fast, accurate.

Content Boundaries

Never scrape:

  • Pages behind login, paywall, or CAPTCHA
  • Pages blocked by robots.txt
  • URLs containing personal data (iCloud, Google Drive shared links, etc.)

Sanitization:

  • Strip tracking params from URLs before saving (utm_*, fbclid, etc.)
  • Never store OAuth tokens, API keys, or session IDs

Pitfall: Unreachable Sites

When curl and browser both fail to reach a site (timeouts, connection refused), stop retrying after 2 attempts. The issue is connectivity, not permissions.

  1. Tell the user clearly: "The site is unreachable from this environment — not a permission issue."
  2. Offer alternatives: user describes it manually, save with minimal info and update later, or try from a different network.
  3. Do NOT keep retrying the same failing approach — it frustrates the user and wastes turns.
  4. Before scraping, briefly state what you're about to do: "Let me scrape the site for details before saving."

Storage: Obsidian (Single Source of Truth)

SnipLink stores all saved tools as Obsidian notes in the user's vault. This centralizes all knowledge in one place and enables graph connections between tools, projects, and concepts.

Vault Location

~/Library/CloudStorage/GoogleDrive-abdulrahmanjahfali@gmail.com/My Drive/My Mind/SnipLink/

Structure

  • One markdown note per saved tool: SnipLink/{Tool Name}.md
  • Master index: SnipLink/SnipLink Index.md

Record Format (Obsidian Note)

---
title: Tool Name
url: https://example.com
category: Development
tags: [python, api, free]
price: "Free / $X/mo"
saved: 2026-04-04
---

# Tool Name

Description of what it does.

## Details
- **Use case:** What it's used for
- **Notes:** Extra info, source, stats

## Contact
- **Email:** ...
- **Website:** ...

## Social
- [LinkedIn](...)
- [Twitter](...)

Index Format (SnipLink Index.md)

Update the index file when saving a new entry. Use Obsidian wiki-links [[Tool Name]] for graph connections. Include Dataview queries for dynamic listing.

Retrieving Links from Obsidian

When user asks to search saved tools:

  1. Use obsidian skill to search/read notes in the SnipLink/ folder
  2. Search by tags, category, title, or content
  3. Present results as a summary

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

73.59%
按下载量换算1,080

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills