agentic-harness

(★ 84)

Rust-native agent runtime, SDK, and CLI for software agents

파일 탐색기

  • .gitignore
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

cargo

설명 보기 ▼

Rust 프로젝트 및 모듈 종속성(크레이트)을 관리.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://doc.rust-lang.org/stable/cargo/>.

cargo search {{search_string}}

크레이트 검색:

cargo install {{crate_name}}

바이너리 크레이트 설치:

cargo install --list

설치된 바이너리 크레이트 나열:

🔍

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+ 필요):

🔍

serve

설명 보기 ▼

정적 파일 제공 및 디렉토리 목록화 도구.
더 많은 정보: <https://github.com/vercel/serve>.

serve

기본 포트에서 현재 디렉토리를 제공하는 HTTP 서버 시작:

serve -p {{port}} {{path/to/directory}}

특정 [p]포트에서 특정 디렉토리를 제공하는 HTTP 서버 시작:

serve {{[-C|--cors]}}

모든 응답에 `Access-Control-Allow-Origin: *` 헤더를 포함하여 CORS가 활성화된 HTTP 서버 시작:

🔍

tar

설명 보기 ▼

아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.

tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}

아카이브 생성 후 파일로 저장:

tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}

g[z]ipped 아카이브 생성 후 파일로 저장:

tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .

디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:

// repository documentation