A2A
Agent2Agent (A2A)는 내부 구조를 알 수 없는(opaque) 에이전트 애플리케이션 간의 통신과 상호 운용성을 지원하는 오픈 프로토콜입니다.
파일 탐색기
- devcontainer.json
- README.md
- setup.sh
- config.yaml
- advice.md
- allow.txt
- excludes.txt
- expect.txt
- line_forbidden.patterns
- bug-report.yml
- feature-request.yml
- .eslintrc.js
- .jscpd.json
- .markdownlint.json
- .protolint.yaml
- .stylelintrc.json
- become_a_repo_maintainer.md
- PULL_REQUEST_TEMPLATE.md
- check-linked-issues.yml
- conventional-commits.yml
- dispatch-a2a-update.yml
- docs.yml
- issue-metrics.yml
- links.yaml
- linter.yaml
- release-please.yml
- sort-spelling-allowlist.yml
- spelling.yaml
- stale.yaml
- CODEOWNERS
- conventional-commit-lint.yaml
- dependabot.yml
- super-linter.env
- header.html
- sdk_repos.html
- main.html
- macros.py
- settings.json
- adr-001-protojson-serialization.md
- adr-template.md
- a2a_black.png
- a2a_black.svg
- a2a_color.png
- a2a_color.svg
- a2a_icon_black.png
- a2a_icon_black.svg
- a2a_icon_color.png
- a2a_icon_color.svg
- a2a_icon_white.png
- a2a_icon_white.svg
- a2a_ada.png
- a2a_ada.svg
- a2a_white.png
- a2a_white.svg
- a2a-actors.png
- a2a-logo-black.svg
- a2a-logo-white.svg
- a2a-mcp-readme.png
- a2a-mcp.png
- agentic-stack.png
- hero-tagline-carousel.js
- index.html
- index.html
- conf.py
- index.rst
- index.md
- python.md
- custom.css
- a2a-and-mcp.md
- agent-discovery.md
- custom-protocol-bindings.md
- enterprise-ready.md
- extension-and-binding-governance.md
- extensions.md
- key-concepts.md
- life-of-a-task.md
- multi-tenancy.md
- streaming-and-async.md
- what-is-a2a.md
- 1-introduction.md
- 2-setup.md
- 3-agent-skills-and-card.md
- 4-agent-executor.md
- 5-start-server.md
- 6-interact-with-server.md
- 7-streaming-and-multiturn.md
- 8-next-steps.md
- index.md
- 404.html
- announcing-1.0.md
- community.md
- definitions.md
- index.md
- llms.txt
- partners.md
- README.md
- roadmap.md
- robots.txt
- specification.md
- whats-new-v1.md
- build_docs.sh
- build_llms_full.sh
- build_sdk_docs.sh
- clean_schema_names.py
- deploy_root_files.sh
- format.sh
- lint.sh
- proto_to_json_schema.sh
- sort_spelling.sh
- README.md
- .api-linter.yaml
- a2a.proto
- buf.gen.yaml
- buf.lock
- buf.yaml
- .editorconfig
- .git-blame-ignore-revs
- .gitattributes
- .gitignore
- .gitvote.yml
- .prettierrc
- .ruff.toml
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GOVERNANCE.md
- LICENSE
- lychee.toml
- MAINTAINERS.md
- mkdocs.yml
- README.md
- requirements-docs.txt
- SECURITY.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
릴리즈 타임라인
활발히 관리 중명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo add
설명 보기 ▼
cargo add
Add dependencies to a Rust project's `Cargo.toml` manifest.
cargo add {{dependency}}
Add the latest version of a dependency to the current project:
cargo add {{dependency}}@{{version}}
Add a specific version of a dependency:
cargo add {{dependency}} {{[-F|--features]}} {{feature_1,feature_2,...}}
Add a dependency and enable one or more specific features:
dotnet add package
설명 보기 ▼
dotnet add package
Add or update a .NET package reference in a project file.
dotnet add package {{package}}
Add a package to the project in the current directory:
dotnet add {{path/to/file.csproj}} package {{package}}
Add a package to a specific project:
dotnet add package {{package}} {{[-v|--version]}} {{1.0.0}}
Add a specific version of a package to the project:
go get
설명 보기 ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
npm install
설명 보기 ▼
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`:
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:
