Pinecone Agents Ref banner
pinecone-io pinecone-io

Pinecone Agents Ref

Data community

Description

Specialized agent instructions for the Pinecone vector database, designed to be integrated into `AGENTS.md` file for use with AI coding assistants.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Pinecone Agent Reference

Specialized agent instructions for the Pinecone vector database, designed to enhance your AI coding assistant's understanding of Pinecone.

This project uses the [AGENTS.md format](https://agents.md/)β€”an open format used by over 20k open-source projects and supported by most coding assistants including Cursor, Aider, GitHub Copilot, and many others.

Quick Start

Download the latest release and run the installation command for your assistant:

Most Assistants (Cursor, Aider, GitHub Copilot, etc.)

**Linux/macOS:**

curl -sSL https://docs.pinecone.io/install-agent-reference | sh

Alternatively, run the commands directly:

curl -L -o agents.zip https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip
unzip agents.zip && rm agents.zip
touch AGENTS.md && cat AGENTS-pinecone-snippet.md >> AGENTS.md && rm AGENTS-pinecone-snippet.md

**Windows (PowerShell):**

Invoke-WebRequest -Uri https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip -OutFile agents.zip
Expand-Archive -Path agents.zip -DestinationPath . -Force
Remove-Item agents.zip
if (-not (Test-Path AGENTS.md)) { New-Item -Path AGENTS.md -ItemType File }
Add-Content -Path AGENTS.md -Value (Get-Content AGENTS-pinecone-snippet.md)
Remove-Item AGENTS-pinecone-snippet.md

Claude Code

Uses `CLAUDE.md` instead of `AGENTS.md`.

**Linux/macOS:**

curl -L -o agents.zip https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip
unzip agents.zip && rm agents.zip
touch CLAUDE.md && cat AGENTS-pinecone-snippet.md >> CLAUDE.md && rm AGENTS-pinecone-snippet.md

**Windows (PowerShell):**

Invoke-WebRequest -Uri https://github.com/pinecone-io/pinecone-agents-ref/releases/latest/download/agents.zip -OutFile agents.zip
Expand-Archive -Path agents.zip -DestinationPath . -Force
Remove-Item agents.zip
if (-not (Test-Path CLAUDE.md)) { New-Item