memmy-agent

(β˜… 908)

πŸ™ A personal AI agent & local memory hub for all AI agents, gives every AI one shared, fully controlled memory and persistent context β€” all AI remember the same you. Now supports Claude Code, Codex, OpenClaw and Hermes Agent etc.

파일 탐색기

  • .env.example
  • .gitignore
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • README.zh-CN.md
  • tsconfig.base.json
  • tsconfig.json

# CDN으둜 μ‚¬μš©ν•˜κΈ°

jsDelivr

jsDelivrλŠ” 곡개 GitHub 리포지토리λ₯Ό 별도 μ„€μ • 없이 CDN으둜 μ¦‰μ‹œ μ„œλΉ™ν•©λ‹ˆλ‹€. 버전과 νŒŒμΌμ„ κ³ λ₯΄λ©΄ μ›ΉνŽ˜μ΄μ§€μ— λ°”λ‘œ 뢙일 수 μžˆλŠ” 링크와 μ˜ˆμ‹œ μ½”λ“œκ°€ λ§Œλ“€μ–΄μ§‘λ‹ˆλ‹€.

λͺ…λ Ήμ–΄ μš©μ–΄μ§‘

이 λ¬Έμ„œμ—μ„œ μ‚¬μš©λœ λͺ…λ Ήμ–΄λ₯Ό λͺ¨μ•„λ΄€μŠ΅λ‹ˆλ‹€. λ‚―μ„  λͺ…λ Ήμ–΄κ°€ μžˆλ‹€λ©΄ νŽΌμ³μ„œ ν™•μΈν•΄λ³΄μ„Έμš”.

πŸ”

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:

πŸ”

node

μ„€λͺ… 보기 β–Ό

μ„œλ²„ μΈ‘ JavaScript ν”Œλž«νΌ (Node.js).
더 λ§Žμ€ 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.

node {{path/to/file}}

JavaScript 파일 μ‹€ν–‰:

node

REPL(λŒ€ν™”ν˜• μ…Έ) μ‹œμž‘:

node --watch {{path/to/file}}

μ§€μ •λœ νŒŒμΌμ„ μ‹€ν–‰ν•˜κ³  κ°€μ Έμ˜¨ 파일이 변경될 λ•Œ ν”„λ‘œμ„ΈμŠ€λ₯Ό μž¬μ‹œμž‘ (Node.js 버전 18.11+ ν•„μš”):

πŸ”

npm install

μ„€λͺ… 보기 β–Ό

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

πŸ”

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:

// repository documentation