mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +00:00
Migration Behavior
* Config
* Migrates settings.json into config.toml
* Only adds fields when config.toml is missing, or when those fields are
missing from the existing file
* Supported mappings:
env -> shell_environment_policy
sandbox.enabled = true -> sandbox_mode = "workspace-write"
* Skills
* Copies home and repo .claude/skills into .agents/skills
* Existing skill directories are not overwritten
* SKILL.md content is rewritten from Claude-related terms to Codex
* AgentsMd
* Repo only
* Migrates CLAUDE.md into AGENTS.md
* Detect/import only proceed when AGENTS.md is missing or present but
empty
* Content is rewritten from Claude-related terms to Codex
21 lines
523 B
JSON
21 lines
523 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"cwds": {
|
|
"description": "Zero or more working directories to include for repo-scoped detection.",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
]
|
|
},
|
|
"includeHome": {
|
|
"description": "If true, include detection under the user's home (~/.claude, ~/.codex, etc.).",
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"title": "ExternalAgentConfigDetectParams",
|
|
"type": "object"
|
|
} |