CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Revelica

revelica/skills
HTTPregistry active
Summary

Connects your AI coding assistant directly to a Revelica workspace so it can query product specs, ideas, and research while writing code. Exposes five MCP tools: query for searching the knowledge base, read/create/update for artifacts and entities, and load_skill for bundling instructions with workspace context. Ships with two bundled skills following the Agent Skills standard: one orients coding agents to the product layer (what idea or spec justifies this code), the other lets the agent author feature specs incrementally. Authentication is OAuth with row-level security, so agents only see your workspace. Useful when you want product context flowing into Claude, Cursor, or Gemini CLI without leaving the editor.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Registryactive
TransportHTTP
UpdatedJun 2, 2026
View on GitHub

Revelica Skills

Official Revelica plugin for AI coding tools — provides MCP-connected skills for product intelligence. Follows the Agent Skills open standard, compatible with Claude Code, Cursor, Gemini CLI, OpenAI Codex, and more.

Repository Structure

revelica/skills
├── .claude-plugin/
│   ├── marketplace.json         # Claude Code marketplace catalog
│   ├── plugin.json              # Claude Code plugin manifest
│   └── mcp.json                 # MCP config for Claude Code plugin
├── .cursor-plugin/
│   └── plugin.json              # Cursor plugin manifest
├── skills/                      # Skill definitions (Agent Skills open standard)
│   ├── product-for-coding-agents/  # Product layer for coding agents (orientation)
│   └── write-spec/              # Author a feature spec attached to an idea
├── server.json                  # MCP registry manifest (registry.modelcontextprotocol.io)
├── .mcp.json                    # MCP config for Cursor/Gemini
└── gemini-extension.json        # Gemini CLI extension manifest

Installation by Platform

Claude Code

/plugin marketplace add revelica/skills
/plugin install revelica@revelica

Skills are model-invoked — Claude automatically uses them based on context. The MCP server is registered automatically.

Cursor

Install via the .cursor-plugin/plugin.json manifest. Cursor will discover skills from the skills/ directory and connect to the MCP server via .mcp.json automatically.

Gemini CLI

gemini extensions install revelica/skills

The gemini-extension.json manifest registers both skills and the MCP server.

Available MCP Tools

These tools are provided by the Revelica MCP server and callable from any skill:

ToolDescription
querySearch the workspace knowledge base — artifacts, entities, schemas. Filter by artifact_type, control detail with depth.
readRead a single artifact or entity in full by id.
createCreate new artifacts or entities. Content validated against registered schemas.
updateApply partial field-level updates via dot-path notation.
load_skillLoad a skill's instructions and prefetched workspace data.

All tools require OAuth authentication and enforce Supabase RLS — users only see their own workspace's data.

Available Skills

SkillDescription
product-for-coding-agentsOrientation for a coding agent: read the idea/spec/UX behind the code, write high-level results (impl docs, PRs, tested feasibility assumptions, ideas, sources) back.
write-specAuthor a feature spec attached to an idea, following the Revelica spec template — incremental section-by-section writes that fit coding-agent tool-call budgets.

Adding a New Skill

  1. Create a folder under skills/:

    mkdir skills/my-skill
    touch skills/my-skill/SKILL.md
    
  2. Write SKILL.md following the Agent Skills spec:

    ---
    name: my-skill
    description: What this skill does and when to use it.
    compatibility: Requires Revelica MCP server (query, read, create, update tools)
    ---
    
    Instructions for the agent...
    
  3. Commit and push. Users get the update by running:

    /plugin update revelica@revelica
    

No backend changes needed unless the skill requires a new MCP tool.

About Revelica

Revelica is an AI-native product discovery platform. It helps product managers create customer insights, competitive analysis, and validated specs that feed into their AI development workflow.

🔗 https://revelica.com

🔗 https://app.revelica.com/insights