• Joined on 2026-03-05
claude pushed to main at cameleer/cameleer-server 2026-04-02 19:08:20 +02:00
ca1d472b78 feat(#117): agent-count toasts and persistent error toast dismiss
claude commented on issue cameleer/cameleer-server#116 2026-04-02 19:02:11 +02:00
[P1] Synchronous command dispatch to all agents

Implemented in 027e45a (backend) and c3b4f70 (frontend).

Backend:

  • AgentRegistryService.addGroupCommandWithReplies() — sends command to all LIVE agents, returns `Map<agentId,…
claude closed issue cameleer/cameleer-server#116 2026-04-02 19:02:11 +02:00
[P1] Synchronous command dispatch to all agents
claude pushed to main at cameleer/cameleer-server 2026-04-02 19:02:01 +02:00
c3b4f70913 feat(#116): update command hooks for synchronous group response
027e45aadf feat(#116): synchronous group command dispatch with multi-agent response collection
Compare 2 commits »
claude closed issue cameleer/cameleer-server#118 2026-04-02 18:54:35 +02:00
[P2] Confirmation dialog for destructive route commands
claude commented on issue cameleer/cameleer-server#118 2026-04-02 18:54:34 +02:00
[P2] Confirmation dialog for destructive route commands

Implemented in f39f07e. Stop and suspend commands now show a ConfirmDialog with typed confirmation ("stop"/"suspend") before dispatch. Start and resume execute immediately. Uses the DS…

claude pushed to main at cameleer/cameleer-server 2026-04-02 18:54:29 +02:00
f39f07e7bf feat(#118): add confirmation dialog for stop and suspend commands
claude opened issue cameleer/cameleer-server#119 2026-04-02 18:49:19 +02:00
[P2] Route state indicators in sidebar and dashboard
claude opened issue cameleer/cameleer-server#118 2026-04-02 18:49:12 +02:00
[P2] Confirmation dialog for destructive route commands
claude opened issue cameleer/cameleer-server#117 2026-04-02 18:49:07 +02:00
[P1] Command response UX with error toast persistence
claude opened issue cameleer/cameleer-server#116 2026-04-02 18:49:03 +02:00
[P1] Synchronous command dispatch to all agents
claude pushed to main at cameleer/design-system 2026-04-02 18:41:56 +02:00
9b8739b5d8 fix(a11y): add keyboard listeners to clickable elements (S1082)
claude closed issue cameleer/cameleer-server#112 2026-04-02 18:38:31 +02:00
[P3] Admin page context separation
claude commented on issue cameleer/cameleer-server#112 2026-04-02 18:38:26 +02:00
[P3] Admin page context separation

Implemented: Composable Sidebar with Admin Accordion & Icon-Rail Collapse

Migrated from the old monolithic <Sidebar apps={[...]}/> to the new composable compound API from `@cameleer/design-sy…

claude pushed to main at cameleer/cameleer-server 2026-04-02 18:38:13 +02:00
d21d8b2c48 fix(#112): initialize sidebar accordion state from initial route
d5f5601554 fix(#112): add missing Routes section, fix admin double padding
00042b1d14 feat(#112): remove admin tabs, sidebar handles navigation
fe49eb5aba feat(#112): migrate to composable sidebar with accordion and collapse
bc913eef6e feat(#112): extract sidebar tree builders and types from DS
Compare 13 commits »
claude pushed to main at cameleer/design-system 2026-04-02 18:36:28 +02:00
ba6028c2ea refactor: extract nested handlers to fix function depth violations (S2004)
93776944b9 refactor: extract keyboard handlers to reduce cognitive complexity (S3776)
Compare 2 commits »
claude pushed to main at cameleer/design-system 2026-04-02 18:30:30 +02:00
9240acddb6 docs: update CLAUDE.md and COMPONENT_GUIDE.md for composable Sidebar
claude pushed to main at cameleer/design-system 2026-04-02 18:16:58 +02:00
912adb1070 feat: composable sidebar refactor
eeb2713612 fix: strip Sidebar wrapper from RouteDetail + fix StatusDot prop in LayoutSection
18bf644040 refactor(inventory): update Sidebar demo to compound API
9fa7eb129d refactor: strip AppShell+Sidebar wrappers from all page components
8cd3c3a99d refactor: wrap routes in LayoutShell layout route
Compare 16 commits »
claude commented on issue cameleer/cameleer-server#112 2026-04-02 17:05:22 +02:00
[P3] Admin page context separation

Revised Proposal: Option A-Slim

After discussion, the refined approach hides both the sidebar and the TopBar on admin pages. The TopBar's features (breadcrumb, search, time range, status…

claude commented on issue cameleer/cameleer-server#112 2026-04-02 17:00:23 +02:00
[P3] Admin page context separation

Analysis: Current State & What Already Works

Already handled:

  • ContentTabs (Exchanges/Dashboard/Runtime/Logs) is hidden on admin pages via isAdminPage guard in LayoutShell
  • Admin…