pinecone-assistant-paid-plan

pinecone-assistant-paid-plan is a skill for Claude Code, Codex from john-walkoe/pinecone_assistant_mcp. It costs 128 tokens per session (3,906 once invoked), scanned A, original, MIT.

A workflow for delegating questions to Pinecone Assistant, a retrieval system that finds information in a knowledge base and helps produce answers. It also evaluates answers against a supplied ground-truth answer for correctness and completeness.

In plain words
What is it for?
Use it when context limits are a concern, to retrieve and synthesize knowledge-base answers with citations, or to score an answer against known facts.
Why use it?
It reduces the amount of raw retrieved material an AI assistant must handle and adds a check for missing or unsupported facts.

Skill for Claude CodeCodex

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

Good fit Use it when context limits are a concern, to retrieve and synthesize knowledge-base answers with citations, or to score an answer against known facts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan
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-paid-plan
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-paid-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan/github.svg)](https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan)
Your own site
<a href="https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan"><img src="https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pinecone-assistant-paid-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan"><img src="https://agentmods.dev/badge/skills/john-walkoe/pinecone_assistant_mcp/pinecone-assistant-paid-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,906 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.00128 $0.03906
Opus 5 $0.00064 $0.01953
Sonnet 5 $0.00026 $0.00781
Haiku 4.5 $0.00013 $0.00391

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

Security

Grade A, and why

pinecone-assistant-paid-plan 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 11d 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-paid-plan/SKILL.md · 398 lines

How it starts

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

Pinecone Assistant MCP - Paid Plan Skill

assistant_chat is a sub-agent delegation mechanism. Pinecone internally retrieves context from the knowledge base, feeds it to the configured LLM, and returns a synthesized, citation-backed answer. Claude receives only the compact result (~500–2000 tokens) rather than raw document chunks.

evaluate_answer is a quality gate. Given a question, a generated answer, and a ground truth answer, it scores correctness (precision), completeness (recall), and alignment (harmonic mean) — and returns per-fact entailment reasoning.

Primary tools: assistant_chat, evaluate_answer Primary prompt: delegated_research

Available Tools

Tool Cost Tier Best For
assistant_context Context tokens (cheapest) Raw document retrieval, targeted lookups
assistant_strategic_multi_search_context Context tokens Multi-angle raw retrieval, comprehensive coverage
assistant_strategic_multi_search_chat Input tokens AI synthesis across multiple search patterns
assistant_chat Input + output tokens Delegated synthesis — Pinecone AI handles retrieval + answer
evaluate_answer Input + output tokens Score answer correctness, completeness, and alignment
get_configuration_status Free Check current assistant name and model
update_configuration Free Switch between assistants mid-conversation

Tool Selection Decision Tree

Choose based on the task:

User wants to find information
├── Need synthesized answer + citations (let Pinecone do the work)
│   └── assistant_chat (context_options={"top_k": 5, "snippet_size": 2048})
│       └── delegated_research prompt for guided workflow
│
├── Need to validate answer quality against known ground truth
│   └── evaluate_answer(question, answer, ground_truth_answer)
│       ├── Scores: correctness (precision), completeness (recall), alignment (F1)
│       └── Use after assistant_chat in agentic/evaluation workflows
│
├── Claude's context window under pressure
│   └── assistant_chat (delegation preserves context window)
│       └── Chain independent calls without history
│
├── Need raw chunks to synthesize yourself / control the output
│   ├── Single topic → assistant_context (top_k=3-5)
│   └── Multi-angle → assistant_strategic_multi_search_context
│
└── Need AI to reason across many search patterns
    └── assistant_strategic_multi_search_chat

Read the full file on GitHub · 398 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. 11d ago First seen · 398 lines · 128 tokens per session scan A 71b025e30f7a

Subscribe to this mod's changes

pinecone-assistant-paid-plan is a skill published in the GitHub repository john-walkoe/pinecone_assistant_mcp (1 stars, last pushed 6mo ago), licensed MIT. It adds 128 tokens to every session and 3,906 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

llm-wiki

The foundational knowledge distillation pattern for building and maintaining an AI-powered Obsidian wiki. Based on Andrej Karpathy's LLM Wiki architecture. Use this skill whenever the user wants to understand the wiki pattern, set up a new knowledge base, or needs guidance on the three-layer architecture (raw sources…

Ar9av/obsidian-wiki · 113 tokens

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