Commit graph

113 commits

Author SHA1 Message Date
777genius
445932e45b feat(team): improve runtime provider workflows 2026-05-17 19:11:26 +03:00
777genius
bfebdff3cf chore: save local dev updates 2026-05-16 20:03:30 +03:00
777genius
2beb4dae96 feat: improve desktop workflows 2026-05-16 12:37:17 +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
3341891b57 docs: refresh agent guidance and opencode plan 2026-05-13 23:55:16 +03:00
777genius
4c5a752342 chore: commit remaining workspace updates 2026-05-13 22:34:13 +03:00
777genius
298e81af82 docs(readme): mention opencode orchestration 2026-05-11 00:54:17 +03:00
777genius
08ab7c6b6d fix(team): harden process bootstrap and codex auth 2026-05-08 09:28:28 +03:00
777genius
5730ddc7af fix(team): harden codex login and runtime previews 2026-05-07 21:18:39 +03:00
777genius
ca28e1cef6 chore(runtime): pin orchestrator 0.0.18 2026-05-06 00:02:51 +03:00
777genius
9ff14a6e0b merge(dev): sync dev into main 2026-04-29 12:54:53 +03:00
777genius
93532f3ff5 feat: expose agent teams control via MCP 2026-04-29 10:55:07 +03:00
777genius
51d88e9847 merge(dev): integrate dev into main 2026-04-28 23:33:38 +03:00
Илия
7e93259740
Emphasize 'freshest' version in README 2026-04-28 22:34:37 +03:00
777genius
122d13f066 docs(readme): use tag version badge 2026-04-27 19:56:24 +03:00
777genius
d54a5a78ce docs: mention opencode provider support 2026-04-26 13:12:19 +03:00
777genius
49982a1db8 feat: improve opencode model verification ux 2026-04-26 10:21:18 +03:00
777genius
3fe9a24e41 feat(team): harden launch liveness and recovery 2026-04-24 22:34:08 +03:00
777genius
1c07e0fdb6 feat(team): expand opencode review and release support 2026-04-24 12:05:54 +03:00
Илия
1315bdaa54
Update image in README.md
Replaced demo image with a new image in README.
2026-04-19 01:53:22 +03:00
777genius
be30101c20 docs(readme): clarify multimodel runtime wording
Refs #63
2026-04-18 22:20:12 +03:00
777genius
78c6824d69 feat(team): merge live lead messages and repair transcript resolution 2026-04-18 11:02:21 +03:00
SardorBek Sattarov
a42ab3096f
feat(team): auto-resume rate-limited teams when the limit resets 2026-04-18 10:21:23 +03:00
777genius
e5d85ec873 Merge branch 'dev' of https://github.com/777genius/claude_agent_teams_ui into dev 2026-04-14 22:07:15 +03:00
777genius
90b637c6d8 refactor: update README and security documentation; enhance activity lane layout and kanban integration 2026-04-14 22:06:50 +03:00
777genius
928ed6cfc6 docs: fix readme architecture docs placement 2026-04-14 16:08:09 +03:00
777genius
fad89e71da feat: add dashboard recent projects feature slice 2026-04-14 16:07:04 +03:00
Илия
3b7dc1f5e2
Replace demo image in README
Updated demo image link in README.md.
2026-04-13 21:30:30 +03:00
777genius
5b328a0f8a improvement: alot small improvements and fixes 2026-04-13 16:20:57 +03:00
777genius
c30e8d414a docs: update multi-agent backend copy 2026-04-12 08:55:57 +03:00
Илия
7ff9317b6f
Update image in README with new demo image 2026-04-01 12:27:55 +03:00
Илия
db8942ab7a
Update Discord link in README 2026-03-31 17:07:15 +03:00
Илия
e4c05c7367
Add image to README
Add an image to the README for visual enhancement.
2026-03-31 03:02:19 +03:00
iliya
f6daced2ce docs(README): remove outdated warning about Claude Code issue
- Deleted the warning regarding the upstream Claude Code issue affecting agent teams, as it is no longer relevant.
2026-03-30 19:01:54 +03:00
iliya
d0715dfad6 docs(README): add warning about Claude Code issue with agent teams
- Included a warning regarding an upstream issue in Claude Code affecting the inheritance of external MCP tools by teammates spawned via Agent/Task.
- Noted the impact on bootstrap processes and provided a link to track the issue status.
2026-03-30 18:59:39 +03:00
iliya
7ea8289c5b feat(team): add support for task comment notifications
- Introduced 'task_comment_notification' message kind to enhance message handling in the team services.
- Updated TeamDataService, TeamInboxReader, and TeamSentMessagesStore to accommodate the new message kind.
- Modified filtering logic to exclude task comment notifications from the displayed messages.
- Added tests to ensure correct handling and filtering of task comment notifications.
2026-03-29 01:29:13 +02:00
iliya
dd42cf0069 fix(team): scan inbox for permission_request during provisioning
relayLeadInboxMessages only processes unread messages after
provisioningComplete, but CLI marks permission_request messages as
read after native delivery -- before our relay runs.

