This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
Codex 和 Expo
使用 Codex 来构建、升级、调试和部署你的 Expo 和 React Native 项目。
Codex 是 OpenAI 基于终端的 AI 编程代理。它可以读取和写入你项目中的文件,运行终端命令,并浏览网页。使用 create-expo-app 创建的 Expo 项目会附带一个 AGENTS.md 文件,Codex 可以直接读取它。它还可以检查 EAS 和 Expo CLI 日志,从 Expo 模型上下文协议 (MCP) 服务器获取文档,使用 Expo 技能获取最佳实践,管理你的 EAS 部署工作流等。
🌐 Codex is OpenAI's terminal-based AI coding agent. It can read and write files across your project, run terminal commands, and browse the web. Expo projects created with create-expo-app are scaffolded with an AGENTS.md file that Codex reads directly. It can also check EAS and Expo CLI logs, fetch documentation from the Expo Model Context Protocol (MCP) Server, use Expo Skills for best practices, manage your EAS deployment workflow, and more.
快速开始
🌐 Quick start
1
安装 Codex
🌐 Install Codex
安装 Codex,然后从任何项目启动它。有关其他安装方法,请参阅 Codex CLI 文档。
🌐 Install Codex, then start it from any project. For other install methods, see the Codex CLI documentation.
- curl -fsSL https://chatgpt.com/codex/install.sh | sh2
3
设置 Expo 技能和 Expo MCP 服务器
🌐 Set up Expo Skills and the Expo MCP Server
安装 Expo 技能并连接 Expo MCP 服务器,以便 Codex 知道 Expo 的规范并能够访问你的 EAS。
🌐 Install Expo Skills and connect the Expo MCP Server so Codex knows Expo conventions and can reach your EAS.
安装教授代理已知良好 Expo 模式的插件,并浏览可用技能的完整列表。
连接远程 Expo MCP 服务器以让代理实时访问 Expo 文档和 EAS。
4
5
验证设置
🌐 Verify setup
将以下提示粘贴到你的 Codex 会话中,以确认它可以读取你的项目:
🌐 Paste the following prompt in your Codex session to confirm it can read your project:
Open package.json and tell me which Expo SDK version this project targets.
如果代理回复的是来自 package.json 的 SDK 版本,则说明代理正在正确读取你的项目。
🌐 If the agent replies with the SDK version from package.json, the agent is reading your project correctly.
Codex 如何读取你的 Expo 项目
🌐 How Codex reads your Expo project
当你在项目中启动 Codex 时,它会读取脚手架生成的 AGENTS.md 文件。该文件将 Codex 指向你的项目所使用的 Expo SDK 版本的文档,并保存你添加的任何项目级别的指令。
🌐 When you start Codex in your project, it reads the scaffolded AGENTS.md file. This file points Codex to the documentation for your project's Expo SDK version and holds any project-level instructions you add.
AGENTS.md 致力于你的项目,因此开发者的 Codex 会话从相同的上下文开始。
示例提示
🌐 Example prompts
设置完成后,用简单的语言描述 Expo 任务。例如:
🌐 After setup, describe Expo tasks in plain language. For example:
| 任务 | 示例提示 |
|---|---|
| 升级 SDK | 将此项目升级到最新的 Expo SDK 并修复任何破坏性更改。 |
| 添加导航 | 使用 Expo Router 添加一个标签导航器和新的设置屏幕。 |
| 自动化构建 | 创建一个 EAS 工作流,在每次拉取请求时构建应用。 |
| 调试构建 | 我最近的 iOS 构建失败了。读取 EAS 构建日志并告诉我出了什么问题。 |
| 添加通知 | 配置 expo-notifications,并在应用启动时显示本地通知。 |
| 设置 CI/CD | 创建一个在每次 PR 时构建的 CI/CD 工作流。 |
| 添加原生 UI | 向我的 Expo 应用添加一个 SwiftUI 选择器组件。 |
| 检查反馈 | 显示我的应用的 TestFlight 反馈。 |
| 验证 UI | 截屏并验证蓝色圆形视图。 |
更多示例,请参见 Expo Skills 和 Expo MCP Server 的示例提示部分。
🌐 For more examples, see the Example prompts sections of Expo Skills and Expo MCP Server.