Files
Bradley AxenandClaude Opus 4.8 96f8acbd44 fix(desktop): scope active-agents working timer to owned agents
The channel "active agents" working timer/badge is fed by two signals:
observer-derived turns (correctly scoped to agents the current identity
owns) and a bot-typing fallback. The typing fallback mirrored *every*
agent typing in the channel into the working signal, so another member's
agent typing in a shared channel lit up your own timer.

Scope the typing mirror to owned agents only — locally managed agents
plus relay agents whose declared owner (NIP-OA) is the current identity —
reusing combineObserverIngestionAgents so both feeds agree on "my agents".
The in-channel "typing…" row is unchanged and still shows all agents; only
what feeds the working timer is narrowed.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-20 10:33:32 -07:00
..
…

Buzz

Desktop chat shell with:

  • Tauri + React + TypeScript + Vite
  • Tailwind CSS
  • shadcn/ui-ready shared components
  • Biome (lint/format/check)
  • Feature-driven frontend structure

Scripts

  • pnpm dev - run the web frontend
  • pnpm tauri dev - run the desktop app
  • pnpm build - typecheck and build frontend
  • pnpm typecheck - TypeScript checks
  • pnpm lint - Biome lint
  • pnpm format - Biome format (write)
  • pnpm check - Biome check

Structure

  • src/shared - reusable app-wide code (ui, lib, styles)
  • src/features - feature modules (vertical slices)
  • src/app - top-level app composition