Install
$ agentstack add skill-tulancn-vibe-noveling-novel-knowledge ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
知识图谱工具
供其他 skill 调用,负责数据访问,不包含高层语义判断。
命令
python {SKILL_DIR}/scripts/knowledge_graph.py [args]
search — 搜索设定
python {SKILL_DIR}/scripts/knowledge_graph.py search [-t type] [-l limit] [-j]
update — 创建实体文件
python {SKILL_DIR}/scripts/knowledge_graph.py update [-j]
创建空模板文件,不覆盖已有文件。编辑完成后需运行 rebuild。
relations — 查询实体关系
python {SKILL_DIR}/scripts/knowledge_graph.py relations
返回出向和入向关系。
tags — 按标签查询
python {SKILL_DIR}/scripts/knowledge_graph.py tags
rebuild — 重建知识图谱(核心命令)
python {SKILL_DIR}/scripts/knowledge_graph.py rebuild
扫描 memory/entities/ 下所有 md 文件的 YAML frontmatter,重新生成 _graph.json 和 _index.json。
运行时机:创建新实体文件后、编辑实体 frontmatter 后、批量修改后、novel-sync 完成后。
实体文件格式
每个实体文件的 YAML frontmatter:
---
id:
name:
type:
tags: [标签1, 标签2]
relations:
- target:
relation:
description:
---
关系是双向的:A → B 的关系会自动生成 B → A 的入向关系。
推荐工作流
- 直接编辑
memory/entities//.md - 运行
rebuild同步知识图谱
不要手动编辑 _graph.json 或 _index.json。
依赖
PyYAML(解析嵌套 YAML frontmatter):uv pip install pyyaml
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: TulanCN
- Source: TulanCN/vibe-noveling
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.