Wiki hub manager
一套将 PDF/LaTeX 自动转化为 Obsidian 结构化 Markdown 知识图谱的 AI 智能体技能。
npx -y skills add Misaka16384/Wikify --skill wiki_hub_managerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage topics in the central Hub: route slugs to paths, list topics, and archive or restore topics.
SKILL.md
2.6 KB, 615 tokens by cl100k_base, as published. Nobody here has run it
LLM Wiki — Hub Manager Skill (wiki_hub_manager)
Resolving script paths (read first): Commands below invoke scripts as
<BIN>/X.py(and a few as<SKILLS>/...). Resolve these to absolute paths once before running anything:
<SKILL_DIR>= the directory thisSKILL.mdlives in.<SKILLS>= theskills/folder containing this skill =<SKILL_DIR>/..<BIN>= thebin/folder beside it =<SKILL_DIR>/../../binDo not hardcode a fixed prefix like
.agents/binor../bin: shell relative paths resolve against the current working directory (usually the topic root), not this skill's location. Once resolved,<BIN>is typically.agents/binwhen invoked from the hub root, or.claude/binfrom inside a topic directory.
This skill consolidates all Hub-related operations into a single dispatcher.
Operations
-
Resolve a Topic Slug to Absolute Path (Router) If you need to find the absolute path for a topic slug:
python <BIN>/router.py <path_to_hub> <slug> -
List Topics If the user asks to list topics in the hub:
python <BIN>/llm-wiki.py archive --hub <path_to_hub> list(Append--archivedto include archived topics). -
Archive a Topic To archive an active topic (move it out of the active working set):
python <BIN>/llm-wiki.py archive --hub <path_to_hub> topic <slug>(Append--reason "<reason>"if the user provided one). -
Restore an Archived Topic To unarchive a topic and move it back into the active working set:
python <BIN>/llm-wiki.py archive --hub <path_to_hub> restore <slug> -
Register an Existing Active Topic If a topic folder exists under
topics/<slug>but is missing fromwikis.json(so the router cannot resolve it), register it (idempotent — safe to re-run):python <BIN>/llm-wiki.py archive --hub <path_to_hub> register <slug> --description "<Topic Title>"(Use--path <registry-relative-path>if the topic is not at the defaulttopics/<slug>.) Note: newly initialized topics are auto-registered bywiki_init; use this mainly to repair an unregistered topic.
Error Handling
- If any script exits with non-zero code, report the full stderr output to the user and stop.
- If a file cannot be read or parsed, log a warning and continue with remaining files.
- Do NOT silently skip errors or proceed with partial results without reporting.