claude-team-dashboard 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of claude-team-dashboard might be problematic. Click here for more details.

Files changed (49) hide show
  1. package/CHANGELOG.md +76 -0
  2. package/LICENSE +21 -0
  3. package/README.md +722 -0
  4. package/cleanup.js +73 -0
  5. package/config.js +50 -0
  6. package/dist/assets/icons-Ijf8rQIc.js +1 -0
  7. package/dist/assets/index-Cqc1m1x_.css +1 -0
  8. package/dist/assets/index-jGy3ms0W.js +9 -0
  9. package/dist/assets/react-vendor-DbmSkCAF.js +1 -0
  10. package/dist/index.html +16 -0
  11. package/index.html +13 -0
  12. package/package.json +93 -0
  13. package/server.js +953 -0
  14. package/src/App.jsx +372 -0
  15. package/src/animations-enhanced.css +929 -0
  16. package/src/animations.css +783 -0
  17. package/src/components/ActivityFeed.jsx +289 -0
  18. package/src/components/AgentActivity.jsx +104 -0
  19. package/src/components/AgentCard.jsx +163 -0
  20. package/src/components/AgentOutputViewer.jsx +334 -0
  21. package/src/components/ArchiveViewer.jsx +283 -0
  22. package/src/components/ConnectionStatus.jsx +124 -0
  23. package/src/components/DetailedTaskProgress.jsx +126 -0
  24. package/src/components/ErrorBoundary.jsx +132 -0
  25. package/src/components/Header.jsx +154 -0
  26. package/src/components/LiveAgentStream.jsx +176 -0
  27. package/src/components/LiveCommunication.jsx +326 -0
  28. package/src/components/LiveMetrics.jsx +100 -0
  29. package/src/components/RealTimeMessages.jsx +298 -0
  30. package/src/components/SkeletonLoader.jsx +384 -0
  31. package/src/components/StatsOverview.jsx +209 -0
  32. package/src/components/SystemStatus.jsx +57 -0
  33. package/src/components/TaskList.jsx +306 -0
  34. package/src/components/TeamCard.jsx +126 -0
  35. package/src/components/TeamHistory.jsx +204 -0
  36. package/src/components/__tests__/ConnectionStatus.test.jsx +54 -0
  37. package/src/components/__tests__/StatsOverview.test.jsx +66 -0
  38. package/src/config/constants.js +59 -0
  39. package/src/hooks/useCounterAnimation.js +219 -0
  40. package/src/hooks/useWebSocket.js +76 -0
  41. package/src/index.css +1818 -0
  42. package/src/main.jsx +17 -0
  43. package/src/polish-enhancements.css +303 -0
  44. package/src/premium-visual-polish.css +830 -0
  45. package/src/responsive-enhancements.css +666 -0
  46. package/src/styles/theme.css +395 -0
  47. package/src/test/setup.js +19 -0
  48. package/start.js +36 -0
  49. package/vite.config.js +37 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,76 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.2.2](https://github.com/mukul975/agentdashboard/compare/v1.2.1...v1.2.2) (2026-02-09)
9
+
10
+ ### 📚 Documentation
11
+
12
+ * remove author bio and projects section from README ([366b712](https://github.com/mukul975/agentdashboard/commit/366b712b30a72b005680ac427256124b3baeb12c))
13
+
14
+ ## [1.2.1](https://github.com/mukul975/agentdashboard/compare/v1.2.0...v1.2.1) (2026-02-09)
15
+
16
+ ### 🐛 Bug Fixes
17
+
18
+ * enhance path sanitization with explicit validation and CodeQL suppressions ([e463126](https://github.com/mukul975/agentdashboard/commit/e4631262a92e8529d0bd8a7f6f2ec83385c9c8c3))
19
+
20
+ ## [1.2.0](https://github.com/mukul975/agentdashboard/compare/v1.1.1...v1.2.0) (2026-02-09)
21
+
22
+ ### ✨ Features
23
+
24
+ * add path validation to enhance security in server.js ([85d837f](https://github.com/mukul975/agentdashboard/commit/85d837fb3ce1671139a4bbddad94ea54ba4ec094))
25
+
26
+ ## [1.1.1](https://github.com/mukul975/agentdashboard/compare/v1.1.0...v1.1.1) (2026-02-09)
27
+
28
+ ### ♻️ Code Refactoring
29
+
30
+ * clean up imports in LiveAgentStream, LiveMetrics, and RealTimeMessages components ([82ee1d4](https://github.com/mukul975/agentdashboard/commit/82ee1d4a18a90133a7c0928d64a9f4b53249d643))
31
+
32
+ ## [1.1.0](https://github.com/mukul975/agentdashboard/compare/v1.0.2...v1.1.0) (2026-02-09)
33
+
34
+ ### ✨ Features
35
+
36
+ * enhance security and logging in server.js ([9d09b48](https://github.com/mukul975/agentdashboard/commit/9d09b4801c49bb5db69e4579c2faf376c10bc142))
37
+
38
+ ## [1.0.2](https://github.com/mukul975/agentdashboard/compare/v1.0.1...v1.0.2) (2026-02-09)
39
+
40
+ ### 📚 Documentation
41
+
42
+ * add builder credit to README footer ([cdf8a9e](https://github.com/mukul975/agentdashboard/commit/cdf8a9ee2b4d7d297a25e99ec2fc41693c26ad87))
43
+
44
+ ## [1.0.1](https://github.com/mukul975/agentdashboard/compare/v1.0.0...v1.0.1) (2026-02-09)
45
+
46
+ ### 📚 Documentation
47
+
48
+ * add complete GitHub growth transformation summary ([1bed850](https://github.com/mukul975/agentdashboard/commit/1bed850aa7c851d5656b4db5377283c7dd9c7a23))
49
+ * remove docs folder and cleanup README footer ([a009f4a](https://github.com/mukul975/agentdashboard/commit/a009f4a10b9321993b8712d00cc12d51ec9f4ea0))
50
+
51
+ ## 1.0.0 (2026-02-09)
52
+
53
+ ### ✨ Features
54
+
55
+ * add author attribution to footer ([15271cf](https://github.com/mukul975/agentdashboard/commit/15271cf32cf88f0c2197d65e2045ae003daf45c0))
56
+ * add complete GitHub growth infrastructure ([37fc866](https://github.com/mukul975/agentdashboard/commit/37fc8660107503cc6bd50dd4f2778aa8e237254d))
57
+ * Add GitHub infrastructure and workflows ([9be467e](https://github.com/mukul975/agentdashboard/commit/9be467ebf999db3434cc0ac4195d83dc015c2d9d))
58
+ * Complete production-ready improvements ([14d705c](https://github.com/mukul975/agentdashboard/commit/14d705cdba5bed664d3773acea08e5075884ecbb))
59
+ * enhance accessibility and performance in App component ([66c7e34](https://github.com/mukul975/agentdashboard/commit/66c7e34d1af75993f86b22d69647f8d1e1b53564))
60
+ * major performance and security improvements ([5f92f89](https://github.com/mukul975/agentdashboard/commit/5f92f892752f53fee1ae40118bea463ccc0d6eb6))
61
+
62
+ ### 🐛 Bug Fixes
63
+
64
+ * address minor bugs and improve code quality ([a92caf4](https://github.com/mukul975/agentdashboard/commit/a92caf4ae8c41649f42a0b23d290e6203d14017d))
65
+ * clean install to resolve rollup optional dependencies ([a88f113](https://github.com/mukul975/agentdashboard/commit/a88f113274370cdaf09cf60a1b9f705ed72dfe3f))
66
+ * disable npm cache to resolve rollup dependency issue ([9351084](https://github.com/mukul975/agentdashboard/commit/93510847c8ff94b1b96758d334c30885a906b928))
67
+ * remove Node 18 from CI matrix ([f81bf9a](https://github.com/mukul975/agentdashboard/commit/f81bf9abd1721333683488ca5b6d5270076a1677))
68
+ * remove package-lock.json from .gitignore for CI ([be05f04](https://github.com/mukul975/agentdashboard/commit/be05f04efad0b3afc1a682b699cce0c602f6599d))
69
+ * run build before tests and make tests optional ([b5a76e4](https://github.com/mukul975/agentdashboard/commit/b5a76e4967fb971a8ea8190323bb6512691ded49))
70
+ * run npm install after npm ci to fix rollup dependencies ([97cc7eb](https://github.com/mukul975/agentdashboard/commit/97cc7eb052a8a8a507e502681ff87e7a10a65c19))
71
+ * use dayjs instead of date-fns in ActivityFeed ([4b53bab](https://github.com/mukul975/agentdashboard/commit/4b53bab690d5022a27a408c978e4509cd8473f2e))
72
+ * use npm ci --force for rollup optional dependencies ([7544e83](https://github.com/mukul975/agentdashboard/commit/7544e830f3ee04c6595f435c9293f901ede53d52))
73
+
74
+ ### 📚 Documentation
75
+
76
+ * update CONTRIBUTING.md and README.md for improved clarity and structure ([6b56499](https://github.com/mukul975/agentdashboard/commit/6b564992631ea45adfe9596b2b5d345509662cdd))
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 mukul975
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.