777genius
4defb4aafc
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# landing/components/layout/AppFooter.vue
# landing/components/layout/AppHeader.vue
# src/features/localization/renderer/locales/ar/settings.json
# src/features/localization/renderer/locales/bn/settings.json
# src/features/localization/renderer/locales/de/settings.json
# src/features/localization/renderer/locales/es/settings.json
# src/features/localization/renderer/locales/fr/settings.json
# src/features/localization/renderer/locales/hi/settings.json
# src/features/localization/renderer/locales/id/settings.json
# src/features/localization/renderer/locales/ja/settings.json
# src/features/localization/renderer/locales/ko/settings.json
# src/features/localization/renderer/locales/pt/settings.json
# src/features/localization/renderer/locales/ur/settings.json
# src/features/localization/renderer/locales/zh/settings.json
# src/features/tmux-installer/main/infrastructure/runtime/TmuxPlatformCommandExecutor.ts
# src/features/tmux-installer/main/infrastructure/runtime/__tests__/TmuxPlatformCommandExecutor.test.ts
# src/main/services/team/TeamProvisioningService.ts
# src/main/services/team/TeamRuntimeLivenessResolver.ts
# src/main/services/team/TeamTaskActivityIntervalService.ts
# src/main/services/team/TeamTranscriptProjectResolver.ts
# src/main/services/team/provisioning/TeamProvisioningPromptBuilders.ts
# src/renderer/components/team/messages/MessageComposer.pendingSend.test.tsx
# src/renderer/components/team/messages/MessageComposer.tsx
# src/renderer/components/team/messages/MessagesPanel.tsx
# src/renderer/components/team/messages/messagesPanelLogic.ts
# src/renderer/components/team/useTeamAgentRuntimeWatcher.ts
# src/renderer/index.css
# src/renderer/store/index.ts
# src/renderer/store/team/teamResolvedMembers.ts
# src/renderer/utils/__tests__/teamModelAvailability.codexCatalog.test.ts
# src/renderer/utils/teamModelCatalog.ts
# src/shared/utils/contextMetrics.ts
# test/main/services/team/TeamProvisioningPromptBuilders.test.ts
# test/main/services/team/TeamProvisioningService.test.ts
# test/main/services/team/TeamProvisioningServiceRelay.test.ts
# test/main/services/team/TeamRuntimeLivenessResolver.test.ts
# test/main/services/team/TeamTranscriptProjectResolver.test.ts
# test/renderer/components/team/messages/MessagesPanel.test.ts
# test/renderer/utils/teamModelAvailability.test.ts
2026-06-06 17:44:52 +03:00
777genius
8cb44cd793
perf: replace readline with a chunked line generator in team JSONL readers
...
readline.createInterface runs an expensive Unicode line-break regex + extra
stream/string-decoder machinery per chunk. The main transcript parser (parseJsonlStream)
already uses a buffer + manual newline split; these per-team readers still used readline.
Add readJsonlLines(): an async generator that yields a JSONL file's lines via a chunked
utf8 stream read + a plain '\n' split (drop-in for 'for await (const line of rl)'), so the
consumers' loop bodies are unchanged. Stream is utf8-decoded before splitting, so multi-byte
chars across chunk boundaries are safe; trailing CR (CRLF) is stripped; empty lines and a
final newline-less line are yielded, matching readline; breaking out of the loop destroys
the stream via the generator's finally.
Adopt it in MemberStatsComputer, TaskBoundaryParser, and FileContentResolver (file-history
scan). Behavior-identical (their existing tests pass: 18 + 6 + 12) plus 6 new tests for the
generator (CRLF, empty lines, no-trailing-newline, early break, multi-byte chunk boundary).
Note: session-browser readline paths (jsonl metadata extractor, metadataExtraction,
SessionContentFilter) are off the launch path and left as-is for now.
2026-05-30 15:58:09 +03:00
777genius
c357793c2f
fix(security): harden command and path handling
2026-05-28 22:34:47 +03:00
Илия
3849c01955
fix(provenance): classify synthetic user turns
...
* fix(provenance): classify synthetic user turns
* fix(provenance): keep assistant display rendering intact
* fix(provenance): preserve source tool result rows
2026-05-26 23:51:17 +03:00
777genius
a6dd0061a8
perf(startup): defer heavy startup work
2026-05-25 23:14:59 +03:00
777genius
43afc9f907
fix(jsonl): align count-only baseline parsing
2026-05-25 22:58:07 +03:00
777genius
13b3ace4fd
test(jsonl): format baseline count imports
2026-05-25 22:36:14 +03:00
777genius
b0b2fa2d13
fix(jsonl): count baseline entries without materializing messages
2026-05-25 22:32:09 +03:00
777genius
e88d3a1e98
feat(team): open persisted attachments in editor
2026-05-25 21:30:56 +03:00
infiniti
2b3a184bef
fix(opencode): recover empty bridge output sends
...
* fix(opencode): handle empty readiness bridge output
* fix(opencode): retry read-only bridge no-output
* fix(opencode): recover empty bridge output sends
---------
Co-authored-by: iliya <iliyazelenkog@gmail.com>
2026-05-25 00:41:54 +03:00
777genius
077c749cb7
fix(windows): harden elevated runtime detection
2026-05-22 18:43:50 +03:00
777genius
abd40efdaf
feat: add windows elevation status banner
2026-05-22 17:41:19 +03:00
777genius
97b4d86749
fix(opencode): run bridge commands portably
2026-05-22 16:49:23 +03:00
777genius
5551eea482
fix(runtime): harden local launch plumbing
2026-05-22 15:42:51 +03:00
777genius
13b14762bc
fix(runtime): bound binary path discovery
2026-05-22 00:17:54 +03:00
777genius
bf3011624d
fix: harden team launch bootstrap provisioning
2026-05-19 19:43:02 +03:00
777genius
3e52008c7a
feat(app): rename display name to Agent Teams AI
2026-05-19 14:24:30 +03:00
777genius
2b50def03e
fix(opencode): preserve packaged runtime env
2026-05-18 21:48:06 +03:00
777genius
8db61d4860
fix(opencode): harden preflight provider checks
2026-05-18 18:48:13 +03:00
iliya
876527a51d
fix(runtime): hide direct child process windows
2026-05-16 00:45:58 +03:00
iliya
5610e13b98
fix(runtime): hide cli child windows by default
2026-05-16 00:17:01 +03:00
777genius
d018002c3e
feat(docs): restructure VitePress IA, improve onboarding/troubleshooting docs
...
- Restructure sidebar: Start → Guide → Operations → Developers → Reference
- Fix EN/RU sidebar order (Installation before Quickstart)
- Expand troubleshooting with diagnostics commands and task-log triage
- Improve quickstart with prerequisites, pitfalls, and contributor links
- Expand installation docs with verification commands
- Add cyberpunk hero theme to landing page
- Add atomicFile utility with tests and stage-runtime script
- Harden team provisioning with better error handling and progress output
- Add cross-team communication, kanban, and workSync improvements
2026-05-15 23:34:06 +03:00
777genius
3f2b807bbc
feat(opencode): improve runtime delivery diagnostics
2026-05-12 13:26:33 +03:00
777genius
81700a1a14
test(team): harden live launch smoke matrix
2026-05-09 05:52:26 +03:00
777genius
f6e95f5b2f
chore(team): checkpoint current frontend work
2026-05-08 21:48:27 +03:00
777genius
08ab7c6b6d
fix(team): harden process bootstrap and codex auth
2026-05-08 09:28:28 +03:00
777genius
d0341e58af
fix(team): retain launch status and clarify notifications
2026-05-03 13:18:53 +03:00
iliya
5a8a934d8d
fix: make Windows agent launches independent of tmux
2026-04-29 12:30:37 +03:00
777genius
17e1a448dc
merge: integrate runtime compatibility notices
2026-04-26 12:33:45 +03:00
iliya
3f1c1acb4f
fix(windows): harden runtime project compatibility
2026-04-26 11:44:35 +03:00
777genius
427f48dd71
merge: integrate runtime compatibility notices
2026-04-25 20:28:36 +03:00
iliya
645ac4573e
fix(windows): align session paths and validators
2026-04-25 20:23:03 +03:00
iliya
f2b7024226
fix(windows): support path mentions and editor launch
2026-04-25 19:12:11 +03:00
777genius
523d450bc8
feat(app): improve runtime provider and tmux flows
2026-04-25 17:28:56 +03:00
iliya
75f9e6bcec
feat: add teammate runtime compatibility notices and test coverage
2026-04-25 17:19:30 +03:00
777genius
937b23be4b
fix(ci): isolate vitest home path
2026-04-25 02:27:40 +03:00
777genius
465b031873
fix(ci): stabilize windows team runtime tests
2026-04-25 00:56:30 +03:00
777genius
3fe9a24e41
feat(team): harden launch liveness and recovery
2026-04-24 22:34:08 +03:00
777genius
ebb7b5289d
fix: harden team runtime liveness
2026-04-24 20:52:26 +03:00
777genius
1c07e0fdb6
feat(team): expand opencode review and release support
2026-04-24 12:05:54 +03:00
777genius
ba37c1caf5
feat(runtime): add codex-native phase 0 app integration
2026-04-19 19:33:37 +03:00
777genius
39be3bce75
fix(team): restore task log fallback and block launch auto-assignment
2026-04-18 14:13:15 +03:00
777genius
07682eca37
feat(graph-controls): add team page and task creation buttons, improve toolbar button styles
2026-04-13 18:36:44 +03:00
777genius
01e9e8350e
feat(frontend): improve runtime connection and team setup ux
2026-04-11 19:55:25 +03:00
iliya
e1413a32bd
Guard renderer IPC sends during crash recovery
2026-03-27 17:07:40 +02:00
iliya
731d15b722
fix: packaged app CLI login detection, PATH merge, IPC status cache
2026-03-19 22:41:52 +02:00
iliya
6ace707653
feat: add team launched notification and related configuration
...
- Introduced a new notification setting for when a team finishes launching, enhancing user awareness of team readiness.
- Updated the configuration interface and default settings to include the new notification option.
- Implemented logic to trigger the "team launched" notification within the team provisioning service.
- Enhanced validation to ensure the new setting accepts boolean values.
- Updated relevant UI components to allow users to toggle the new notification setting.
2026-03-17 15:13:37 +02:00
iliya
cba10b8ad4
feat: enhance team provisioning with member spawn auditing and improved error handling
...
- Simplified member spawn event handling by removing redundant checks for missing parameters.
- Introduced a new audit function to verify registered members against expected members post-provisioning, flagging any discrepancies.
- Updated logging to provide clearer warnings for unregistered members after provisioning.
- Enhanced test cases to ensure accurate behavior of spawn handling and auditing processes.
2026-03-16 17:20:42 +02:00
iliya
2131ad32d0
feat: add review status, all-tasks-completed and cross-team message notifications
...
- Detect review state transitions (kanbanColumn → review) in status change notifications
- Add "All tasks completed" notification when every task in a team reaches completed/deleted
- Add "Cross-team message" notification with separate toggle (source: cross_team in inbox)
- All three enabled by default with UI toggles in settings
2026-03-16 14:32:03 +02:00
iliya
48033ef701
feat: add task created notification type
...
New notification fires when agents create tasks, with toggle in settings.
Follows existing pattern: detect → fire → seed on initial load.
2026-03-16 14:01:16 +02:00