← 返回
AI智能 中文

Knowledge Graph

Embedded knowledge graph for persistent structured knowledge. ALWAYS use proactively — do NOT wait for user to ask. Auto-triggers on: (1) any mention of peop...
嵌入知识图谱,用于持久的结构化知识。始终主动使用——不要等待用户询问。自动触发于:(1) 任何提及人物...
xnohat
AI智能 clawhub v1.1.1 1 版本 99862.2 Key: 无需
★ 2
Stars
📥 1,409
下载
💾 11
安装
1
版本
#latest

概述

Knowledge Graph Skill

Personal KG stored as JSON, queried via CLI scripts. Produces a compact KGML summary for session context.

Core instructions are in AGENTS.md (auto-injected by install). This file covers setup, advanced usage, and reference only.

First-Time Setup

node scripts/install.mjs [--workspace /path/to/workspace] [--platform openclaw|claude|gemini]

Auto-detects platform and patches the agent instructions file (AGENTS.md, CLAUDE.md, or GEMINI.md) with KG instructions + graph summary. Idempotent.

KGML Format Reference

#KGML v2 | <count>e <count>r | depth:<N> | <date>
[category]
Label(Alias):type — attr1,attr2
  ChildLabel(CA):type — attrs    ← indent = parent>child
%rels
A>verb>B C>verb>D                ← cross-branch relations (aliases)
%vault key1,key2                 ← vault key names (no values)

Advanced Query Commands

Beyond the basics in AGENTS.md (find, traverse, rels):

node scripts/query.mjs children <id>      # Direct children
node scripts/query.mjs type <type>         # All entities of a type
node scripts/query.mjs cat <category>      # All in category
node scripts/query.mjs orphans             # Unlinked entities
node scripts/query.mjs stats               # Graph statistics
node scripts/query.mjs recent [--days 7]   # Created/updated recently
node scripts/query.mjs timeline [--from YYYY-MM-DD] [--to YYYY-MM-DD]
node scripts/query.mjs changed             # Modified after creation
node scripts/query.mjs uncertain           # Confidence < 0.5

Merge

node scripts/merge.mjs --target <id> --source <id> --mode absorb|nest

Vault (secrets)

node scripts/vault.mjs set <key> <value> --note "description"
node scripts/vault.mjs get <key>          # Raw value (for piping)
node scripts/vault.mjs list               # Keys only
node scripts/vault.mjs del <key>

Depth Heuristic — How Many Layers to Extract

Before adding a rich knowledge item (article, paper, report, system description), assess complexity first:

# Score text content and get recommended depth + checklist:
node scripts/depth-check.mjs "paste text or summary here"
echo "article text" | node scripts/depth-check.mjs
node scripts/depth-check.mjs --file /path/to/article.txt
node scripts/depth-check.mjs --json    # machine-readable

# Score interpretation:
# 0-1 → 1 layer (root only)
# 2-3 → 2 layers (root + concepts)
# 4-5 → 3 layers (root → domains → mechanisms)
# 6-7 → 4+ layers (full extraction with orgs/events/policies + cross-relations)

Key rule: Never stop at 2 layers for complex content. If score ≥ 4, extract all named orgs, events, policies, and cross-relations — not just the top-level themes.

Visualization

node scripts/visualize.mjs                # → data/kg-viz.html
node scripts/visualize.mjs --output /tmp/graph.html

ALWAYS use this script. Do NOT write custom HTML. Output is self-contained, offline, no CDN.

Parent edges render as blue dashed arrows (60% opacity). Regular edges are red solid arrows.

Configuration

All settings have sensible defaults. Override only what you need — config stores only your changes.

node scripts/config.mjs                       # list all settings with current values
node scripts/config.mjs get <key>              # get a value (e.g. summary.tokenBudget)
node scripts/config.mjs set <key> <value>      # set a value
node scripts/config.mjs reset <key>            # reset single key to default
node scripts/config.mjs reset --all            # reset everything
node scripts/config.mjs --json                 # full config as JSON

Available Settings

SectionKeyDefaultDescription
------------------------------------
summarytokenBudget5000Max tokens for kg-summary.md
maxChildDepthautoTree depth (null=auto: 3/<100, 2/100-400, 1/>400)
maxAttrLen40Max characters for attribute values
maxPerRoot4Max relations shown per root subtree
compactThreshold400Entity count for compact mode
mediumThreshold200Entity count for medium depth
validationminEntities30Min entities for extraction PASS
minRelationRatio0.5Relations per entity ratio
minDepth3Min hierarchy depth for PASS
minEvents3Min event nodes for PASS
depthCheckentityCapForEstimate50Cap NER count for target estimation
minEntitiesMultiplier1.0Named entities → min target multiplier
extraEntities30Added to min for max entity range
consolidationautoNesttrueAuto-nest single-relation orphans
mergeSuggestionstrueSuggest merges for similar labels
pruneEmptyAttrstrueRemove empty/null attrs
levenshteinThreshold2Max edit distance for merge suggestions
visualizationrepulsion5000Physics repulsion force
edgeRestLength160Default edge rest length
overlapPenalty3Overlap repulsion multiplier
simulationSteps500Physics simulation iterations
initialSpread1.5Initial node spread multiplier
zoomAnimationMs400Zoom-to-node animation duration

Config file: data/kg-config.json (per-agent, gitignored).

Cross-Agent Access (read-only)

import { createReader } from '<path-to-skill>/lib/reader.mjs';
const kg = createReader();
kg.search("query"); kg.traverse("id", { depth: 2 }); kg.stats();

Or CLI: node scripts/export.mjs --format json --target /path/to/output.json

Memory Import

node scripts/import-memory.mjs            # dry-run
node scripts/import-memory.mjs --apply    # add with confidence 0.5

Then: node scripts/query.mjs uncertain to review auto-imported entities.

Knowledge Entity Guide

The knowledge type covers both declarative and procedural knowledge. Use attrs and tags to differentiate:

KindTagsKey attrsExample
--------------------------------
Fact/finding#fact, #tilsource, field, summary"LLMs use ~4 chars per token"
Research/paper#paper, #researchsource, field, summary, authorAI alignment paper findings
Idea#ideasummary, status"Build a CLI for KG queries"
How-to/procedure#howto, #proceduresteps, context, summary"How to deploy on Pi"
Mental model#mental-model, #frameworksteps, context, summary"Debug network: ping→DNS→firewall"
Workflow#workflowsteps, context, summary"Code review: tests first, then impl"

Attrs for procedural knowledge:

  • steps: ordered procedure as string (use or numbered: "1. Check logs → 2. Reproduce → 3. Fix → 4. Test")
  • context: when/where to apply this knowledge (e.g. "when network is down", "during code review")
  • summary: short description of what this knowledge is about

Consolidation

Run node scripts/consolidate.mjs weekly or when entity count > 80. Then summarize.mjs.

Security

  • NEVER print vault values in chat or log to memory/ files
  • vault.enc.json and .vault-key must never be in context
  • Other agents: read-only via reader.mjs, NO write access

版本历史

共 1 个版本

  • v1.1.1 当前
    2026-03-29 16:11 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 836 📥 213,187
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 712 📥 243,883
ai-intelligence

Nano Banana Pro

steipete
使用 Nano Banana Pro (Gemini 3 Pro Image) 生成或编辑图像。支持文生图、图生图及 1K/2K/4K 分辨率,适用于图像创建、修改及编辑请求,使用 --input-image 指定输入图像。
★ 418 📥 115,240