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.
npx agentmods add skills/grovs-io/mcp/grovs-create-linknpx skills add grovs-io/mcp --skill grovs-create-linkgit clone --depth 1 https://github.com/grovs-io/mcpWrote 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.
[](https://agentmods.dev/skills/grovs-io/mcp/grovs-create-link)<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>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.
| Model | Per session | Once 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 |
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.
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.
Grovs: Create a Deep Link
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. pathauto-generates fromname— don't ask for it unless the user cares about the URL slug.datais 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_idassigns the link to a campaign. If the user mentions a campaign by name, look up its numeric ID withlist_campaignsfirst.- 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
pathslug must be unique per project. Suggest a different slug or let it auto-generate by omittingpath. - Invalid
image_url→ must be a valid URL (schema usesz.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
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.
- 5d ago First seen · 67 lines · 60 tokens per session scan A 2babc75b6463
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.
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.
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…
android-pentest
安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.
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).
foundation-models
On-device LLM integration using Apple's Foundation Models framework. Use when implementing AI text generation, structured output, or tool calling.
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.