├── .electron-builder.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── fixtures │ └── tokenUsageData.js ├── helpers │ └── calculateExpectedCosts.js └── services │ ├── jsonlParser.test.js │ └── tokenAggregator.test.js ├── after-pack-safe.js ├── agents-gallery ├── ai-engineer.md ├── api-documenter.md ├── architect-review.md ├── backend-architect.md ├── business-analyst.md ├── c-pro.md ├── cloud-architect.md ├── code-reviewer.md ├── content-marketer.md ├── context-manager.md ├── cpp-pro.md ├── customer-support.md ├── data-engineer.md ├── data-scientist.md ├── database-admin.md ├── database-optimizer.md ├── debugger.md ├── deployment-engineer.md ├── devops-troubleshooter.md ├── dx-optimizer.md ├── error-detective.md ├── frontend-developer.md ├── golang-pro.md ├── graphql-architect.md ├── incident-responder.md ├── ios-developer.md ├── java-pro.md ├── javascript-pro.md ├── kotlin-spring-champion.md ├── legacy-modernizer.md ├── legal-advisor.md ├── ml-engineer.md ├── mlops-engineer.md ├── mobile-developer.md ├── network-engineer.md ├── payment-integration.md ├── performance-engineer.md ├── php-pro.md ├── product-owner-champion.md ├── prompt-engineer.md ├── python-pro.md ├── quant-analyst.md ├── risk-manager.md ├── rust-pro.md ├── sales-automator.md ├── search-specialist.md ├── security-auditor.md ├── sql-pro.md ├── terraform-specialist.md ├── test-automator.md ├── typescript-pro.md └── ui-ux-designer.md ├── agents.css ├── agents.js ├── electron-builder.json ├── entitlements.mac.plist ├── homebrew-viber ├── Casks │ ├── viber-local.rb │ └── viber.rb └── README.md ├── hooks.css ├── hooks.js ├── images ├── app_agent.png ├── app_hooks.png ├── app_now_1.png ├── app_now_2.png ├── app_session_log.png ├── app_setting.png ├── app_stastics_1.png ├── app_stastics_2.png ├── app_stastics_3.png ├── app_status_bar.png ├── viber-app.png ├── viber_image.png └── viber_logo.png ├── index.html ├── jest.config.js ├── main.js ├── now.js ├── package.json ├── preload.js ├── release-build.sh ├── renderer.js ├── resources └── icon.png ├── sessionLog.css ├── sessionLog.js ├── settings.js ├── src ├── components │ └── statistics.js └── services │ ├── agentTemplate.js │ ├── agentsGallery.js │ ├── agentsManager.js │ ├── claudeSettingsManager.js │ ├── hooksManager.js │ ├── jsonlParser.js │ ├── realtimeMonitor.js │ ├── settingsManager.js │ ├── statusBar.js │ ├── statusBarIcons.js │ ├── tokenAggregator.js │ └── updateChecker.js ├── statistics.js ├── styles.css └── test ├── README.md ├── agentsManager.test.js ├── claudeSettingsManager.test.js ├── hooksManager.test.js ├── integration.test.js ├── now.test.js ├── package.json ├── realtimeMonitor.integration.test.js ├── realtimeMonitor.test.js ├── realtimeMonitor.weekly.test.js └── weekly-window-verification.test.js /.electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/.electron-builder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/fixtures/tokenUsageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/__tests__/fixtures/tokenUsageData.js -------------------------------------------------------------------------------- /__tests__/helpers/calculateExpectedCosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/__tests__/helpers/calculateExpectedCosts.js -------------------------------------------------------------------------------- /__tests__/services/jsonlParser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/__tests__/services/jsonlParser.test.js -------------------------------------------------------------------------------- /__tests__/services/tokenAggregator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/__tests__/services/tokenAggregator.test.js -------------------------------------------------------------------------------- /after-pack-safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/after-pack-safe.js -------------------------------------------------------------------------------- /agents-gallery/ai-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/ai-engineer.md -------------------------------------------------------------------------------- /agents-gallery/api-documenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/api-documenter.md -------------------------------------------------------------------------------- /agents-gallery/architect-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/architect-review.md -------------------------------------------------------------------------------- /agents-gallery/backend-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/backend-architect.md -------------------------------------------------------------------------------- /agents-gallery/business-analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/business-analyst.md -------------------------------------------------------------------------------- /agents-gallery/c-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/c-pro.md -------------------------------------------------------------------------------- /agents-gallery/cloud-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/cloud-architect.md -------------------------------------------------------------------------------- /agents-gallery/code-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/code-reviewer.md -------------------------------------------------------------------------------- /agents-gallery/content-marketer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/content-marketer.md -------------------------------------------------------------------------------- /agents-gallery/context-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/context-manager.md -------------------------------------------------------------------------------- /agents-gallery/cpp-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/cpp-pro.md -------------------------------------------------------------------------------- /agents-gallery/customer-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/customer-support.md -------------------------------------------------------------------------------- /agents-gallery/data-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/data-engineer.md -------------------------------------------------------------------------------- /agents-gallery/data-scientist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/data-scientist.md -------------------------------------------------------------------------------- /agents-gallery/database-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/database-admin.md -------------------------------------------------------------------------------- /agents-gallery/database-optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/database-optimizer.md -------------------------------------------------------------------------------- /agents-gallery/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/debugger.md -------------------------------------------------------------------------------- /agents-gallery/deployment-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/deployment-engineer.md -------------------------------------------------------------------------------- /agents-gallery/devops-troubleshooter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/devops-troubleshooter.md -------------------------------------------------------------------------------- /agents-gallery/dx-optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/dx-optimizer.md -------------------------------------------------------------------------------- /agents-gallery/error-detective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/error-detective.md -------------------------------------------------------------------------------- /agents-gallery/frontend-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/frontend-developer.md -------------------------------------------------------------------------------- /agents-gallery/golang-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/golang-pro.md -------------------------------------------------------------------------------- /agents-gallery/graphql-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/graphql-architect.md -------------------------------------------------------------------------------- /agents-gallery/incident-responder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/incident-responder.md -------------------------------------------------------------------------------- /agents-gallery/ios-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/ios-developer.md -------------------------------------------------------------------------------- /agents-gallery/java-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/java-pro.md -------------------------------------------------------------------------------- /agents-gallery/javascript-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/javascript-pro.md -------------------------------------------------------------------------------- /agents-gallery/kotlin-spring-champion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/kotlin-spring-champion.md -------------------------------------------------------------------------------- /agents-gallery/legacy-modernizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/legacy-modernizer.md -------------------------------------------------------------------------------- /agents-gallery/legal-advisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/legal-advisor.md -------------------------------------------------------------------------------- /agents-gallery/ml-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/ml-engineer.md -------------------------------------------------------------------------------- /agents-gallery/mlops-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/mlops-engineer.md -------------------------------------------------------------------------------- /agents-gallery/mobile-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/mobile-developer.md -------------------------------------------------------------------------------- /agents-gallery/network-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/network-engineer.md -------------------------------------------------------------------------------- /agents-gallery/payment-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/payment-integration.md -------------------------------------------------------------------------------- /agents-gallery/performance-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/performance-engineer.md -------------------------------------------------------------------------------- /agents-gallery/php-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/php-pro.md -------------------------------------------------------------------------------- /agents-gallery/product-owner-champion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/product-owner-champion.md -------------------------------------------------------------------------------- /agents-gallery/prompt-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/prompt-engineer.md -------------------------------------------------------------------------------- /agents-gallery/python-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/python-pro.md -------------------------------------------------------------------------------- /agents-gallery/quant-analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/quant-analyst.md -------------------------------------------------------------------------------- /agents-gallery/risk-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/risk-manager.md -------------------------------------------------------------------------------- /agents-gallery/rust-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/rust-pro.md -------------------------------------------------------------------------------- /agents-gallery/sales-automator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/sales-automator.md -------------------------------------------------------------------------------- /agents-gallery/search-specialist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/search-specialist.md -------------------------------------------------------------------------------- /agents-gallery/security-auditor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/security-auditor.md -------------------------------------------------------------------------------- /agents-gallery/sql-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/sql-pro.md -------------------------------------------------------------------------------- /agents-gallery/terraform-specialist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/terraform-specialist.md -------------------------------------------------------------------------------- /agents-gallery/test-automator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/test-automator.md -------------------------------------------------------------------------------- /agents-gallery/typescript-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/typescript-pro.md -------------------------------------------------------------------------------- /agents-gallery/ui-ux-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents-gallery/ui-ux-designer.md -------------------------------------------------------------------------------- /agents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents.css -------------------------------------------------------------------------------- /agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/agents.js -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/electron-builder.json -------------------------------------------------------------------------------- /entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/entitlements.mac.plist -------------------------------------------------------------------------------- /homebrew-viber/Casks/viber-local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/homebrew-viber/Casks/viber-local.rb -------------------------------------------------------------------------------- /homebrew-viber/Casks/viber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/homebrew-viber/Casks/viber.rb -------------------------------------------------------------------------------- /homebrew-viber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/homebrew-viber/README.md -------------------------------------------------------------------------------- /hooks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/hooks.css -------------------------------------------------------------------------------- /hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/hooks.js -------------------------------------------------------------------------------- /images/app_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_agent.png -------------------------------------------------------------------------------- /images/app_hooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_hooks.png -------------------------------------------------------------------------------- /images/app_now_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_now_1.png -------------------------------------------------------------------------------- /images/app_now_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_now_2.png -------------------------------------------------------------------------------- /images/app_session_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_session_log.png -------------------------------------------------------------------------------- /images/app_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_setting.png -------------------------------------------------------------------------------- /images/app_stastics_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_stastics_1.png -------------------------------------------------------------------------------- /images/app_stastics_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_stastics_2.png -------------------------------------------------------------------------------- /images/app_stastics_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_stastics_3.png -------------------------------------------------------------------------------- /images/app_status_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/app_status_bar.png -------------------------------------------------------------------------------- /images/viber-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/viber-app.png -------------------------------------------------------------------------------- /images/viber_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/viber_image.png -------------------------------------------------------------------------------- /images/viber_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/images/viber_logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/jest.config.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/main.js -------------------------------------------------------------------------------- /now.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/now.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/package.json -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/preload.js -------------------------------------------------------------------------------- /release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/release-build.sh -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/renderer.js -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/resources/icon.png -------------------------------------------------------------------------------- /sessionLog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/sessionLog.css -------------------------------------------------------------------------------- /sessionLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/sessionLog.js -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/settings.js -------------------------------------------------------------------------------- /src/components/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/components/statistics.js -------------------------------------------------------------------------------- /src/services/agentTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/agentTemplate.js -------------------------------------------------------------------------------- /src/services/agentsGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/agentsGallery.js -------------------------------------------------------------------------------- /src/services/agentsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/agentsManager.js -------------------------------------------------------------------------------- /src/services/claudeSettingsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/claudeSettingsManager.js -------------------------------------------------------------------------------- /src/services/hooksManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/hooksManager.js -------------------------------------------------------------------------------- /src/services/jsonlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/jsonlParser.js -------------------------------------------------------------------------------- /src/services/realtimeMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/realtimeMonitor.js -------------------------------------------------------------------------------- /src/services/settingsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/settingsManager.js -------------------------------------------------------------------------------- /src/services/statusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/statusBar.js -------------------------------------------------------------------------------- /src/services/statusBarIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/statusBarIcons.js -------------------------------------------------------------------------------- /src/services/tokenAggregator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/tokenAggregator.js -------------------------------------------------------------------------------- /src/services/updateChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/src/services/updateChecker.js -------------------------------------------------------------------------------- /statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/statistics.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/styles.css -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/README.md -------------------------------------------------------------------------------- /test/agentsManager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/agentsManager.test.js -------------------------------------------------------------------------------- /test/claudeSettingsManager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/claudeSettingsManager.test.js -------------------------------------------------------------------------------- /test/hooksManager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/hooksManager.test.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/now.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/now.test.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/package.json -------------------------------------------------------------------------------- /test/realtimeMonitor.integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/realtimeMonitor.integration.test.js -------------------------------------------------------------------------------- /test/realtimeMonitor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/realtimeMonitor.test.js -------------------------------------------------------------------------------- /test/realtimeMonitor.weekly.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/realtimeMonitor.weekly.test.js -------------------------------------------------------------------------------- /test/weekly-window-verification.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSpiner/viber/HEAD/test/weekly-window-verification.test.js --------------------------------------------------------------------------------