← 返回 Skills 市场
🔌

URLMitra Link Manager

作者 URLMitra · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
30
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install urlmitra-link-manager
功能描述
Manage branded redirects, audit traffic analytics, and execute semantic link queries using URLMitra.
使用说明 (SKILL.md)

URLMitra Link Manager Skill

This skill extends your OpenClaw agent, enabling it to manage branded redirects, audit links for broken destinations, analyze click attribution metrics, and semantically search workspace resources using standard URLMitra endpoints.

Objectives

  1. Shorten & Brand Links: Turn long, ugly URLs into memorable shortlinks under the standard redirect domain (e.g., mitr.to/roadmap or mitr.to/product-tour).
  2. Audit Redirect Health: Autonomously monitor links for broken redirects or 404 errors to protect traffic.
  3. Analyze click performance: Pull workspace click and conversion stats to report ROI metrics.
  4. Semantic Resource Search: Query the workspace's internal embeddings database conceptually using natural language.

Required Environment Variables

  • URLMITRA_API_KEY: Your workspace API credential. Secure this key via your developer settings dashboard in URLMitra.

Execution Rules & Tooling

Always use standard curl calls and jq parsing to communicate with URLMitra's APIs.

1. Create a Branded Shortlink

To create a branded link, send a POST request with destination URL and alias parameters.

  • Command:
    curl -s -X POST \
      -H "Content-Type: application/json" \
      -H "X-API-Key: $URLMITRA_API_KEY" \
      -d '{"url": "{url}", "alias": "{slug}"}' \
      https://api.urlmitra.com/api/v1/links
    

2. Live Redirect Health Diagnostics

Validate target destinations in real-time. If an alias is provided, check its target. If no alias is provided, sweep all active workspace redirects.

  • Command (Whole Workspace Sweep):
    curl -s -H "X-API-Key: $URLMITRA_API_KEY" \
      https://api.urlmitra.com/api/v1/health/summary
    
  • Command (Specific Link Verification):
    1. Resolve the alias to its core document context first:
      curl -s -H "X-API-Key: $URLMITRA_API_KEY" \
        https://api.urlmitra.com/api/v1/links/{alias}
      
    2. Extract the "id" property from the resulting JSON, and POST to trigger the manual checker:
      curl -s -X POST \
        -H "X-API-Key: $URLMITRA_API_KEY" \
        https://api.urlmitra.com/api/v1/health/check/{linkId}
      

3. Semantic Resource Retrieval

Use backend Gemini vectors to search the workspace conceptually.

  • Command:
    curl -s -X POST \
      -H "Content-Type: application/json" \
      -H "X-API-Key: $URLMITRA_API_KEY" \
      -d '{"query": "{searchTerm}"}' \
      https://api.urlmitra.com/api/v1/mitra/search
    

Trigger Intents

  • "Shorten this URL using URLMitra"
  • "Trigger a redirect health check on our links"
  • "Audit our marketing campaigns for broken targets"
  • "Find the onboarding documentation semantically in our workspace"
  • "Report this week's click conversions and ROI"
安全使用建议
Install only if you trust URLMitra with your link metadata and semantic search terms. Use the least-privileged API key available, avoid sending confidential internal URLs or sensitive query text unless approved, and treat link creation, whole-workspace sweeps, and manual health checks as actions that should be user-directed.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The advertised purpose is branded redirect management, health checks, analytics, and semantic link search; the documented commands match those functions.
Instruction Scope
The skill includes broad workspace operations such as whole-workspace health summaries and semantic resource search, but they are visible and directly tied to the stated URLMitra workflow.
Install Mechanism
The artifact is a markdown-only skill with no installer, executable script, dependency installation, or local code execution beyond declared curl and jq usage.
Credentials
Requiring URLMITRA_API_KEY and calling api.urlmitra.com is proportionate for an authenticated external link-management integration, but users should understand that URLs, aliases, link IDs, health data, and search terms may be sent to URLMitra.
Persistence & Privilege
No local persistence, background worker, privilege escalation, credential-store access, or obfuscation is present; remote state changes are limited to creating links and triggering health checks.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install urlmitra-link-manager
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /urlmitra-link-manager 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
urlmitra-link-manager v1.0.0 - Initial release introducing URLMitra integration for link management. - Supports branded shortlink creation, redirect health audits, and click performance analytics. - Enables semantic search across workspace resources via natural language queries. - Requires URLMITRA_API_KEY and standard command-line tooling (curl, jq).
元数据
Slug urlmitra-link-manager
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

URLMitra Link Manager 是什么?

Manage branded redirects, audit traffic analytics, and execute semantic link queries using URLMitra. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 30 次。

如何安装 URLMitra Link Manager?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install urlmitra-link-manager」即可一键安装,无需额外配置。

URLMitra Link Manager 是免费的吗?

是的,URLMitra Link Manager 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

URLMitra Link Manager 支持哪些平台?

URLMitra Link Manager 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 URLMitra Link Manager?

由 URLMitra(@urlmitra)开发并维护,当前版本 v1.0.0。

💬 留言讨论