Agent Plugins Marketplace
← All plugins

yellow-ruvector

v1.3.3

Persistent vector memory and semantic code search for Claude Code agents via ruvector

Claude Code3 Skills1 MCP serverstdio

By KingInYellowsLicense: MIT0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Sep 27, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install yellow-ruvector for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install yellow-ruvector@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/KingInYellows/yellow-plugins

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/yellow-ruvector/.

Plugin files

plugins/yellow-ruvector/
├── .claude-plugin/plugin.json
├── skills/agent-learning/SKILL.md
├── skills/memory-query/SKILL.md
├── skills/ruvector-conventions/SKILL.md
└── .mcp.json

Included Skills3

agent-learningskills/agent-learning/SKILL.md

Agent learning patterns and quality guidelines. Use when commands or agents need to determine when and how to record learnings, apply quality gates, or retrieve past knowledge using ranked retrieval.

memory-queryskills/memory-query/SKILL.md

Standard pattern for querying ruvector institutional memory before acting. Use when authoring new agents or commands that should query past patterns, findings, or solutions before executing.

ruvector-conventionsskills/ruvector-conventions/SKILL.md

ruvector workflow patterns and conventions reference. Use when commands or agents need ruvector context, MCP tool naming, current tool schemas, or error handling patterns.

MCP servers1

ruvectorstdio
command
npx
args
-y --ignore-scripts [email protected] mcp start
env.RUVECTOR_STORAGE_PATH
${PWD}/.ruvector/
env.RUVECTOR_MCP_ALLOW
hooks_capabilities,hooks_pretrain,hooks_recall,hooks_remember,hooks_stats

Plugin manifests1

plugins/yellow-ruvector/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "yellow-ruvector",
  "version": "1.3.3",
  "description": "Persistent vector memory and semantic code search for Claude Code agents via ruvector",
  "author": {
    "name": "KingInYellows",
    "url": "https://github.com/KingInYellows"
  },
  "homepage": "https://github.com/KingInYellows/yellow-plugins#yellow-ruvector",
  "repository": "https://github.com/KingInYellows/yellow-plugins",
  "license": "MIT",
  "keywords": [
    "vector-search",
    "agent-memory",
    "semantic-search",
    "embeddings",
    "self-learning"
  ],
  "mcpServers": {
    "ruvector": {
      "command": "npx",
      "args": [
        "-y",
        "--ignore-scripts",
        "[email protected]",
        "mcp",
        "start"
      ],
      "env": {
        "RUVECTOR_STORAGE_PATH": "${PWD}/.ruvector/",
        "RUVECTOR_MCP_ALLOW": "hooks_capabilities,hooks_pretrain,hooks_recall,hooks_remember,hooks_stats"
      }
    }
  },
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "Edit|Write|MultiEdit|Bash",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/pre-tool-use.sh\"",
            "timeout": 1
          }
        ]
      }
    ],
    "UserPromptSubmit": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/user-prompt-submit.sh\"",
            "timeout": 1
          }
        ]
      }
    ],
    "SessionStart": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-start.sh\"",
            "timeout": 3
          }
        ]
      }
    ],
    "PostToolUse": [
      {
        "matcher": "Edit|Write|MultiEdit|Bash",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/post-tool-use.sh\"",
            "timeout": 1
          }
        ]
      }
    ],
    "PostToolUseFailure": [
      {
        "matcher": "Edit|Write|MultiEdit|Bash",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/post-tool-use.sh\"",
            "timeout": 1
          }
        ]
      }
    ],
    "Stop": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/stop.sh\"",
            "timeout": 10
          }
        ]
      }
    ]
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[yellow-ruvector on Agent Plugins Marketplace](https://pluginsmp.com/plugins/yellow-ruvector)