smithery/aiskillstore

rag-pipeline

Details on the Retrieval Augmented Generation pipeline, Ingestion, and Vector Search.

Installation

$ npx skills add smithery/aiskillstore --skill rag-pipeline

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/aiskillstore · top by installs.

npx skills add smithery/aiskillstore

Browse all from smithery/aiskillstore

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,066 B
  • docs SUMMARY.md 105 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

RAG Pipeline Logic

Ingestion

  • Script: backend/ingest.py
  • Process:

1. Scans docs/. 2. Cleans MDX (removes frontmatter/imports). 3. Chunks text (1000 chars, 100 overlap). 4. Embeds using models/text-embedding-004. 5. Upserts to Qdrant collection physicalaibook.

  • Run: python backend/ingest.py

Vector Search (Qdrant)

  • Client: qdrant-client
  • Collection: physicalaibook
  • Vector Size: 768 (Gecko-004)
  • Similarity: Cosine

Prompt Engineering

  • File: backend/utils/helpers.py.
  • RAG Prompt: Constructs a prompt containing retrieved context chunks.
  • Personalization: backend/personalization.py creates system instructions based on softwarebackground and hardwarebackground of the user.

Agentic Flow

We use a custom Agent class (backend/agents.py) that wraps the LLM calls, allowing for future expansion into multi-agent workflows.