Skip to content

Commit fb157ac

Browse files
committed
cmux-sidebar-agents: agent monitor sidebar plugin for cmux
Live view of reported agents (status glyph, breadcrumb, age; attention-first sort) and unread notifications from the session tree; Enter jumps to the agent's workspace/screen/pane. Poll-based (2s). Judge-reviewed; selection now tracks stable row identity across re-sorts (surface/notification id), so the highlighted row never silently changes between keypress and Enter.
0 parents  commit fb157ac

11 files changed

Lines changed: 2848 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: dtolnay/rust-toolchain@stable
14+
- run: cargo fmt --check
15+
- run: cargo clippy --all-targets -- -D warnings
16+
- run: cargo test
17+
- run: cargo build --release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/

0 commit comments

Comments
 (0)