Skip to content

Bcpeinhardt/ai agent session in vscode #488

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Apr 22, 2025
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
bfa33eb
update deps to kyles branch and make helper for getting agent informa…
bcpeinhardt Mar 18, 2025
92c3bfd
agents in sidebar
bcpeinhardt Mar 18, 2025
c5f6dcb
janky working demo for meeting
bcpeinhardt Mar 18, 2025
b2f6bb8
clean up some horrible claude code
bcpeinhardt Mar 18, 2025
c7001d5
separate metadata and tasks
bcpeinhardt Mar 18, 2025
f39f458
tweaks to terminal sizing
bcpeinhardt Mar 19, 2025
c31cb7c
put coder dep back on main post merge of ai work
bcpeinhardt Mar 31, 2025
063b27e
statuses updates
bcpeinhardt Apr 1, 2025
be1e137
coder ssh strategy finally working
bcpeinhardt Apr 1, 2025
08c93ae
show apps in need of attention only when there are some to show
bcpeinhardt Apr 1, 2025
99f3b1d
working with goose and claude
bcpeinhardt Apr 1, 2025
cd7c68c
switch up labels
bcpeinhardt Apr 1, 2025
26f740d
remove hand raise emojis
bcpeinhardt Apr 1, 2025
ac8d5fd
app not application
bcpeinhardt Apr 1, 2025
d0386d0
resolve conflict
bcpeinhardt Apr 1, 2025
69f9b97
remove unused commands
bcpeinhardt Apr 1, 2025
68c2e04
terminal names
bcpeinhardt Apr 1, 2025
b1e281c
use built in coder cli
bcpeinhardt Apr 2, 2025
5c66430
Merge branch 'main' into bcpeinhardt/ai-agent-session-in-vscode
bcpeinhardt Apr 14, 2025
83fafb0
Merge branch 'main' into bcpeinhardt/ai-agent-session-in-vscode
bcpeinhardt Apr 15, 2025
22246b9
reset back to working state pre tmux and reverse app statuses so most…
bcpeinhardt Apr 21, 2025
80f74f9
only show terminal after ssh command and app commands run
bcpeinhardt Apr 21, 2025
0f7dd65
loading indicator
bcpeinhardt Apr 21, 2025
8f996dd
update loading msg
bcpeinhardt Apr 21, 2025
c24b675
don't mess with terminal size
bcpeinhardt Apr 21, 2025
6f83606
workspace name isn't optional
bcpeinhardt Apr 21, 2025
579ad4e
changelog and format
bcpeinhardt Apr 21, 2025
9340b7d
remove unused icon code
bcpeinhardt Apr 21, 2025
8dac372
cleanup
bcpeinhardt Apr 21, 2025
866956a
remove unnecessary label assignment (I think there used to be an icon…
bcpeinhardt Apr 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
switch up labels
  • Loading branch information
bcpeinhardt committed Apr 1, 2025
commit cd7c68c3f33b6bfb8912925f2f1d160aed262fcc
4 changes: 2 additions & 2 deletions src/workspacesProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
// Show all statuses, not just ones needing attention
appStatuses.push(
new AppStatusTreeItem({
name: status.message,
name: status.icon,
command: app.command,
status: status.state,
status: status.message,
workspace_name: element.workspaceName,
}),
)
Expand Down