Wiki init
一套将 PDF/LaTeX 自动转化为 Obsidian 结构化 Markdown 知识图谱的 AI 智能体技能。
npx -y skills add Misaka16384/Wikify --skill wiki_initAssembled 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
Initialize a new topic workspace folder with standard raw/, wiki/, inbox/, and output/ directories.
SKILL.md
2.4 KB, 544 tokens by cl100k_base, as published. Nobody here has run it
LLM Wiki — Initialize Skill (wiki_init)
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 handles the physical bootstrapping of a new academic/personal topic workspace folder.
When the user asks to initialize, configure, or set up a new wiki in a folder:
- Strict Dispatcher Rule: Run the helper script to programmatically initialize folders and files:
python <BIN>/init_workspace.py --topic-dir \"<path_to_initialize>\" --name \"<Topic Title>\" --scope \"<1-2 sentence description of what this wiki covers>\"This script programmatically sets up the folder structures, and generatesconfig.md,log.md,_index.md, and all subdirectory_index.mdfiles. - Approve: Run
python <BIN>/llm-wiki.py lint <path_to_initialize>to verify that the initialized workspace achieves a perfect greenResult: PASS. If it fails, fix the reported issues and re-run until PASS. - Register in Hub (Auto): If this topic was created inside an existing hub — i.e., some ancestor directory contains both
wikis.jsonand atopics/folder — you MUST register it so the hub router andwiki_hub_managercan resolve it. Run the idempotent registration command:python <BIN>/llm-wiki.py archive --hub <hub_path> register <slug> --description "<Topic Title>"where<slug>is the topic folder name (e.g. the final path segment) and<hub_path>is the hub root. This is safe to re-run. Skip this step only for standalone (non-hub) wikis where no ancestor hub exists.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.