pinecone-assistant

pinecone-assistant is a skill for Claude Code, Codex from john-walkoe/pinecone_assistant_mcp. It costs 115 tokens per session (2,488 once invoked), scanned A, original, MIT.

A guide for researching documents stored in Pinecone Assistant, a service that lets an agent search a document knowledge base. It recommends which search method to use, how much context to request, and when to combine searches or assistants.

In plain words
What is it for?
Use it when looking up information in connected documents, researching a topic from several angles, or synthesizing findings across searches.
Why use it?
It helps you choose an appropriate research approach and manage the amount and cost of retrieved document context.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it when looking up information in connected documents, researching a topic from several angles, or synthesizing findings across searches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add john-walkoe/pinecone_assistant_mcp --skill pinecone-assistant
Clone the repo
git clone --depth 1 https://github.com/john-walkoe/pinecone_assistant_mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pinecone-assistant

README.md
[![agentmods](https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant.svg)](https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant)
Your own site
<a href="https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant"><img src="https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant.svg" alt="Measured on agentmods" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,488 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00115 $0.02488
Opus 5 $0.00057 $0.01244
Sonnet 5 $0.00023 $0.00498
Haiku 4.5 $0.00012 $0.00249

Measured 8d ago against content hash fb0c1237de08, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

pinecone-assistant scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/pinecone-assistant/SKILL.md · 253 lines

How it starts

The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pinecone Assistant MCP - Research Skill

Available Tools

Tool Cost Tier Best For
assistant_context Context tokens (cheapest) Raw document retrieval, most queries
assistant_strategic_multi_search_context Context tokens Multi-angle research, comprehensive coverage
assistant_strategic_multi_search_chat Input tokens (expensive) When AI synthesis across patterns is needed
assistant_chat Input + output tokens (most expensive) Complex follow-up, AI-powered analysis
get_configuration_status Free Check current assistant name and model
update_configuration Free Switch between assistants mid-conversation

Tool Selection Decision Tree

Always start with the cheapest tool that meets the need:

User wants to find information
├── Simple lookup / single topic
│   └── assistant_context (top_k=3-5)
│
├── Multi-angle / comprehensive topic
│   └── assistant_strategic_multi_search_context (context tokens)
│       └── Follow up with assistant_context for specific gaps
│
├── Need AI to reason across multiple search results
│   └── assistant_strategic_multi_search_chat (input tokens)
│       └── Only when synthesis/reasoning is explicitly needed
│
└── Complex conversation / targeted follow-up
    └── assistant_chat (most expensive - use last)
        └── Stateless by default - only add history when new
            question contains pronouns referencing prior answer

Never start with assistant_chat when assistant_context would suffice.

Token Budget Management

Free Tier Limits (LIFETIME — do NOT reset monthly)

  • Context tokens: 500K lifetime — used by assistant_context and *_context variants
  • Input tokens: 1.5M lifetime — used by assistant_chat and assistant_strategic_multi_search_chat
  • Output tokens: 200K lifetime

⚠️ These are one-time lifetime allocations, not monthly quotas. Once exhausted, upgrade to a paid plan.

Strategy

Maximize context token usage. Minimize input token usage.

Read the full file on GitHub · 253 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 253 lines · 115 tokens per session scan A fb0c1237de08

Subscribe to this mod's changes

pinecone-assistant is a skill published in the GitHub repository john-walkoe/pinecone_assistant_mcp (1 stars, last pushed 6mo ago), licensed MIT. It adds 115 tokens to every session and 2,488 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

wegent-knowledge

Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.

wecode-ai/Wegent · 51 tokens

karpathy-llm-wiki

Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.

Astro-Han/karpathy-llm-wiki · 67 tokens

chroma

Open-source embedding database for AI applications. Store embeddings and metadata, perform vector and full-text search, filter by metadata. Simple 4-function API. Scales from notebooks to production clusters. Use for semantic search, RAG applications, or document retrieval. Best for local development and open-source…

davila7/claude-code-templates · 63 tokens

qi-cli

Guide for using qi, a local knowledge search CLI for macOS and Linux. Use this skill when the user wants to index documents into a searchable knowledge base, search or retrieve from one, configure qi's collections or embedding providers (Ollama, OpenAI-compatible), choose between its search modes (BM25, hybrid…

itsmostafa/qi · 88 tokens

retrieval-workflow

Retrieve ranked evidence bundles from the published DocMason knowledge base.

JetXu-LLM/DocMason · 18 tokens

ingest

Populate the gnosis-mcp knowledge base — from local files, git history, or a crawled website. Handles the full matrix of flags (--force, --prune, --wipe, --embed, --include-crawled) in one place.

nicholasglazer/gnosis-mcp · 54 tokens