ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified developer tools Safety 3/5

shared-pinecone-rag

Use the shared Pinecone RAG index for any agent in this workspace. Use when an agent needs to ingest markdown/text docs into pulse-rag or query semantic context from the shared index.

Why use this skill?

Optimize your OpenClaw agents with a shared Pinecone RAG index. Enable persistent memory, document ingestion, and semantic retrieval for a unified knowledge base.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/cryptobro-man/shared-pinecone-rag
Or

What This Skill Does

The shared-pinecone-rag skill serves as the unified RAG (Retrieval-Augmented Generation) interface for OpenClaw agents. By utilizing a centralized Pinecone index located at /home/Mike/.openclaw/workspace/rag-pinecone-starter, it allows agents to maintain a long-term, queryable knowledge base without needing to duplicate data stores. This skill handles both the ingestion of markdown and text-based documentation into the 'pulse-rag' index and the retrieval of semantically relevant context for agent queries. When integrated with 'hybrid-db-health', it functions as a core component of a Persistent Memory stack, where this skill manages the data layer while the health module ensures reliability. It is the recommended standard for any workspace that requires shared knowledge across multiple agents.

Installation

To integrate this skill into your workspace, execute the following command in your terminal: clawhub install openclaw/skills/skills/cryptobro-man/shared-pinecone-rag

Ensure that the following environment prerequisites are met before initial use:

  1. Verify that PINECONE_API_KEY is correctly configured inside rag-pinecone-starter/.env.
  2. Ensure a functional Python virtual environment exists at rag-pinecone-starter/.venv.
  3. Verify that your system has read/write permissions for the directory /home/Mike/.openclaw/workspace/rag-pinecone-starter/docs/.

Use Cases

  • Technical Documentation Aggregation: Collect all project-related markdown docs in one place so agents can answer technical questions about project architecture.
  • Persistent Context Sharing: Enable different agents to recall previous project decisions, meeting notes, or research findings stored in the 'default' namespace.
  • Unified Knowledge Base: Prevent the fragmentation of data by forcing all agents to read from and write to the same source of truth rather than maintaining isolated, stale vector databases.

Example Prompts

  1. "Query the shared Pinecone index to find out what our documentation says about the API rate limits for the gateway."
  2. "I have just added a new set of design specification markdown files to the docs folder; please ingest these into the pulse-rag index."
  3. "Retrieve the relevant context from the shared RAG memory regarding our security protocols for local database backups."

Tips & Limitations

  • Shared Responsibility: This is a shared resource. Avoid deleting or overwriting documents unless you have workspace-wide authorization to prevent data loss for other agents.
  • Maintenance: Periodically check the 'pulse-rag' index health. If the index size grows significantly, consider performing a cleanup of the 'docs' folder to ensure retrieval speed remains optimal.
  • Naming Conventions: Use clear filenames in the docs directory, as the index will associate file names with the semantic chunks, making it easier to track the provenance of retrieved information.
  • Security: Ensure the Pinecone API key is not exposed in public repositories, as it grants write access to your vector database.

Metadata

Stars3409
Views0
Updated2026-03-25
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-cryptobro-man-shared-pinecone-rag": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags(AI)

#rag#pinecone#vector-database#knowledge-base#memory
Safety Score: 3/5

Flags: file-write, file-read, external-api, code-execution