-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
29 lines (29 loc) · 910 Bytes
/
Copy pathdevcontainer-feature.json
File metadata and controls
29 lines (29 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"id": "codex-cli",
"version": "0.1.1",
"name": "OpenAI Codex CLI",
"description": "Installs OpenAI Codex CLI with optional automatic updates when the container starts.",
"documentationURL": "https://github.com/thatgoofydev/devcontainer-features/tree/main/src/codex-cli",
"licenseURL": "https://github.com/thatgoofydev/devcontainer-features/blob/main/LICENSE",
"keywords": [
"ai",
"codex",
"openai"
],
"options": {
"version": {
"type": "string",
"default": "latest",
"proposals": [
"latest"
],
"description": "Codex CLI version to install, or latest."
},
"autoUpdate": {
"type": "boolean",
"default": true,
"description": "Re-run the official installer at container start. Exact versions remain pinned; latest tracks the newest release."
}
},
"postStartCommand": "/usr/local/bin/codex-feature-update"
}