Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/idea2realclaw/myagent/dragon-knowledge-hub)<a href="https://agentmods.dev/skills/idea2realclaw/myagent/dragon-knowledge-hub"><img src="https://agentmods.dev/badge/skills/idea2realclaw/myagent/dragon-knowledge-hub.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00110 | $0.01032 |
| Opus 5 | $0.00055 | $0.00516 |
| Sonnet 5 | $0.00022 | $0.00206 |
| Haiku 4.5 | $0.00011 | $0.00103 |
Grade A, and why
dragon-knowledge-hub scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
龙族共享知识库
概述
本 Skill 提供龙族徒弟之间的双向文件共享能力,支持:
- 共享 MEMORY.md:将自己的长期记忆发布给其他徒弟
- 共享 Skill:将某个技能打包发给指定徒弟
- 下载他人共享资源:获取其他徒弟上传的记忆和技能
- 启动共享服务器:师父机器运行,Cloudflare Tunnel 穿透
核心脚本(位于 scripts/)
| 脚本 | 说明 |
|---|---|
sharing_server.py |
双向文件共享 HTTP 服务器(端口 3001) |
dragon_sync.py |
命令行同步工具(上传/下载/列表) |
start_hub.sh |
一键启动服务器 + Cloudflare Tunnel |
工作流
场景一:师父开启共享服务(首次或重启)
# 在师父的 MacBook Pro 上运行
bash ~/.workbuddy/skills/dragon-knowledge-hub/scripts/start_hub.sh
服务启动后,终端会显示 Cloudflare 临时外网地址,将该地址通知所有徒弟:
python3 ~/.workbuddy/skills/dragon-knowledge-hub/scripts/dragon_sync.py \
config set server https://xxxx.trycloudflare.com
场景二:配置个人账号(每个徒弟首次运行)
SYNC="python3 ~/.workbuddy/skills/dragon-knowledge-hub/scripts/dragon_sync.py"
$SYNC config set server https://xxxx.trycloudflare.com # 师父告知的地址
$SYNC config set username longmei # 替换为自己的用户名
$SYNC config set password pass789 # 替换为自己的密码
场景三:共享自己的 MEMORY.md
$SYNC share-memory
# 等价于将 ~/.workbuddy/memory/MEMORY.md 上传为 memory/用户名_MEMORY.md
场景四:共享某个 Skill 给其他徒弟
# 例:龙梅把 ftp-setup 技能分享给龙土豆和龙金宝
$SYNC share-skill ftp-setup
# 将 ~/.workbuddy/skills/ftp-setup/ 打包成 ftp-setup.zip 上传到 skills/
# 龙土豆/龙金宝同步所有共享技能
$SYNC sync-skills
场景五:查看共享库中所有文件
$SYNC list # 列出根目录
$SYNC list memory/ # 列出 memory 目录
$SYNC list skills/ # 列出 skills 目录
场景六:下载某人的 Memory
# 下载所有成员共享的 Memory,保存到 ~/.workbuddy/dragon-shared/memory/
$SYNC sync-memory
# 或者下载特定文件
$SYNC download memory/longzhu_MEMORY.md ~/Desktop/
场景七:上传任意文件
# 上传单文件
$SYNC upload ~/my-notes.md resources/my-notes.md
# 上传整个目录(自动打包为 zip)
$SYNC upload ~/.workbuddy/skills/my-skill skills/
服务器配置
服务器的默认配置在 scripts/sharing_server.py 顶部:
- 端口:3001
- 共享目录:
/Users/zxd/ClawData/WorkBuddy/dragon-share - 用户账号:见
references/hub_guide.md
如需修改(如密码、端口、共享目录),直接编辑 sharing_server.py 的 USERS 和 PORT 变量。
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 120 lines · 110 tokens per session scan A 830aa585187b
dragon-knowledge-hub is a skill published in the GitHub repository idea2realClaw/myAgent (2 stars, last pushed 18d ago), licensed MIT. It adds 110 tokens to every session and 1,032 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
media-ingest
Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.
mem0-oss-to-platform
Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
memory
Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
establishing-project-context
Use when the user asks to establish shared project language, or project work exposes a conflicting, renamed, or deprecated domain term that needs active semantic modeling. Routine small tasks stay on the fast path.