← Back to Skills Marketplace
🔌

URLMitra Link Manager

by URLMitra · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
30
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install urlmitra-link-manager
Description
Manage branded redirects, audit traffic analytics, and execute semantic link queries using URLMitra.
README (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"
Usage Guidance
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.
Capability Tags
requires-sensitive-credentials
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install urlmitra-link-manager
  3. After installation, invoke the skill by name or use /urlmitra-link-manager
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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).
Metadata
Slug urlmitra-link-manager
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is URLMitra Link Manager?

Manage branded redirects, audit traffic analytics, and execute semantic link queries using URLMitra. It is an AI Agent Skill for Claude Code / OpenClaw, with 30 downloads so far.

How do I install URLMitra Link Manager?

Run "/install urlmitra-link-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is URLMitra Link Manager free?

Yes, URLMitra Link Manager is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does URLMitra Link Manager support?

URLMitra Link Manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created URLMitra Link Manager?

It is built and maintained by URLMitra (@urlmitra); the current version is v1.0.0.

💬 Comments