dragon-knowledge-hub

dragon-knowledge-hub is a skill for Claude Code, Codex from idea2realClaw/myAgent. It costs 110 tokens per session (1,032 once invoked), scanned A, original, MIT.

A file-sharing tool for a private group of coding assistants called the Dragon Knowledge Hub. It shares memory files, skills, and other resources through a server and a command-line synchronization tool.

In plain words
What is it for?
Use it to start the sharing server, configure an account, share a MEMORY.md file or skill, list shared resources, and download resources from other members.
Why use it?
It removes the need to copy shared assistant resources manually between machines and supports both uploading and downloading them.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/zxd/ClawData/WorkBuddy/dragon-share.

Good fit Use it to start the sharing server, configure an account, share a MEMORY.md file or skill, list shared resources, and download resources from other members.

Compare 6 skills from other repositories ↓
Install

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.

Made for: Claude Code, Codex.

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.

agentmods badge for dragon-knowledge-hub

README.md
[![agentmods](https://agentmods.dev/badge/skills/idea2realclaw/myagent/dragon-knowledge-hub.svg)](https://agentmods.dev/skills/idea2realclaw/myagent/dragon-knowledge-hub)
Your own site
<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>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,032 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash 830aa585187b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/dragon_sync.py, scripts/sharing_server.py, scripts/start_hub.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/dragon-knowledge-hub/SKILL.md · 120 lines

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.pyUSERSPORT 变量。

Read the full file on GitHub · 120 lines

Files

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.

Changes

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.

  1. 7d ago First seen · 120 lines · 110 tokens per session scan A 830aa585187b

Subscribe to this mod's changes

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.

Related

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.

garrytan/gbrain · 52 tokens

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

mem0ai/mem0 · 273 tokens

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…

danielmiessler/LifeOS · 196 tokens

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.

opensquilla/opensquilla · 44 tokens

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…

shiwenwen/hope-agent · 115 tokens

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.

GanyuanRan/Aegis · 45 tokens