agent-orcha

(★ 22)

Agent Orcha is a declarative framework designed to build, manage, and scale multi-agent AI systems with ease. Use YAML to orchestrate complex workflows, manage diverse tools via MCP, and integrate semantic search seamlessly.

파일 탐색기

  • .dockerignore
  • .gitattributes
  • .gitignore
  • .mcp.json
  • .npmignore
  • CHANGELOG.md
  • CLAUDE.md
  • docker-compose.nvidia.yaml
  • docker-compose.sandbox.yaml
  • docker-compose.yaml
  • docker-entrypoint.sh
  • Dockerfile
  • Dockerfile.nvidia
  • Dockerfile.sandbox
  • LICENSE
  • openapi.json
  • package-lock.json
  • package.json
  • playwright.config.ts
  • README.md
  • sandbox-entrypoint.sh
  • sandbox-jwmrc
  • sandbox-xresources
  • tsconfig.json

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

docker run

설명 보기 ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

done

설명 보기 ▼

`for`, `while`, `select`, `until` 루프의 끝을 표시하는 쉘 키워드.

tldr for

`for` 키워드 문서 확인:

tldr while

`while` 키워드 문서 확인:

tldr select

`select` 키워드 문서 확인:

🔍

gemini

설명 보기 ▼

Gemini AI와 대화형 프롬프트 실행.
더 많은 정보: <https://geminicli.com/docs/cli/cli-reference/>.

gemini

대화형 채팅을 위한 REPL 세션 시작:

{{echo "Summarize the history of Rome"}} | gemini {{[-p|--prompt]}} -

다른 명령의 출력을 Gemini로 전달하고 즉시 종료:

gemini {{[-m|--model]}} {{model_name}}

특정 모델 사용 (기본값: auto-gemini-3):

🔍

llm

설명 보기 ▼

원격 API 및 로컬에서 설치 및 실행할 수 있는 모델을 통해 대형 언어 모델(LLM)과 상호 작용.
더 많은 정보: <https://llm.datasette.io/en/stable/help.html>.

llm keys set openai

OpenAI API 키 설정:

llm "{{Ten fun names for a pet pelican}}"

프롬프트 실행:

cat {{path/to/file.py}} | llm {{[-s|--system]}} "{{Explain this code}}"

파일에 대해 [s]시스템 프롬프트 실행:

🔍

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 start

설명 보기 ▼

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

tldr npm run

View documentation for the original command:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

openai

설명 보기 ▼

OpenAI API에 접근할 수 있는 CLI 도구.
더 많은 정보: <https://github.com/openai/openai-python>.

openai api models.list

모델 나열:

openai api completions.create --model {{ada}} --prompt "{{Hello world}}"

완료 생성:

openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}

채팅 완료 생성:

🔍

tts

설명 보기 ▼

음성을 합성합니다.
더 많은 정보: <https://github.com/coqui-ai/TTS#command-line-tts>.

tts --text "{{text}}"

기본 모델로 텍스트를 음성으로 변환하고 출력을 "tts_output.wav"에 저장:

tts --list_models

제공된 모델 나열:

tts --model_info_by_idx {{model_type/model_query_idx}}

인덱스로 모델 정보 조회:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

dnf install

설명 보기 ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

🔍

ldd

설명 보기 ▼

Display shared library dependencies of a binary.
Do not use on an untrusted binary, use objdump for that instead.

ldd {{path/to/binary}}

Display shared library dependencies of a binary:

ldd {{[-v|--verbose]}} {{path/to/binary}}

Display all information about dependencies:

ldd {{[-u|--unused]}} {{path/to/binary}}

Display unused direct dependencies:

🔍

pacman -S

설명 보기 ▼

This command is an alias of `pacman --sync`.

tldr pacman sync

View documentation for the original command:

🔍

share

설명 보기 ▼

로컬 리소스/파일시스템을 원격 시스템에서 마운트할 수 있도록 공유하는 도구.
더 많은 정보: <https://docs.oracle.com/cd/E36784_01/html/E36825/gntjt.html>.

share

현재 공유된 모든 파일시스템 목록 출력:

share -F nfs -o rw /{{path/to/directory}}

읽기/쓰기 권한으로 디렉터리 공유:

share -F nfs -o ro /{{path/to/directory}}

읽기 전용으로 디렉터리 공유:

// repository documentation