-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadapter.json
More file actions
46 lines (46 loc) · 1.56 KB
/
Copy pathadapter.json
File metadata and controls
46 lines (46 loc) · 1.56 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
{
"schemaVersion": 2,
"id": "commandcode",
"displayName": "Command Code",
"kind": "cli",
"binary": {
"windows": ["%APPDATA%\\npm\\commandcode.cmd", "%APPDATA%\\npm\\commandcode", "commandcode"],
"macos": ["/usr/local/bin/commandcode", "$HOME/.npm-global/bin/commandcode", "commandcode"],
"linux": ["$HOME/.npm-global/bin/commandcode", "/usr/local/bin/commandcode", "commandcode"]
},
"isolation": {
"strategy": "accountOverlay",
"mode": "foreground",
"env": {
"HOME": "{runtimeRoot}",
"USERPROFILE": "{runtimeRoot}"
},
"clearEnv": ["COMMAND_CODE_API_KEY"]
},
"account": {
"mechanism": "fileOverlay",
"credentialFiles": ["auth.json"],
"credentialPrecedence": ["COMMAND_CODE_API_KEY", ".commandcode/auth.json"],
"logoutScope": "profile"
},
"normalState": {
"root": {
"windows": "%USERPROFILE%",
"macos": "$HOME",
"linux": "$HOME"
},
"runtimeSubdir": ".commandcode",
"sharedPaths": ["config.json", "settings.json", "skills", "plans", "taste"],
"sessionPaths": ["projects", "history.jsonl", "file-history"],
"filePaths": ["config.json", "settings.json", "history.jsonl"],
"unsafePaths": []
},
"concurrency": { "level": "multiWriter", "singletonScope": "none" },
"support": {
"windows": { "level": "supported", "reason": "file overlay (.commandcode/auth.json); use commandcode, bare cmd collides with cmd.exe" },
"macos": { "level": "supported" },
"linux": { "level": "supported" }
},
"install": "npm i -g command-code",
"versionCommand": ["--version"]
}