forked from devcontainers/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
47 lines (47 loc) · 1.71 KB
/
Copy pathdevcontainer-feature.json
File metadata and controls
47 lines (47 loc) · 1.71 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"id": "agent",
"version": "2.0.6",
"name": "AI Agent Tools",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/agent",
"description": "Installs AI programming agent tools including Claude Code CLI, OpenAI Codex CLI, and integration SDKs.",
"options": {
"claudeCodeVersion": {
"type": "string",
"proposals": [
"latest",
"none"
],
"default": "latest",
"description": "Version of Claude Code CLI to install. Use 'none' to skip installation."
},
"installCodex": {
"type": "boolean",
"default": true,
"description": "Install OpenAI Codex CLI and integration tools (SDKs for Python and Node.js)."
},
"installNode": {
"type": "boolean",
"default": true,
"description": "Install Node.js if not present (required for some AI tools)."
}
},
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes Claude Code CLI and OpenAI Codex CLI. Claude Code can be accessed via the `claude` command. OpenAI Codex can be accessed via the `codex` command. Both platforms have Python and Node.js SDKs available."
}
]
},
"extensions": [
"anthropics.claude-dev"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/git",
"ghcr.io/devcontainers/features/node"
]
}