Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

uf2-net超滤网

Agent Skill

uf2-net 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,684

周安装

618

GitHub Stars

公开资料未说明

下载量

5,142
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install uf2-net

简介

使用 uf2.net API 创建、管理和跟踪自定义短 URL;链接永不过期,并通过简单的 REST 调用提供点击计数和公共统计数据。

SKILL.md

name
uf2-net
description
Create, manage, and track short URLs using uf2.net API-first URL shortener. Use when: (1) shortening URLs for sharing or tracking, (2) creating custom short links with branded slugs, (3) managing existing short links (list/delete/stats), (4) tracking click counts on shortened URLs. Links never expire and support custom slugs. Service: uf2.net (https://uf2.net) - API-first URL shortener for bots and engineers.
homepage
https://uf2.net
source
https://github.com/openclaw/openclaw
credentials
description
API key from uf2.net account registration (obtain via POST /api/v1/accounts/register)
required
true

uf2.net URL Shortener

Create and manage short URLs via the uf2.net API. This skill provides a CLI wrapper for the uf2.net service (https://uf2.net), an API-first URL shortener designed for automation and bots.

Quick Start

1. Register for API Key

If you don't have a uf2.net account:

curl -X POST https://uf2.net/api/v1/accounts/register \
  -H "Content-Type: application/json" \
  -d '{"username":"your-username"}'

Response includes api_key field. Store this securely (see Credential Management below).

2. Set Environment Variable

export UF2_API_KEY="uf2_..."

Important: Do not hardcode API keys in scripts or commit them to version control.

3. Common Operations

Shorten a URL:

scripts/uf2.sh create "https://example.com/long/path"
# → {"short_url":"https://uf2.net/abc123",...}

Custom slug:

scripts/uf2.sh create "https://github.com/my-repo" "my-repo" "My GitHub Repo"
# → {"short_url":"https://uf2.net/my-repo",...}

List your links:

scripts/uf2.sh list 10
# → {"links":[...],"total":42}

Get link stats (public, no auth needed):

scripts/uf2.sh get abc123
# → {"code":"abc123","click_count":42,...}

Delete a link:

scripts/uf2.sh delete abc123

Credential Management

Recommended: Environment Variables

Most secure for temporary/session use:

export UF2_API_KEY="uf2_..."

For Persistent Storage

Choose one based on your security requirements:

Option 1: Shell profile (user-only access)

echo 'export UF2_API_KEY="uf2_..."' >> ~/.zshrc
# or ~/.bashrc for bash

Option 2: OpenClaw secret store (if available)

# Store in OpenClaw's secure credential storage
# (consult OpenClaw docs for secret management)

Option 3: System keychain/credential manager

# macOS Keychain, Linux Secret Service, Windows Credential Manager
# Use OS-native secure storage

⚠️ Avoid: Storing keys in plain text files in shared or version-controlled directories.

Direct API Usage

For operations not covered by the script, use curl directly. See api.md for full API reference.

Example:

curl -X POST https://uf2.net/api/v1/links \
  -H "X-API-Key: $UF2_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","slug":"custom"}'

Service Details

  • Service: uf2.net (https://uf2.net)
  • Type: API-first URL shortener for bots and engineers
  • TLS: Yes (HTTPS only)
  • API Docs: https://uf2.net/docs (Swagger), https://uf2.net/redoc (ReDoc)
  • Registration: Open, free tier available
  • Rate Limits: 20 registrations per IP per hour; reasonable use for authenticated endpoints

Key Features

  • Never expires - Links remain active indefinitely
  • Custom slugs - Brand your short URLs (4-64 chars, lowercase a-z0-9_-)
  • Click tracking - Monitor usage via click_count
  • Public metadata - Anyone can view link stats (GET /links/{code})
  • Simple API - RESTful with JSON responses

Constraints

  • Max URL length: 2048 characters
  • Custom slugs are case-insensitive (stored lowercase)
  • Slug conflicts return 409 error
  • Private/localhost URLs rejected
  • Registration rate limit: 20 per IP per hour

Security Notes

  • API key required: All authenticated operations require UF2_API_KEY header
  • Link visibility: All created links are publicly accessible (anyone with the short URL can access the target)
  • Metadata visibility: Link metadata (click counts, original URL) is publicly readable
  • No link expiration: Links persist indefinitely unless manually deleted
  • Private URL rejection: The service rejects localhost and private IP ranges

Resources

  • Script: scripts/uf2.sh - CLI wrapper for common operations
  • Reference: references/api.md - Full API documentation
  • Service homepage: https://uf2.net
  • API docs: https://uf2.net/docs (Swagger), https://uf2.net/redoc (ReDoc)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.19%
按下载量换算3,609

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills