hermes-cashew
Memory provider for Hermes Agent to work with rajkripal/cashew
파일 탐색기
- devcontainer.json
- SKILL.md
- bug_report.md
- feature_request.md
- droid-review.yml
- droid.yml
- opencode.yml
- release.yml
- tests.yml
- codecov.yml
- CODEOWNERS
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- release.yml
- graphify.js
- opencode.json
- __init__.py
- config.py
- error_tracking.py
- log_filter.py
- metrics.py
- plugin.yaml
- README.md
- sleep_cron_script.py
- sleep_refactor.py
- tools.py
- tracing.py
- verify.py
- INDEX.md
- check-dead-flags.py
- check-duplicates.py
- __init__.py
- test_full_lifecycle.py
- __init__.py
- _memory_manager_stub.py
- conftest.py
- test_agent_context.py
- test_cashew_extract.py
- test_config_roundtrip.py
- test_documentation_contracts.py
- test_e2e_install_lifecycle.py
- test_flat_entrypoint_reexports.py
- test_handle_tool_call.py
- test_initialize_lifecycle.py
- test_manifest_dependencies.py
- test_memory_manager_e2e.py
- test_migration.py
- test_no_home_leak.py
- test_on_pre_compress.py
- test_plugin_discovery.py
- test_profile_isolation.py
- test_quality_metrics.py
- test_query_log_privacy.py
- test_queue_prefetch.py
- test_recall.py
- test_retrieval.py
- test_session_switch.py
- test_sleep_cron_lifecycle.py
- test_sleep_cron_reconcile.py
- test_sleep_cron_script.py
- test_sleep_refactor.py
- test_stub_lifecycle.py
- test_sync_burst.py
- test_sync_turn.py
- test_sync_worker.py
- test_tool_schema.py
- .dockerignore
- .gitignore
- .pre-commit-config.yaml
- __init__.py
- AGENTS.md
- CHANGELOG.md
- CLAUDE.md
- conftest.py
- CONTRIBUTING.md
- LICENSE
- plugin.yaml
- pyproject.toml
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip
설명 보기 ▼
pip
Python 패키지 관리자.
`install`와 같은 일부 하위 명령어는 별도의 사용 문서가 존재.
더 많은 정보: <https://pip.pypa.io/en/stable/cli/pip/>.
pip install {{package}}
패키지 설치 (더 많은 설치 예시는 `pip install`를 참고):
pip install --user {{package}}
시스템 전체 기본 위치 대신 사용자 디렉터리에 패키지 설치:
pip install {{[-U|--upgrade]}} {{package}}
패키지 업그레이드:
pytest
설명 보기 ▼
pytest
Python 테스트 실행.
더 많은 정보: <https://docs.pytest.org/en/latest/how-to/usage.html>.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
특정 파일에서 테스트 실행:
pytest -k {{expression}}
특정 [k]eyword 표현식과 일치하는 테스트 실행:
pytest {{[-x|--exitfirst]}}
테스트가 실패하거나 오류가 발생하면 즉시 종료:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
tag
설명 보기 ▼
tag
Edit tags on Mac OS X files (10.9 Mavericks and above).
tag {{[-a|--add]}} {{tag_name1,tag_name2,...}} {{path/to/file}}
Add tags to a file:
tag {{[-r|--remove]}} {{tag_name}} {{path/to/file}}
Remove a tag:
tag {{[-r|--remove]}} \* {{path/to/file}}
Remove all tags from a file:
