Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

qdrant-patterns定量模式

Agent Skill

qdrant-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

2

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qdrant-patterns(定量模式)
来源仓库:https://github.com/mindmorass/reflex
仓库路径:skills/qdrant-patterns
安装命令:
npx skills add https://github.com/mindmorass/reflex --skill qdrant-patterns
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindmorass/reflex --skill qdrant-patterns

简介

- 简要内容摘要

  • 查询文档
  • 语义搜索
  • 按含义查找相关内容:
  • 工具:qdrant-find
  • 查询:“如何使用 OAuth 进行身份验证”
  • 该工具返回语义最相似的存储信息。
  • 搜索技巧
  • 使用自然语言查询
  • 具体说明您要寻找的内容
  • 嵌入模型(fastembed)处理语义匹配
  • RAG工作流程
  • 1.检查现有知识
  • 在研究之前,查询现有内容:
  • 工具:qdrant-find
  • 查询:“GitHub Actions 工作流程语法”
  • 如果结果相关并且是最新的(检查元数据),请使用它们。否则,收获新鲜内容。
  • 2. 收获和储存
  • 收集新信息时:
  • 获取内容(WebFetch、读取等)
  • 提取关键信息
  • 使用元数据存储在 Qdrant 中
  • 引用存储的内容
  • 工具:qdrant-store
  • 信息:“<此处提取的内容>”
  • 元数据:
  • 来源:“<url 或路径>”
  • 类型:“文档”
  • Harvested_at:“<今天的日期>”
  • 标签:“<相关,关键字>”
  • 3. 检索上下文
  • 回答问题或实现功能时:
  • 查询Qdrant相关文档
  • 在上下文中包含最重要的结果
  • 引用元数据的来源
  • 示例:研究工作流程
  • 检查现有:使用 qdrant-find 查询主题
  • 评估新鲜度:检查harvested_at
  • 在结果中
  • 需要时收获:获取新内容
  • 使用元数据存储:通过 qdrant-store 添加
  • 用于响应:包括相关块
  • 温馨提示
  • 保持存储的信息集中(每个条目一个主题)
  • 使用一致的元数据模式
  • 在每个条目中包含足够的上下文,以便独立使用
  • 使用描述性标签更容易过滤
  • 在收获新内容之前检查现有知识
  • 每周安装量
  • 16
  • 存储库
  • 思维混乱/反射
  • GitHub 之星
  • 2
  • 第一次看到
  • 2026 年 1 月 24 日
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克警告

SKILL.md

Qdrant Patterns

Use the qdrant MCP server tools for persistent vector storage and semantic retrieval.

Available Tools

ToolPurpose
qdrant-storeStore information with automatic embedding
qdrant-findSemantic search for stored information

Collection Configuration

The collection name is configured via environment variable:

  • COLLECTION_NAME - Set to ${WORKSPACE_PROFILE:-default}_memories

This provides workspace isolation - each profile gets its own collection.

Storing Documents

Store information with the qdrant-store tool:

Tool: qdrant-store
Information: "GitHub REST API uses OAuth tokens for authentication. Personal access tokens (PATs) provide scoped access to repositories, issues, and other resources. Fine-grained PATs offer more granular permissions than classic tokens."
Metadata:
  source: "https://docs.github.com/rest/authentication"
  type: "documentation"
  harvested_at: "2025-01-04"
  tags: "github,api,authentication"

Metadata Best Practices

Always include:

  • source - Original URL or file path
  • type - Content type (documentation, code, article, etc.)
  • harvested_at - ISO date of collection
  • tags - Comma-separated searchable keywords

Optional but useful:

  • project - Related project name
  • language - Programming language if code
  • version - API or library version
  • summary - Brief content summary

Querying Documents

Semantic Search

Find related content by meaning:

Tool: qdrant-find
Query: "how to authenticate with OAuth"

The tool returns the most semantically similar stored information.

Search Tips

  • Use natural language queries
  • Be specific about what you're looking for
  • The embedding model (fastembed) handles semantic matching

RAG Workflow

1. Check Existing Knowledge

Before researching, query for existing content:

Tool: qdrant-find
Query: "GitHub Actions workflow syntax"

If results are relevant and recent (check metadata), use them. Otherwise, harvest fresh content.

2. Harvest and Store

When gathering new information:

  1. Fetch the content (WebFetch, Read, etc.)
  2. Extract key information
  3. Store in Qdrant with metadata
  4. Reference the stored content
Tool: qdrant-store
Information: "<extracted content here>"
Metadata:
  source: "<url or path>"
  type: "documentation"
  harvested_at: "<today's date>"
  tags: "<relevant,keywords>"

3. Retrieve for Context

When answering questions or implementing features:

  1. Query Qdrant for relevant documents
  2. Include top results in context
  3. Cite sources from metadata

Example: Research Workflow

  1. Check existing: Query for topic with qdrant-find
  2. Assess freshness: Check harvested_at in results
  3. Harvest if needed: Fetch new content
  4. Store with metadata: Add via qdrant-store
  5. Use for response: Include relevant chunks

Tips

  • Keep stored information focused (one topic per entry)
  • Use consistent metadata schemas
  • Include enough context in each entry to be useful standalone
  • Use descriptive tags for easier filtering
  • Check existing knowledge before harvesting new content

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.53%
按下载量换算34

Gemini CLI

22.56%
按下载量换算29

Antigravity

18.28%
按下载量换算23

windsurf

11.3%
按下载量换算14

trae

6.82%
按下载量换算9

Codex

3.57%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills