Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

nav-graph导航图

Agent Skill

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

总安装

247

周安装

10

GitHub Stars

161

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alekspetrov/navigator --skill nav-graph

简介

用于查找、检索和筛选相关信息,支持导航图相关内容的快速定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景获取候选结果。
  • 通过 npx 安装,需确认权限范围和维护状态,注意潜在的联网或文件访问行为。
  • 建议结合来源仓库和原始 README 核验具体功能与使用限制。
  • nav-graph 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Navigator Knowledge Graph Skill

Query and manage the unified project knowledge graph. Surfaces relevant knowledge from tasks, SOPs, system docs, and experiential memories.

Why This Exists

Navigator v6.0.0 introduces the Project Knowledge Graph:

  • Unified search: Query across all knowledge types with one interface
  • Experiential memory: Patterns, pitfalls, decisions, learnings persist
  • Context-aware retrieval: Load only relevant knowledge (~1-2k tokens)
  • Relationship traversal: Find related concepts and documents

When to Invoke

Query triggers:

  • "What do we know about X?"
  • "Show everything related to X"
  • "Any pitfalls for X?"
  • "What decisions about X?"
  • "Find all knowledge about X"

Memory capture triggers:

  • "Remember this pattern:..."
  • "Remember this pitfall:..."
  • "Remember we decided:..."
  • "Remember this learning:..."

Graph management triggers:

  • "Initialize knowledge graph"
  • "Rebuild knowledge graph"
  • "Show graph stats"

Graph Location

.agent/knowledge/graph.json (~1-2k tokens, loaded on query)

Execution Steps

Step 1: Determine Action

QUERY (searching knowledge):

User: "What do we know about authentication?"
→ Query graph by concept

CAPTURE (storing memory):

User: "Remember: auth changes often break session tests"
→ Create new memory node

INIT (building graph):

User: "Initialize knowledge graph"
→ Build graph from existing docs

STATS (viewing graph):

User: "Show graph stats"
→ Display graph statistics

Step 2: Load or Initialize Graph

Check if graph exists:

if [ -f ".agent/knowledge/graph.json" ]; then
  echo "Graph exists"
else
  echo "No graph found, will initialize"
fi

Initialize if not exists:

python skills/nav-graph/functions/graph_builder.py \
  --agent-dir .agent \
  --output .agent/knowledge/graph.json

Step 3A: Query Knowledge (If QUERY Action)

Extract concept from user input:

User: "What do we know about testing?"
→ Concept: testing

User: "Any pitfalls for auth?"
→ Concept: auth (normalized to authentication)

Run query:

python skills/nav-graph/functions/graph_manager.py \
  --action query \
  --concept "testing" \
  --graph-path .agent/knowledge/graph.json

Display results:

Knowledge Graph: "testing"

TASKS (3)
  - TASK-30: Task Verification Enhancement (completed)
  - TASK-17: Visual Regression Integration (completed)
  - TASK-11: Project Skills Generation (completed)

MEMORIES (2)
  - PITFALL: "Auth changes break session tests" (90%)
  - PATTERN: "Always run unit tests before integration" (85%)

SOPs (1)
  - visual-regression-setup

FILES (5)
  - skills/backend-test/*
  - skills/frontend-test/*

Load details: "Read TASK-30" or "Show testing memories"

Step 3B: Capture Memory (If CAPTURE Action)

Parse memory from user input:

User: "Remember this pitfall: auth changes often break session tests"
→ Type: pitfall
→ Summary: "auth changes often break session tests"
→ Concepts: [auth, testing]

User: "Remember we decided to use JWT over sessions for scaling"
→ Type: decision
→ Summary: "use JWT over sessions for scaling"
→ Concepts: [auth, architecture]

Determine memory type:

User SaysMemory Type
"pattern", "we use", "approach"pattern
"pitfall", "watch out", "careful"pitfall
"decided", "chose", "because"decision
"learned", "discovered", "realized"learning

Create memory:

python skills/nav-graph/functions/graph_manager.py \
  --action add-memory \
  --memory-type pitfall \
  --summary "auth changes often break session tests" \
  --concepts "auth,testing" \
  --confidence 0.9 \
  --graph-path .agent/knowledge/graph.json

Optionally create detailed memory file:

# Pitfall: Auth Changes Break Session Tests

## Summary
Auth changes often break session tests due to...

## Context
Discovered during TASK-XX when...

## Recommended Approach
When modifying auth, always run...

## Related
- TASK-12: V3 Skills-Only
- SOP: autonomous-completion

Confirm capture:

Memory captured: mem-001

Type: Pitfall
Summary: "auth changes often break session tests"
Concepts: auth, testing
Confidence: 90%

This will be surfaced when working on auth or testing topics.

Step 3C: Initialize Graph (If INIT Action)

Build from existing docs:

python skills/nav-graph/functions/graph_builder.py \
  --agent-dir .agent \
  --output .agent/knowledge/graph.json

Display results:

Knowledge Graph Initialized

Scanned:
  - Tasks: 35
  - SOPs: 12
  - System docs: 3
  - Markers: 8

Extracted:
  - Concepts: 15
  - Relationships: 47

Graph saved to .agent/knowledge/graph.json

Query with: "What do we know about [topic]?"

Step 3D: Show Stats (If STATS Action)

Display graph statistics:

python skills/nav-graph/functions/graph_manager.py \
  --action stats \
  --graph-path .agent/knowledge/graph.json

Output:

Knowledge Graph Statistics
==========================
Total Nodes: 65
Total Edges: 47
Memories: 5
Last Updated: 2025-01-23T10:30:00Z

By Type:
  Tasks: 35
  SOPs: 12
  System: 3
  Markers: 8
  Concepts: 15
  Memories: 5

Step 4: Find Related (Optional)

If user asks for related items:

User: "What's related to TASK-29?"

Run traversal:

python skills/nav-graph/functions/graph_manager.py \
  --action related \
  --node-id "TASK-29" \
  --max-depth 2 \
  --graph-path .agent/knowledge/graph.json

Memory Types

Pattern

"We use X for Y in this project"

  • Reusable approaches
  • Project conventions
  • Best practices

Pitfall

"Watch out for X when touching Y"

  • Common mistakes
  • Gotchas
  • Failure modes

Decision

"We chose X over Y because Z"

  • Architecture decisions
  • Technology choices
  • Trade-off rationale

Learning

"X usually means Y in this codebase"

  • Project-specific knowledge
  • Error interpretations
  • Domain insights

Confidence System

Base confidence:

  • Correction-based: 0.8
  • Explicit capture: 0.9

Decay:

  • 1% per week since last validation

Boost:

  • +5% per use (max +25%)

Threshold:

  • Below 0.3: Candidate for pruning
  • Above 0.7: Reliable memory

Integration with Other Skills

nav-start (Session Start)

Loads graph stats on session start:

Knowledge graph: 65 nodes, 5 memories
Relevant: 2 memories for current context

nav-task (Task Creation)

Auto-extracts concepts from new tasks:

Creating TASK-35: Project Memory
Extracted concepts: knowledge, memory, graph
Added to graph.

nav-profile (Corrections)

Corrections auto-create memories via correction_to_memory.py:

# When correction detected in nav-profile:
python3 skills/nav-graph/functions/correction_to_memory.py \
  --action convert-one \
  --correction-json '{"pattern": "...", "context": "...", "confidence": "high"}'

# Output:
[Correction detected]
→ Type: pitfall (based on pattern analysis)
→ Concepts: [auth, testing] (auto-extracted)
→ Created memory: mem-002
→ Added to graph

Sync all corrections:

python3 skills/nav-graph/functions/correction_to_memory.py \
  --action sync \
  --profile-path .agent/.user-profile.json \
  --graph-path .agent/knowledge/graph.json

nav-marker (Context Markers)

Markers reference graph state:

## Graph State
- Memories surfaced: mem-001, mem-003
- Concepts active: auth, testing

Configuration

In .agent/.nav-config.json:

{
  "knowledge_graph": {
    "enabled": true,
    "auto_capture_corrections": true,
    "auto_capture_decisions": true,
    "auto_surface_relevant": true,
    "max_session_memories": 5,
    "confidence_decay_rate": 0.01,
    "staleness_threshold_days": 90,
    "git_tracked": true
  }
}

Graph Maintenance

Health Check

python3 skills/nav-graph/functions/graph_maintenance.py --action health

Output:

Knowledge Graph Health Check
========================================
Total Nodes: 94
Total Edges: 819
Memories: 2 (2 high confidence)
Health Score: 100/100

No issues detected!

Conflict Detection

Find memories that may contradict each other:

python3 skills/nav-graph/functions/graph_maintenance.py --action conflicts

Stale Memory Detection

Find memories not validated in 90+ days:

python3 skills/nav-graph/functions/graph_maintenance.py --action stale --stale-days 90

Low Confidence Pruning

Find and optionally remove low-confidence memories:

# Preview what would be removed
python3 skills/nav-graph/functions/graph_maintenance.py --action prune --threshold 0.3 --dry-run

# Actually remove (use with caution)
python3 skills/nav-graph/functions/graph_maintenance.py --action prune --threshold 0.3 --execute

Apply Decay

Reduce confidence of stale memories:

python3 skills/nav-graph/functions/graph_maintenance.py --action decay --decay-rate 0.01

Token Budget

ComponentTokensWhen
graph.json (50 nodes)~1000On query
graph.json (200 nodes)~2000On query
Memory summaries (5)~500On session start
Full memory detail~500 eachOn request

Session overhead: ~1.3k tokens


Success Criteria

Graph skill succeeds when:

  • Query returns relevant results across knowledge types
  • Memories persist and are surfaced appropriately
  • Concepts connect related items
  • Confidence decay/boost works
  • Graph stays under 2k tokens overhead

Best Practices

Good queries:

  • "What do we know about auth?" (specific concept)
  • "Any pitfalls for testing?" (scoped type)
  • "Show everything related to TASK-29" (node traversal)

Good memory capture:

  • "Remember: we use X for Y" (clear pattern)
  • "Remember this pitfall: X breaks Y" (specific issue)
  • "Remember we decided X because Y" (rationale included)

Avoid:

  • Overly broad queries ("What do we know?")
  • Storing code snippets in memories (use paths instead)
  • Capturing obvious knowledge (focus on project-specific insights)

This skill transforms Navigator from stateless assistant to knowledge-aware team member

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.13%
按下载量换算31

Claude

28.26%
按下载量换算22

Cursor

18.38%
按下载量换算14

Gemini CLI

10.11%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills