openshart

(★ 20)

OpenShart — encrypted AI agent memory with OpenClaw plugin support for secure memory_search/get/store/forget workflows.

파일 탐색기

  • .gitignore
  • INSTALL.md
  • LICENSE
  • openclaw.plugin.json
  • OPENSHART_MVP.md
  • package-lock.json
  • package.json
  • README.md
  • SECURITY_AUDIT.md
  • TESTING.md
  • tsconfig.json
  • vitest.config.ts

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

crypto

설명 보기 ▼

암호화 관련 기능을 관리.
설정 모드에서 사용함.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/security/asa/asa-cli-reference/A-H/asa-command-ref-A-H/crypto-is-cz-commands.html>.

crypto key generate rsa

`rsa` 키 생성:

crypto key generate rsa modulus {{1024}}

키의 modulus 값 지정하여 생성:

crypto key zeroize

모든 키 삭제:

🔍

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:

🔍

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:

🔍

npm test

설명 보기 ▼

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

tldr npm run

View documentation for the original command:

🔍

openclaw

설명 보기 ▼

개인 기기에서 실행되는 개인 AI 어시스턴트.
`onboard`, `agent`, `doctor`와 같은 일부 하위 명령어는 별도의 사용법 문서를 가짐.
관련 항목: `zeroclaw`.
더 많은 정보: <https://docs.openclaw.ai/cli>.

openclaw onboard --install-daemon

게이트웨이 및 채널 설정을 위한 온보딩 실행:

openclaw gateway --allow-unconfigured --port {{18789}} --verbose

게이트웨이 서버 시작:

openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"

연락처에 메시지 전송:

🔍

standard

설명 보기 ▼

JavaScript 코드의 린트 및 수정을 위한 JavaScript Standard Style 도구.
더 많은 정보: <https://standardjs.com/#usage>.

standard

현재 디렉토리의 모든 JavaScript 소스 파일을 린트:

standard {{path/to/file1 path/to/file2 ...}}

특정 JavaScript 파일(들)을 린트:

standard --fix

린트 시 자동 수정 적용:

// repository documentation