You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**GitHub Copilot CLI**|`~/.copilot/session-state/` and `~/.copilot/history-session-state/`|
63
63
64
+
Claude auto-detects `CLAUDE_CONFIG_DIR` and `~/.claude` by default. To scan only specific Claude profiles, set `aiEngineerCoach.claudeConfigDirs` in VS Code settings, for example `["~/.claude-home", "~/.claude-work"]`.
65
+
64
66
## Getting Started
65
67
66
68
1. Open the command palette (`Cmd+Shift+P` / `Ctrl+Shift+P`).
Copy file name to clipboardExpand all lines: docs/content/getting-started/installation.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,3 +46,13 @@ You can also click the AI Engineer Coach icon in the Activity Bar (sidebar) if i
46
46
## Configuration
47
47
48
48
AI Engineer Coach works out of the box with sensible defaults. Optional settings are available under `aiEngineerCoach.*` in VS Code settings to control cache behavior, date ranges, and workspace filtering.
49
+
50
+
By default, Claude session discovery scans `CLAUDE_CONFIG_DIR` and `~/.claude`. To scan only specific Claude profiles, add config roots to `aiEngineerCoach.claudeConfigDirs`:
Copy file name to clipboardExpand all lines: package.json
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,19 @@
81
81
"type": "webview"
82
82
}
83
83
]
84
+
},
85
+
"configuration": {
86
+
"title": "AI Engineer Coach",
87
+
"properties": {
88
+
"aiEngineerCoach.claudeConfigDirs": {
89
+
"type": "array",
90
+
"default": [],
91
+
"items": {
92
+
"type": "string"
93
+
},
94
+
"markdownDescription": "Claude configuration directories to scan for session logs. Leave empty to auto-detect `CLAUDE_CONFIG_DIR` and the default `~/.claude`; set one or more entries to explicitly choose Claude profiles such as `~/.claude-home` and `~/.claude-work`. Each entry should point to a Claude config directory; `projects/` is appended automatically unless the entry already ends with `projects`."
0 commit comments