Move permission_request inbox scan BEFORE provisioningComplete check.
Scan ALL messages (including read=true), track processed IDs via
processedPermissionRequestIds Set on ProvisioningRun to prevent
re-emitting. Also look up both alive and provisioning runs so the
scan works during team bootstrap.
2026-03-27 23:35:52 +02:00
iliya
896c749e76 fix: add recursive option to fs.rm for directory removal
fs.rm() without { recursive: true } throws ERR_FS_EISDIR on directories,
unlike the deprecated fs.rmdir() which handled empty dirs. Also fix
broken roadmap bullet in README.
2026-03-24 21:43:43 +02:00
iliya
08be8590da fix: electron 28→40 migration fixes
- Replace deprecated fs.rmdir with fs.rm (Node 22+ deprecation)
- Update electron-builder 25.1.8 → 26.8.1 (required for Electron 35+)
- Add macOS minimumSystemVersion 12.0 (Electron 38+ requirement)
- Update React 18 → 19 in README.md tech stack
2026-03-24 21:13:06 +02:00
iliya
1718f9cf7c refactor(README): reorganize roadmap items for clarity and update language switcher flag icon
- Rearranged roadmap items in README.md for better organization, moving planning mode and visual workflow editor to the top.
- Updated the flag icon for English in LanguageSwitcher.vue from the US to the GB flag.
- Enhanced user environment setup in CliInstallerService.ts by adding user information retrieval.
- Improved timestamp handling in MemberLogsTab.tsx to better reflect recent activity.
- Adjusted button class names in ProvisioningProgressBlock.tsx for consistency.
2026-03-24 16:52:12 +02:00
iliya
8b1d3034fe fix(readme): update Discord link and remove obsolete screenshot
- Changed the Discord link in README.md to the new URL for better accessibility.
- Deleted the obsolete screenshot 'deny actions.png' from the project to clean up unused files.
- Added new screenshots to the landing data for enhanced visual representation of features.
2026-03-23 23:38:57 +02:00
iliya
3a4c226b60 fix(landing): update live processes feature status and improve comparison table styling
- Changed the status of the live processes feature for Aperant from 'yes' to 'no' in both README.md and ComparisonSection.vue to reflect accurate capabilities.
- Adjusted the comparison table styling, including overflow behavior and header positioning for better responsiveness and user experience.
- Enhanced background colors for table headers to improve visibility across themes.
2026-03-23 20:59:29 +02:00
iliya
c326f8f96e feat(readme): update project title with link and remove unused media files
- Updated the project title in README.md to include a hyperlink for easier access to the documentation.
- Removed unused media files (compact.mp4, context.png, demo.mp4, noti.mp4) from the public directory to clean up the project.
- Enhanced the preload and renderer components to include a new method for retrieving file paths, improving file handling capabilities.
2026-03-23 20:18:14 +02:00
iliya
b24d90d799 chore: update pnpm lockfile and workspace configuration
- Updated package versions in pnpm-lock.yaml, including rollup and sass dependencies.
- Added new 'landing' package to pnpm-workspace.yaml.
- Enhanced README with additional images for better visual representation.
2026-03-23 16:06:43 +02:00
iliya
7b13a4c398 refactor: update README and enhance team UI components
- Changed image format for agent comments screenshot in README.
- Improved table of contents in README for better navigation.
- Refactored imports in IPC config and discovery services for consistency.
- Added shimmer effect for waiting members in CSS.
- Enhanced dashboard view to display active teams with online indicators.
- Updated team provisioning components to support message severity.
- Improved task detail dialog layout for related tasks and dependencies.
- Adjusted team model selector default value and refined member status handling.
- Fixed minor styling issues in messages panel and tab bar.

These changes aim to improve user experience and maintainability across the application.
2026-03-23 12:58:38 +02:00
iliya
e005671123 feat: add Sentry error tracking and update docs
- Integrate @sentry/electron and @sentry/react for crash reporting
- Add Sentry Vite plugin for source maps
- Add error tracking to main process, renderer, and IPC layer
- Exclude source maps from packaged builds
- Update README with new screenshots
- Add Sentry opt-out toggle in settings
- Update release workflow with Sentry config
2026-03-22 17:03:15 +02:00
iliya
115e1d2d0c style(readme): reduce last screenshot width for tapered edge effect 2026-03-22 15:39:10 +02:00
iliya
c4bce6656c style(readme): replace table layout with inline images for screenshots 2026-03-22 15:34:36 +02:00
iliya
5bb5dda345 docs(readme): add comparison table, screenshots, and restructure layout
Add competitor comparison table (vs Vibe Kanban, Aperant, Cursor, Claude Code CLI)
sorted by unique advantage strength. Add screenshot thumbnails around logo.
Restructure sections: Installation first, Comparison after features.
Rename TODO to Roadmap. Add new feature descriptions (review workflow,
workflow history, built-in editor, task dependencies, attachments, autonomy).
2026-03-22 15:19:57 +02:00
iliya
4a889a8f3d docs: update README to include Tech Stack section and enhance feature comparison table
- Added a new "Tech stack" section detailing the technologies used in the project.
- Revised the feature comparison table to improve clarity and accuracy, including updates to the descriptions of various features.
- Ensured consistency in the presentation of features across different tools.
2026-03-21 21:16:14 +02:00