AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Novel Knowledge

skill-tulancn-vibe-noveling-novel-knowledge · by TulanCN

实体搜索、关系查询、标签查询、索引重建。其他 skill 的数据访问层。

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-tulancn-vibe-noveling-novel-knowledge

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tulancn-vibe-noveling-novel-knowledge)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Novel Knowledge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 的入向关系。

推荐工作流

  1. 直接编辑 memory/entities//.md
  2. 运行 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.