Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

url-shortener-mobile手机网址缩短器

Agent Skill

url-shortener-mobile 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,281

周安装

98

GitHub Stars

公开资料未说明

下载量

867
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install url-shortener-mobile

简介

url-shortener-mobile 提供移动端 URL 缩短操作指南。

  • 适用于需要将长链接转换为可共享短链的场景。url-shortener-mobile 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装后可用于前端组件开发与用户交互设计。
  • 需确认是否调用公共网络服务并评估隐私风险。
  • 建议核实其是否支持批量处理与过期时间设置功能。

SKILL.md

name
url-shortener-mobile
description
Guide for shortening any URL via public web services. Use whenever the user asks to shorten, abbreviate, or create a shareable link from a long URL. This skill does NOT execute HTTP itself — it instructs the agent to invoke the existing http_fetch tool, which has a different network fingerprint that bypasses the anti-bot filters that block the on-device QuickJS fetch.
triggers
metadata
openclaw
emoji
🔗

URL Shortener (guide)

This skill is instructions-only. It does not run any code on the device. When the user asks to shorten a URL, the agent should use the existing http_fetch tool to call one of the public shortener APIs below and then return the response body as the short URL.

Preferred backend: da.gd

GET https://da.gd/s?url=<URL-encoded original URL>

Exactly one call. Response body is the short URL as plain text (no JSON).

Agent procedure

  1. Extract the original URL from the user's message.

- It must start with http:// or https://. If not, ask the user to provide one.

  1. URL-encode the original URL (apply encodeURIComponent to it).
  2. Call http_fetch with these parameters:

- url: https://da.gd/s?url=<encoded original> - method: GET

  1. Take the raw response body, strip surrounding whitespace, and verify it

starts with https://da.gd/. If so, return that as the short URL.

  1. If the body doesn't match, or the status is not 2xx, fall back to one of

the alternate backends below.

Example

Original:

https://github.com/anthropics/claude-code/tree/main/docs/very/long/path

Encoded:

https%3A%2F%2Fgithub.com%2Fanthropics%2Fclaude-code%2Ftree%2Fmain%2Fdocs%2Fvery%2Flong%2Fpath

Fetch:

http_fetch({ url: "https://da.gd/s?url=https%3A%2F%2Fgithub.com%2Fanthropics%2Fclaude-code%2Ftree%2Fmain%2Fdocs%2Fvery%2Flong%2Fpath", method: "GET" })

Expected response body: https://da.gd/XXXXXX

Fallback 1: cleanuri.com

POST https://cleanuri.com/api/v1/shorten

  • method: POST
  • content_type: application/x-www-form-urlencoded
  • body: url=<URL-encoded original URL>

Response is JSON: {"result_url": "https://cleanuri.com/XXXXXX"}. Parse and return result_url.

Fallback 2: tinyurl.com (unreliable)

GET https://tinyurl.com/api-create.php?url=<URL-encoded original URL>

Response body is plain text like https://tinyurl.com/XXXXXX. Some clients get bot-detected and receive a "deprecated preview" placeholder — if the response body lies outside the https://tinyurl.com/ domain or redirects to tinyurl.com/preview/deprecated, treat it as a failure and move on.

Notes for the agent

  • Always verify the final short URL's domain matches the backend's own

domain before returning it.

  • If all three backends fail, tell the user honestly — do not fabricate a

short URL.

  • The user cares about reaching the original URL through the short link.

Do not silently substitute a different destination.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.99%
按下载量换算850

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills