grovs-create-link

grovs-create-link is a skill for Claude Code from grovs-io/mcp. It costs 60 tokens per session (671 once invoked), scanned A, original, MIT.

A tool for creating deep links: shareable app URLs that open a particular screen or item and can carry campaign information.

In plain words
What is it for?
Use it to create campaign, product, or screen links with social previews, tags, custom data, and optional campaign assignments.
Why use it?
It makes it possible to track where visits or installs came from and send people to a specific place in an app.

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

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.

agentmods
npx agentmods add skills/grovs-io/mcp/grovs-create-link
Any agent
npx skills add grovs-io/mcp --skill grovs-create-link
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-create-link

README.md
[![agentmods](https://agentmods.dev/badge/skills/grovs-io/mcp/grovs-create-link.svg)](https://agentmods.dev/skills/grovs-io/mcp/grovs-create-link)
Your own site
<a href="https://agentmods.dev/skills/grovs-io/mcp/grovs-create-link"><img src="https://agentmods.dev/badge/skills/grovs-io/mcp/grovs-create-link.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 671 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00060 $0.00671
Opus 5 $0.00030 $0.00336
Sonnet 5 $0.00012 $0.00134
Haiku 4.5 $0.00006 $0.00067

Measured 5d ago against content hash 2babc75b6463, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

grovs-create-link 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 5d 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-create-link/SKILL.md · 67 lines

How it starts

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

Key behaviors

  • Default to the production project unless the user says "test."
  • If you already have the project_id from earlier in this conversation, don't re-call get_status.
  • path auto-generates from name — don't ask for it unless the user cares about the URL slug.
  • data is the JSON payload the app receives on open. If the user says "link to the product page," ask what data their app needs to navigate there (e.g., {"screen": "product", "id": "123"}).
  • campaign_id assigns the link to a campaign. If the user mentions a campaign by name, look up its numeric ID with list_campaigns first.
  • The response includes the full shareable URL — present it prominently.

Examples

User: "Create a link for our Summer Sale, it should go to the promo screen"

create_link(
  project_id: "p_m9f",
  name: "Summer Sale",
  data: {"screen": "promo", "sale_id": "summer-2026"},
  tags: ["marketing", "summer-2026"]
)
→ URL: https://foodies.grovs.io/summer-sale

User: "Create a link for the Summer Sale campaign"

1. list_campaigns(project_id: "p_m9f", term: "Summer Sale")  → finds campaign_id: 42
2. create_link(
     project_id: "p_m9f",
     name: "Summer Sale Banner",
     campaign_id: 42,
     data: {"screen": "promo"}
   )
→ URL: https://foodies.grovs.io/summer-sale-banner (assigned to campaign 42)

If the campaign doesn't exist yet and they're creating several related links, create it first:

create_campaign(project_id: "p_m9f", name: "Summer Sale 2026")  → campaign_id: 42
create_link(..., campaign_id: 42)  → first link
create_link(..., campaign_id: 42)  → second link

If something fails

  • Path already taken → the path slug must be unique per project. Suggest a different slug or let it auto-generate by omitting path.
  • Invalid image_url → must be a valid URL (schema uses z.url()).

After creation

Suggest anything the user skipped that would help:

  • No tags → useful for filtering in analytics
  • No title/image → improves social sharing (Open Graph)
  • No data → app won't know which screen to open
  • No campaign → suggest if they'll create more related links

Read the full file on GitHub · 67 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. 5d ago First seen · 67 lines · 60 tokens per session scan A 2babc75b6463

Subscribe to this mod's changes

grovs-create-link is a skill published in the GitHub repository grovs-io/mcp (2 stars, last pushed 3mo ago), licensed MIT. It adds 60 tokens to every session and 671 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

xcode-build-fixer

Implement approved Xcode build optimization changes following best practices, then re-benchmark to verify improvement. Use when the developer has reviewed an optimization plan and approved specific changes, or when there is a clear list of build-setting or source-level fixes to apply and verify.

carloshpdoc/ios-workflow-claude · 58 tokens

xcode-project-analyzer

Audit Xcode project configuration, build settings, scheme behavior, and script phases to find build-time improvements with explicit approval gates. Use when a developer wants project-level build analysis, slow incremental builds, guidance on target dependencies, build settings review, run script phase analysis…

carloshpdoc/ios-workflow-claude · 72 tokens

android-pentest

安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.

Netw0rkNoob/VulnClaw · 32 tokens

firebase-messaging

Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).

evanca/flutter-ai-rules · 35 tokens

foundation-models

On-device LLM integration using Apple's Foundation Models framework. Use when implementing AI text generation, structured output, or tool calling.

rshankras/claude-code-apple-skills · 29 tokens

force-update

Generates a minimum version enforcement system with hard-block and soft-prompt update flows, App Store redirect, and remote config or App Store lookup for version checks. Use when user wants force update, mandatory update, or minimum version check.

rshankras/claude-code-apple-skills · 50 tokens