From grovs
Search, list, and update your existing tracking links — change metadata, tags, redirects, campaign assignment, or custom data on any link without leaving your editor. Use when the user wants to find, list, update, or organize their links.
How this skill is triggered — by the user, by Claude, or both
Slash command
/grovs:grovs-manage-linksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
| What the user gives you | What you need | How to get it |
| 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.
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.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.
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.
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
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.Every Grovs tool returns human-readable formatted text. Don't reformat — just present and add context.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.
npx claudepluginhub grovs-io/mcp --plugin grovs