Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计提醒

knowledge知识

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

9

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tao3k/omni-dev-fusion --skill knowledge

简介

knowledge 用于查找、检索和筛选相关信息,支持多源信息整合。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过关键词输入和来源仓库路径获取候选信息,支持进一步核验具体用法。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • knowledge 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Knowledge Skill

Project Cortex - Structural Knowledge Injection and Long-Term Knowledge Retrieval.

Boundary note:

  • This skill is for durable/reusable knowledge.
  • Short-term operational memory belongs to Rust memory core and is exposed separately via memory skill facade.

Commands

Unified Search (primary)

Single entry point for all knowledge search. Use this instead of separate search/link_graph_hybrid_search to avoid tool ambiguity.

ParameterTypeDefaultDescription
querystr-Search query (required)
modestr"hybrid"hybrid (link_graph+vector), keyword (ripgrep), link_graph (links only), vector (semantic only)
max_resultsint10Maximum results
scopestr"all"For mode=keyword only: docs, references, skills, harvested, all

Example:

@omni("knowledge.search", {"query": "UltraRAG research report"})
@omni("knowledge.search", {"query": "architecture", "mode": "keyword", "scope": "harvested"})

Documentation Commands

search_documentation

Search markdown documentation and references for specific topics.

ParameterTypeDefaultDescription
querystr-Search term (required)

Example:

@omni("knowledge.search_documentation", {"query": "trinity architecture"})

search_standards

Search coding standards and engineering guidelines in docs/reference/.

ParameterTypeDefaultDescription
topicstr-Engineering topic (required)

Example:

@omni("knowledge.search_standards", {"topic": "python linting"})

Semantic Search Commands

knowledge_search (alias: code_search)

Semantic search for code patterns and documentation in knowledge base.

ParameterTypeDefaultDescription
querystr-Natural language query (required)
limitint5Maximum results

Example:

@omni("knowledge.knowledge_search", {"query": "error handling patterns", "limit": 5})

code_context

Get LLM-ready context blocks for a query.

ParameterTypeDefaultDescription
querystr-Query for context (required)
limitint3Number of context blocks

Example:

@omni("knowledge.code_context", {"query": "how to handle errors", "limit": 3})

Knowledge Base Commands

update_knowledge_base

Save knowledge entry for future retrieval.

ParameterTypeDefaultDescription
categorystr-patterns/solutions/errors/techniques/notes (required)
titlestr-Entry title (required)
contentstr-Markdown content (required)
tagslist[str][]Tags for categorization

Example:

@omni("knowledge.update_knowledge_base", {
    "category": "patterns",
    "title": "Error Handling Pattern",
    "content": "Use Result types instead of exceptions...",
    "tags": ["error", "python"]
})

search_notes

Search existing notes and knowledge entries.

ParameterTypeDefaultDescription
querystr-Search query (required)
categorystrNoneFilter by category
limitint10Maximum results

Example:

@omni("knowledge.search_notes", {"query": "error handling", "category": "patterns"})

summarize_session

Summarize current session trajectory into structured markdown.

ParameterTypeDefaultDescription
session_idstr-Unique session identifier (required)
trajectorylist[dict]-Execution steps (required)
include_failuresbooltrueInclude failed approaches

Example:

@omni("knowledge.summarize_session", {
    "session_id": "session-123",
    "trajectory": [{"step": 1, "action": "search", "result": "found 5 files"}],
    "include_failures": true
})

Knowledge Ops Commands

ingest_knowledge

Ingest or update project knowledge base.

ParameterTypeDefaultDescription
cleanboolfalseFull re-index if true

Example:

@omni("knowledge.ingest_knowledge", {"clean": false})

knowledge_status

Check knowledge base status.

Example:

@omni("knowledge.knowledge_status")

Link Graph and TOC (use unified search for link_graph-only)

For link-graph-only (link reasoning, no vector), use the unified search with mode="link_graph":

@omni("knowledge.search", {"query": "agent skills progressive disclosure", "mode": "link_graph", "max_results": 5})

For structured filtering/sorting, use schema-v2 search_options:

