SoDam-WikiMate

(★ 51)

AI에게 '정리해줘'라고 하면 흩어진 자료를 옵시디언(원본)에 노트로 정리하고, 관련 노트끼리 연결·분류·요약하고, 선택적으로 노션에 색인하는 Claude Code 플러그인 + 이식형 MCP 코어. 보관함 자동탐지·정리·자동 링크/MOC·자동 분류·요약(원자 노트)·검색(가짜 인용 방지)·볼트 건강검진(중복·깨진 링크·고아 탐지, 삭제 없는 안전 수정)·작업 로그. 사람 승인 게이트·원문 보존 알림·경로/프롬프트 인젝션 방어·무의존.

Owner Repos

ai-news-radar ★ 33

AI News Radar - AI 뉴스 자동 수집·요약·분류 대시보드 (Streamlit + Gemini)

Python
SoDam-Persona ★ 18

Claude Code에 '15명 전문가 관점 + 자동 트리거' AI 개발 파트너 페르소나를 입히는 플러그인. 항상켜짐 hook + 조건부 skill + 인터뷰형 생성/편집 명령어, 세무·법률 면책 자동, 새 PC 이식형. Apache-2.0.

JavaScript
SoDam-Agent ★ 16

Claude Code에 역할별 AI 에이전트 팀 10종(웹앱·문서·리서치·마케팅·데이터·보안 감사·DevOps·고객지원·PM/제품관리·번역)을 플러그인 마켓플레이스로 한 번에 설치하고, Codex·Gemini CLI·Cursor용으로도 번역(베타)하며, 설치 후 에이전트를 직접 만들고·가르치고·관리하는 비개발자용 도구. 커뮤니티 공유 디렉터리(서버·계정 없이 PR로 팀 등록)·자동 백업·위험 명령 경고·frontmatter 주입 차단·MCP(context7) 동봉·Apache-2.0.

JavaScript
GitHub-Explorer ★ 15

GitHub 저장소/코드/이슈를 AI로 자연어 검색하는 데스크톱 앱 (Tauri + React + TypeScript)

TypeScript
SoDam-SeoMedic ★ 15

Claude Code 플러그인 — 웹사이트 SEO/GEO 진단(크롤·렌더·CWV·구조화데이터·AI크롤러정책·회귀감지) + GSC/GA4/PSI 연동. Next.js 프로젝트 승인 기반 자동수정(canonical·OG·noindex·robots·JSON-LD·제목) + GitHub 저장소 PR 제안(실험적)

TypeScript
Claude-Code_One-Click_Kit ★ 13

Windows에서 더블클릭 한 번으로 Claude Code를 설치·실행·업데이트·제거까지 관리하는 한국어 원클릭 키트 (비공식, PowerShell 메뉴)

PowerShell

File Explorer

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

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

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 ▼

This command is an alias of `npm run start`.

tldr npm run

View documentation for the original command:

🔍

scoop

View Details ▼

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:

// repository documentation