grovs-manage-links

grovs-manage-links is a skill for Claude Code from grovs-io/mcp. It costs 55 tokens per session (653 once invoked), scanned A, original, MIT.

A skill for finding, reviewing, and changing existing tracking links. Tracking links are URLs that record visits or other campaign results before sending people onward.

In plain words
What is it for?
Use it to search links, inspect their metrics, update metadata or destinations, assign campaigns, and permanently archive links after confirmation.
Why use it?
It helps locate the correct link and identifier before editing it, reducing mistakes when managing redirects, tags, or campaigns.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the grovs plugin — 6 skills, 1 MCP server shipped together

Good fit Use it to search links, inspect their metrics, update metadata or destinations, assign campaigns, and permanently archive links after confirmation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/grovs-io/mcp/grovs-manage-links
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add grovs-io/mcp --skill grovs-manage-links
Clone the repo
git clone --depth 1 https://github.com/grovs-io/mcp

Made for: Claude Code.

Or install grovs, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for grovs-manage-links

README.md
[![agentmods](https://agentmods.dev/badge/skills/grovs-io/mcp/grovs-manage-links/github.svg)](https://agentmods.dev/skills/grovs-io/mcp/grovs-manage-links)
Your own site
<a href="https://agentmods.dev/skills/grovs-io/mcp/grovs-manage-links"><img src="https://agentmods.dev/badge/skills/grovs-io/mcp/grovs-manage-links/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for grovs-manage-links

Your own site · 80×15
<a href="https://agentmods.dev/skills/grovs-io/mcp/grovs-manage-links"><img src="https://agentmods.dev/badge/skills/grovs-io/mcp/grovs-manage-links.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 653 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.00653
Opus 5 $0.00028 $0.00327
Sonnet 5 $0.00011 $0.00131
Haiku 4.5 $0.00006 $0.00065

Measured 12d ago against content hash 0dede5ed4d4f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

grovs-manage-links scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/grovs-manage-links/SKILL.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ID types — this is where LLMs mess up

What the user gives you What you need How to get it
Link name or URL numeric link_id search_links → use the id field from results
Full URL or path slug link details get_link with path (accepts both)
Wants to update numeric link_id from search_links or get_link response

get_link accepts a full URL (https://myapp.grovs.io/summer-sale) or just the slug (summer-sale) — the server extracts the path. update_link takes a numeric ID. Never pass a path to update_link.

Key behaviors

  • If you already have the project_id from this conversation, skip get_status.
  • search_links returns metrics (views, opens, installs) per link — useful for quick performance checks without the analytics tools.
  • update_link is a partial update — only send fields the user wants to change.
  • To assign a link to a campaign: pass campaign_id in update_link.

archive_link permanently deactivates a link — it stops redirecting users. This cannot be undone. Always confirm with the user before calling.

archive_link takes project_id + numeric link_id (not a path slug). If the user says "delete the summer-sale link," you need to look up the numeric ID first via search_links or get_link.

Pagination

search_links returns paginated results with meta.page, meta.total_pages, and meta.total_entries. If the user says "show more" or "next page," call search_links again with page: current + 1 using the same filters.

Example

User: "Change the summer sale link to point to the new promo screen"

1. search_links(project_id: "p_m9f", search: "summer sale")
   → finds: {id: 42, name: "Summer Sale", path: "summer-sale", ...}
2. update_link(project_id: "p_m9f", link_id: 42, data: {"screen": "new-promo"})
   → updated

If something fails

  • "Link not found" on get_link → the path slug might be wrong. Use search_links with a search term instead.
  • update_link with an invalid link_id → re-check by searching first.

Read the full file on GitHub · 54 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 54 lines · 55 tokens per session scan A 0dede5ed4d4f

Subscribe to this mod's changes

grovs-manage-links is a skill published in the GitHub repository grovs-io/mcp (2 stars, last pushed 4mo ago), licensed MIT. It adds 55 tokens to every session and 653 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

skillnote

Self-hosted skill registry for OpenClaw. Stores procedures your team writes (name, description, body), syncs them to disk before each task, and collects which-helped/which-failed signals from the agent so the registry improves over time.

luna-prompts/skillnote · 54 tokens

chatcrystal-debug-recall

Recall ChatCrystal memories for debugging tasks involving failing tests, compiler errors, runtime exceptions, dependency issues, environment breakage, or performance regressions. Use when historical root causes, fixes, or pitfalls may accelerate diagnosis before proposing a fix.

ZengLiangYi/ChatCrystal · 54 tokens

collection

Choose which SkillNote skill collection is active for this Codex project. Use when the user says "change collection", "switch skills", "use frontend skills", or "show collections".

luna-prompts/skillnote · 39 tokens

verify

Fact-check claims encountered during reading — dates, names, events, citations. Use when encountering historical facts or disputed claims.

yha9806/academic-writing-toolkit · 26 tokens

megalinter-check

Collect MegaLinter lint errors for the current repository. Use when the user wants to know if the code passes linting, why the MegaLinter CI job fails, or before/after fixing lint errors. Two modes - watch a CI job (GitHub Actions, GitLab CI, Azure Pipelines, Bitbucket Pipelines) and parse its logs, or run MegaLinter…

ulises-jeremias/agent-toolkit · 96 tokens

assistant

Assistant — on any repo, scan README→docs→AGENTS→CONTRIBUTING→PR templates→task runners→devcontainer→CI→configs before code; cite sources; prefer AGENTS.md for agent behavior; portable across Cursor/Copilot/Claude; use agent-toolkit CLI when needed.

ulises-jeremias/agent-toolkit · 64 tokens