@omni("knowledge.search", {
  "query": "architecture",
  "mode": "link_graph",
  "max_results": 5,
  "search_options": {
    "schema": "omni.link_graph.search_options.v2",
    "match_strategy": "exact",
    "sort_terms": [{"field": "title", "order": "asc"}],
    "filters": {
      "link_to": {"seeds": ["design-doc"], "recursive": true, "max_distance": 2},
      "tags": {"any": ["architecture", "design"]}
    }
  }
})

mode="link_graph" responses include parsed_query (residual free-text after directive extraction) and normalized effective search_options from the Rust planner.

link_graph_toc

Get Table of Contents for LLM context (all notes overview).

ParameterTypeDefaultDescription
limitint100Maximum notes to return

Example:

@omni("knowledge.link_graph_toc", {"limit": 50})

link_graph_hybrid_search

Hybrid search combining LinkGraph reasoning + vector search fallback.

ParameterTypeDefaultDescription
querystr-Search query (required)
max_resultsint10Maximum results
use_hybridbooltrueUse vector fallback

Example:

@omni("knowledge.link_graph_hybrid_search", {"query": "architecture MCP", "use_hybrid": true})

link_graph_stats

Get knowledge base statistics.

Example:

@omni("knowledge.link_graph_stats")

link_graph_refresh_index

Trigger LinkGraph index refresh through the common backend API. Useful for operations/debugging with -v monitor output.

ParameterTypeDefaultDescription
changed_pathslist[str][]Changed paths for delta refresh planning
force_fullboolfalseForce full rebuild instead of delta path

Example:

@omni("knowledge.link_graph_refresh_index", {"changed_paths": ["docs/architecture/kernel.md"]})
@omni("knowledge.link_graph_refresh_index", {"force_full": true})

link_graph_links

Find notes linked to/from a specific note.

ParameterTypeDefaultDescription
note_idstr-Note ID (required)
directionstr"both""to", "from", or "both"

Example:

@omni("knowledge.link_graph_links", {"note_id": "architecture", "direction": "both"})

link_graph_find_related

Find notes related to a given note using link-graph traversal.

ParameterTypeDefaultDescription
note_idstr-Starting note ID (required)
max_distanceint2Maximum link distance
limitint20Maximum results

Example:

@omni("knowledge.link_graph_find_related", {"note_id": "agent-skills", "max_distance": 2})

Core Concepts

TopicDescriptionReference
Development ContextProject rules, scopes, guardrailscontext.md
Writing MemoryWriting style guidelineswriting.md
Session SummarizationTrajectory capture patternsession.md

Best Practices

  • Search first: Before adding new knowledge, search for duplicates
  • Use categories: Organize entries by category (patterns/solutions/errors/techniques)
  • Add tags: Use consistent tags for better retrieval
  • Include examples: Code examples improve AI understanding

ingest_document

Ingest a document (PDF, Markdown, etc.) with full RAG pipeline: parse, chunk, optional entity extraction and graph storage, then vector store.

ParameterTypeDefaultDescription
file_pathstr-Local path or PDF URL (e.g. https://arxiv.org/pdf/2601.03192) (required)
chunking_strategystr"semantic"sentence, paragraph, sliding_window, semantic
extract_entitiesbooltrueExtract entities and store in knowledge graph
store_in_graphbooltrueStore extracted entities/relations in graph

When file_path is a URL, the file is downloaded to project data (.data/knowledge/downloads) then processed.

Example:

@omni("knowledge.ingest_document", {"file_path": "docs/guide.pdf"})
@omni("knowledge.ingest_document", {"file_path": "https://arxiv.org/pdf/2601.03192"})

Advanced

  • Semantic vs Text Search: Use knowledge_search for semantic understanding, search_documentation for exact matches
  • Batch Ingest: Call ingest_knowledge with clean=false for incremental updates
  • Session Continuity: Use session_id to link related sessions
  • PDF from URL: Use ingest_document with a PDF URL; file is saved under project data then ingested

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.62%
按下载量换算23

windsurf

23.65%
按下载量换算22

trae

18.97%
按下载量换算17

OpenCode

13.14%
按下载量换算12

Codex

7.64%
按下载量换算7

Antigravity

3.14%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills