SoDam-WikiMate
AI에게 '정리해줘'라고 하면 흩어진 자료를 옵시디언(원본)에 노트로 정리하고, 관련 노트끼리 연결·분류·요약하고, 선택적으로 노션에 색인하는 Claude Code 플러그인 + 이식형 MCP 코어. 보관함 자동탐지·정리·자동 링크/MOC·자동 분류·요약(원자 노트)·검색(가짜 인용 방지)·볼트 건강검진(중복·깨진 링크·고아 탐지, 삭제 없는 안전 수정)·작업 로그. 사람 승인 게이트·원문 보존 알림·경로/프롬프트 인젝션 방어·무의존.
File Explorer
- marketplace.json
- plugin.json
- pre-commit
- ci.yml
- 01_PRD.md
- 02_DATA_MODEL.md
- 03_PHASES.md
- 04_PROJECT_SPEC.md
- README.md
- RESEARCH_SOURCES.md
- SETUP.md
- SETUP.md
- wikimate-reviewer.md
- wikimate-classify.md
- wikimate-link.md
- wikimate-lint.md
- wikimate-summarize.md
- wikimate.md
- hooks.json
- session-start.mjs
- classify.mjs
- collect.mjs
- fix.mjs
- link.mjs
- lint.mjs
- runlog.mjs
- shared.mjs
- summarize.mjs
- server.mjs
- collect-real.mjs
- e2e-classify-real.mjs
- e2e-collect-cli-real.mjs
- e2e-link-real.mjs
- e2e-moc-real.mjs
- e2e-summarize-real.mjs
- security-scan.mjs
- smoke-server.mjs
- smoke-tools.mjs
- verify-classify.mjs
- verify-collect.mjs
- verify-fix.mjs
- verify-link.mjs
- verify-lint.mjs
- verify-runlog.mjs
- verify-summarize.mjs
- verify-vaults.mjs
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- note.md
- .env.example
- .gitignore
- .mcp.json
- AGENTS.md
- CHECKPOINT.md
- DEVELOPMENT.md
- GEMINI.md
- GUIDE.en.pdf
- GUIDE.ko.pdf
- LICENSE
- NOTICE
- package-lock.json
- package.json
- README.en.html
- README.en.md
- README.en.pdf
- README.html
- README.md
- README.pdf
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
gemini
View Details ▼
gemini
Launch an interactive prompt with Gemini AI.
gemini
Start a REPL session to chat interactively:
{{echo "Summarize the history of Rome"}} | gemini {{[-p|--prompt]}} -
Send the output of another command to Gemini and exit immediately:
gemini {{[-m|--model]}} {{model_name}}
Use a specific model (default: auto-gemini-3):
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm audit
View Details ▼
npm audit
Scan project dependencies for known security vulnerabilities.
npm audit
Scan the project's dependencies for known vulnerabilities:
npm audit fix
Automatically fix vulnerabilities in the project's dependencies:
npm audit fix {{[-f|--force]}}
Force an automatic fix to dependencies with vulnerabilities:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm start
View Details ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
scoop
View Details ▼
scoop
The Scoop package manager.
Some subcommands such as `bucket` have their own usage documentation.
scoop install {{package}}
Install a package:
scoop uninstall {{package}}
Remove a package:
scoop update --all
Update all installed packages:
