voltagent-docs-bundle
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseVoltAgent Embedded Docs Lookup
VoltAgent 嵌入式文档查找
Look up VoltAgent docs embedded in . This bundle mirrors the website docs plus additional doc sets, so it is safe to use for version-matched answers.
node_modules/@voltagent/core/docs查找嵌入在中的VoltAgent文档。该文档包与官网文档同步,还包含额外的文档集,因此可放心用于获取版本匹配的答案。
node_modules/@voltagent/core/docsWhere the Docs Live
文档位置
node_modules/@voltagent/core/docs/
|-- actions.md
|-- agents/
|-- api/
|-- blog/
|-- community/
|-- deployment-docs/
|-- deployment.md
|-- evals.md
|-- evaluation-docs/
|-- getting-started/
|-- guardrails/
|-- integrations/
|-- models-docs/
|-- observability/
|-- observability-platform/
|-- prompt-engineering-docs/
|-- rag/
|-- recipes/
|-- repo-docs/
|-- site-examples/
|-- tools/
|-- triggers.md
|-- troubleshooting/
|-- ui/
|-- utils/
`-- workflows/If you are inside the VoltAgent monorepo, the same content exists at:
packages/core/docs/node_modules/@voltagent/core/docs/
|-- actions.md
|-- agents/
|-- api/
|-- blog/
|-- community/
|-- deployment-docs/
|-- deployment.md
|-- evals.md
|-- evaluation-docs/
|-- getting-started/
|-- guardrails/
|-- integrations/
|-- models-docs/
|-- observability/
|-- observability-platform/
|-- prompt-engineering-docs/
|-- rag/
|-- recipes/
|-- repo-docs/
|-- site-examples/
|-- tools/
|-- triggers.md
|-- troubleshooting/
|-- ui/
|-- utils/
`-- workflows/如果您处于VoltAgent单体仓库中,相同的内容位于:
packages/core/docs/Lookup Flow
查找流程
- List available sections:
bash
ls node_modules/@voltagent/core/docs- Search for a topic:
bash
rg -n "workflow" node_modules/@voltagent/core/docs -g"*.md"- Read the file:
bash
cat node_modules/@voltagent/core/docs/workflows/overview.md- 列出可用章节:
bash
ls node_modules/@voltagent/core/docs- 搜索主题:
bash
rg -n "workflow" node_modules/@voltagent/core/docs -g"*.md"- 读取文件:
bash
cat node_modules/@voltagent/core/docs/workflows/overview.mdQuick Commands
快速命令
bash
undefinedbash
undefinedList docs
列出文档
ls node_modules/@voltagent/core/docs
ls node_modules/@voltagent/core/docs
Find a keyword
查找关键词
rg -n "memory" node_modules/@voltagent/core/docs -g"*.md"
rg -n "memory" node_modules/@voltagent/core/docs -g"*.md"
Open a section
打开章节
cat node_modules/@voltagent/core/docs/getting-started/quick-start.md
---cat node_modules/@voltagent/core/docs/getting-started/quick-start.md
---Why This Works
为何此方法有效
- Docs are bundled with the installed version
- Avoids web drift and outdated content
- Covers the full doc surface (guides, recipes, platform docs)
- 文档与已安装版本捆绑在一起
- 避免网页内容变更和过时内容
- 覆盖完整的文档范围(指南、实践方案、平台文档)