用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/sandraschi/discord-mcp --skill discord-rag命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | discord-rag |
| description | Ingest channel messages into LanceDB and run semantic search (discord rag_ingest / rag_query). |
Description: Turn Discord message history into a searchable knowledge base. Covers message indexing, semantic search across channels, user activity pattern extraction, topic clustering, and cross-channel knowledge retrieval.
discord(operation='list_channels', guild_id='...') — List available channels in a guild. Get channel_id for targeting.discord(operation='get_messages', channel_id='...', limit=50) — Raw message fetch without RAG.discord(operation='rag_ingest', channel_id='...', limit=100, guild_name='...', channel_name='...', table_name='discord_messages') — Ingest messages into LanceDB vector index. Embeds message content, author, and timestamp.discord(operation='rag_query', query_text='...', top_k=10, table_name='discord_messages') — Semantic search over ingested messages. Returns content + author + timestamp + channel context.discord(operation='list_channels', guild_id='...') to find the target channel. Note the channel_id.discord(operation='rag_ingest', channel_id='...', limit=50) to index recent messages. For full history, repeat with paginated limit calls.discord(operation='rag_query', query_text='...', top_k=10) for semantic search. Prefer narrow, specific queries for best results.get_messages; large limits increase API load (rate limits apply).table_name parameter allows multiple named indexes (e.g., per guild or per topic).rag_query(query_text="new authentication flow", top_k=10)rag_ingest(channel_id="123456", limit=200, guild_name="My Guild", channel_name="support")rag_query(query_text="Alice deployment", top_k=5)