/install urlmitra-link-manager
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
- Shorten & Brand Links: Turn long, ugly URLs into memorable shortlinks under the standard redirect domain (e.g.,
mitr.to/roadmapormitr.to/product-tour). - Audit Redirect Health: Autonomously monitor links for broken redirects or
404errors to protect traffic. - Analyze click performance: Pull workspace click and conversion stats to report ROI metrics.
- 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):
- 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} - 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}
- Resolve the alias to its core document context first:
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"
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install urlmitra-link-manager - 安装完成后,直接呼叫该 Skill 的名称或使用
/urlmitra-link-manager触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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。