agentfield

(★ 2,523)

Build, run and scale AI agents like API and microservices

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .cliff.toml
  • .coverage-gate.toml
  • .dockerignore
  • .editorconfig
  • .gitattributes
  • .gitignore
  • .goreleaser.yml
  • .pre-commit-config.yaml
  • AGENTS.md
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CODEOWNERS
  • coverage-baseline.json
  • DESIGN.md
  • LICENSE
  • Makefile
  • README.md
  • SECURITY.md
  • SUPPORT.md
  • VERSION

# CDN으로 사용하기

jsDelivr

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

파일 목록이 많아 일부만 표시됩니다.

명령어 용어집

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

🔍

codex

설명 보기 ▼

OpenAI로 구동되는 터미널용 자연어 코드 어시스턴트.
요청을 수행하기 위해 현재 디렉터리의 파일을 읽고 수정.
더 많은 정보: <https://developers.openai.com/codex/cli/reference>.

codex

현재 디렉터리에서 대화형 Codex 세션을 시작:

codex "{{prompt}}"

프롬프트를 사용해 단일 Codex 명령을 실행:

codex --sandbox workspace-write "{{prompt}}"

프롬프트를 전체 자동 모드로 실행:

🔍

docker run

설명 보기 ▼

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

tldr docker container run

View documentation for the original command:

🔍

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):

🔍

opencode

설명 보기 ▼

AI 코딩 에이전트.
`auth`, `models`, `web`와 같은 일부 하위명령어는 별도의 사용법 문서를 가짐.
더 많은 정보: <https://opencode.ai/docs/cli/>.

opencode

대화형 TUI 시작:

opencode {{[-c|--continue]}}

가장 최근 세션 이어서 실행:

opencode run "{{message}}"

프롬프트를 직접 전달하여 비대화형으로 실행:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

// repository documentation