NavigaraNavigara
OrganizationsDistributionCompareResearch
NavigaraNavigara
OrganizationsDistributionCompareResearch
All developers

Dmitry Pasiukevich

Developer

Dmitry Pasiukevich

20398573+dpasiukevich@users.noreply.github.com

25 commits~5 files/commit

Performance

2026Previous year

Insights

Key patterns and highlights from this developer's activity.

Peak MonthMar'26115 performance
Growth Trend↑1189%vs prior period
Avg Files/Commit5files per commit
Active Days22of 455 days
Top Repoadk-go25 commits

Effort Over Time

Breakdown of growth, maintenance, and fixes effort over time.

Bug Behavior

Beta

Bugs introduced vs. fixed over time.

Investment Quality

Beta

Reclassifies engineering effort based on bug attribution. Commits that introduced bugs are retrospectively counted as poor investments.

47%Productive TimeGrowth 41% + Fixes 59%
51%Maintenance Time
2%Wasted Time
How it works

Methodology

Investment Quality reclassifies engineering effort based on bug attribution data. Commits identified as buggy origins (those that introduced bugs later fixed by someone) have their grow and maintenance time moved into the Wasted Time category. Their waste (fix commits) remains counted as productive. All other commits retain their standard classification: grow is productive, maintenance is maintenance, and waste (fixes) is productive.

Relationship to Growth / Maintenance / Fixes

The standard model classifies commits as Growth, Maintenance, or Fixes. Investment Quality adds a quality lens: a commit that introduced a bug is retrospectively counted as a poor investment — the engineering time spent on it was wasted because it ultimately required additional fix work. Fix commits (Fixes in the standard model) are reframed as productive, because fixing bugs is valuable work.

Proposed API Endpoint

Currently computed client-side from commit and bug attribution data. Ideal server-side endpoint:

POST /v1/organizations/{orgId}/investment-quality
Content-Type: application/json

Request:
{
  "startTime": "2025-01-01T00:00:00Z",
  "endTime": "2025-12-31T23:59:59Z",
  "bucketSize": "BUCKET_SIZE_MONTH",
  "groupBy": ["repository_id" | "deliverer_email"]
}

Response:
{
  "productivePct": 74,
  "maintenancePct": 18,
  "wastedPct": 8,
  "buckets": [
    {
      "bucketStart": "2025-01-01T00:00:00Z",
      "productive": 4.2,
      "maintenance": 1.8,
      "wasted": 0.6
    }
  ]
}

Recent Activity

Latest analyzed commits from this developer.

HashMessageDateFilesEffort
d06c264This commit performs a significant **refactoring** by **renaming the request and response types for memory search operations**. Specifically, `SearchMemoryRequest` is now `SearchRequest` and `SearchMemoryResponse` is now `SearchResponse`. This **breaking change** impacts the **core `memory` subsystem**, including the `SearchMemory` method signature across `memory/service.go`, `memory/inmemory.go`, and `internal/memory/memory.go`. The change propagates to the **`agent` and `tool` contexts** that interact with memory, requiring updates to their `SearchMemory` method signatures and associated test files. This improves API consistency and clarity, but requires downstream consumers to update their type references.Mar 2013maint
c7a2049This commit **refactors** the **`adkrest`** package to **remove its direct dependency on the `launcher` package**, enhancing modularity and preparing for future `launcher` revisions. The `server/adkrest/handler.go` file now exposes a new `Server` struct and `NewServer` constructor, replacing the previous `NewHandler` function, which represents a **breaking API change**. Consequently, the `cmd/launcher/web/api/api.go` module has been updated to utilize this new `adkrest.NewServer` constructor with explicit configuration, including telemetry processors. This ensures critical server packages no longer implicitly rely on `launcher` for configuration.Mar 183maint
bb93331This commit introduces a significant **refactoring** of the **memory service** to achieve consistent naming conventions across the ADK, preparing for the upcoming v1.0 release. Key changes include renaming core methods such as `AddSession` to `AddSessionToMemory` and `Search` to `SearchMemory` within the `agent`, `memory`, and `tool` modules, alongside updates to their return types and associated data structures like `SearchRequest`/`SearchResponse`. Furthermore, the `Entry` struct in the `memory` service now includes `ID` and `CustomMetadata` fields, enhancing the data stored for each memory entry. This constitutes a **breaking change** for any downstream consumers directly utilizing the `memory` service's public interface, necessitating updates to method calls and type definitions to align with the new API.Mar 1614maint
71dc025This commit primarily **refactors the `tool` package** by **removing a duplicated `ConfirmationProvider` type** from the `mcptoolset` module and consolidating its definition into the shared `tool` package. This **code consolidation** standardizes the `ConfirmationProvider` across the codebase, requiring all references within `mcptoolset` to now use `tool.ConfirmationProvider`. Additionally, the commit **improves predicate handling** within the `tool` package by introducing `AllowedToolsPredicate` and deprecating `StringPredicate`, alongside a minor structural cleanup in `exitlooptool`. This change is a **breaking change** for any external code directly referencing the now-removed `mcptoolset.ConfirmationProvider`, promoting better maintainability and consistency.Mar 165maint
3f2690fThis commit **introduces a new Apigee LLM model** implementation, significantly expanding the system's AI integration capabilities. The core **new capability** is provided in `model/apigee/apigee.go`, offering content generation and configuration options such as `WithProxyURL` and `WithCustomHeaders`. Supporting this, the `LLMAgent`'s initialization logic in `agent/llmagent/llmagent.go` is **refactored** to correctly handle agent types, and a `TypeRemoteAgent` constant is added to `internal/agent/state.go`. Dedicated unit tests for the Apigee model are included, alongside minor unrelated changes like an improved error message in `session/inmemory.go` and a typo fix in `agent/context.go`.Mar 117maint
da1d6a5This commit performs a **maintenance chore** by updating the **internal version constant** within the `internal/version/version.go` file. Specifically, the version string has been incremented from `0.3.0` to `0.6.0`. This change primarily affects the project's **internal versioning system**, ensuring that any component relying on this constant reflects the latest software release state.Mar 61maint
4770642This commit **fixes** an issue in the **`mcptoolset` client** by updating its error handling logic for session-related problems. Specifically, it modifies the `shouldRefreshConnection` function in `tool/mcptoolset/client.go` to recognize the new `mcp.ErrSessionMissing` error type. This **maintenance update** replaces a deprecated string-based check for session not found, improving the reliability and clarity of connection refresh decisions. The change ensures the client correctly identifies when a session is missing, leading to more robust connection management within the `mcptoolset` subsystem.Mar 63waste
1904d02This commit performs **test maintenance** by updating an expected model name within the **Gemini model integration tests**. Specifically, it corrects the expected model version string in `model/gemini/gemini_test.go` from `gemini-2.0-flash` to `gemini-2.5-flash`. This **test fix** ensures that the test suite accurately reflects the current **Gemini API model names**, preventing outdated expectations and potential false test failures. The change is limited to the test suite and has no direct impact on the production code's functionality.Mar 51maint
5f4096dThis commit **updates and regenerates test fixtures** for the **`ParallelAgent` workflow agent** to incorporate recent changes, specifically the addition of an `identityProcessor`. It involves updating the `modelName` constant in `agent/workflowagents/parallelagent/agent_test.go` from `gemini-2.0-flash-exp` to `gemini-2.5-flash`. Additionally, the recorded HTTP requests and responses in `TestParallelAgentWithTools_agent1.httprr` and `TestParallelAgentWithTools_agent2.httprr` are refreshed to reflect the new model and updated system instructions. This **test maintenance** ensures the **integration tests** accurately validate the `ParallelAgent`'s behavior with the latest configurations.Mar 43maint
9e5b6d5This commit performs a **cleanup and refactoring** by completely removing the unused `MutableSession` struct from the codebase, as it was a leftover from previous refactoring and served no functional purpose. This **maintenance** task primarily impacts the **session management** logic within the `runner` module, where the `Run` method now directly uses the stored session instead of an unnecessary wrapper. Additionally, various **test files** across `internal/llminternal`, `internal/memory`, and `tool/agenttool` are updated to remove references to the deprecated struct, ensuring consistency. The change streamlines internal session handling, improving code clarity and reducing unnecessary abstraction.Feb 167maint
147b757This commit introduces a **fix** and **refactoring** to the **LLM internal processing logic**, specifically for **Google Gemini models**. It refactors the **LLM variant detection** within `internal/llminternal/googlellm` by introducing a new `GoogleLLM` interface and functions like `NeedsOutputSchemaProcessor` to accurately determine if a Gemini model, particularly **Gemini 2.5 and below API variants**, requires an output schema processor. This ensures that display names are correctly handled in file uploads and that the output schema processor is appropriately enabled for older Gemini versions, preventing potential issues with model output interpretation. The `model/gemini` module is updated to expose the necessary variant information, improving the robustness of model interaction.Feb 136waste
48ca98aThis commit **fixes** an issue within the **LLM internal event generation** module by ensuring that `long_running_function_ids` are correctly passed in the event generated for **request confirmation**. It assigns a unique ID to the request confirmation function call and streamlines content creation within the `generateRequestConfirmationEvent` function. As part of this **bug fix** and **refactoring**, the logic for generating function call IDs was extracted into a new utility function, `GenerateFunctionCallID`, in `internal/utils/utils.go`. New unit tests were also added to `internal/llminternal/functions_test.go` to cover various confirmation scenarios and validate the correct behavior of `generateRequestConfirmationEvent`.Feb 103maint
9cff259This commit introduces a **new feature** by adding a dedicated **logging plugin** to the system. Implemented in `plugin/loggingplugin/logging_plugin.go`, this plugin provides detailed console output for various lifecycle events across **agent**, **model**, and **tool** interactions. It leverages methods like `onUserMessage`, `beforeRun`, `afterRun`, `beforeAgent`, `afterAgent`, `beforeModel`, `afterModel`, `beforeTool`, and `afterTool` to capture and log operational flow. This enhancement significantly improves observability and debugging capabilities for core components by providing granular insights into their execution.Feb 51grow
d78c9deThis commit primarily **updates documentation** across the project, enhancing clarity for key configuration parameters. Specifically, it adds detailed explanations for `Instruction` and `InstructionProvider` within the **LLM agent configuration** and for `ProjectID`, `Location`, and `ReasoningEngine` in the **VertexAI service configuration**. Additionally, a minor **refactoring** was performed in `session/vertexai/vertexai_client.go` to rename an internal helper function `IsNotFoundError` to `isNotFoundError` for consistency. This work improves the overall maintainability and user understanding of critical system settings related to **LLM agent templating** and **VertexAI integration**.Jan 273maint
76cc45bThis commit **refactors** the application's plugin management to consistently pass a complete `runner.PluginConfig` object instead of only a list of plugins. This **fixes** an underlying issue where partial plugin information was being propagated, ensuring that all necessary configuration details are available for proper plugin initialization. The change impacts the **launcher's console and A2A setup** (`cmd/launcher/*`) and the **ADK REST API's runtime controller** (`server/adkrest/controllers/runtime.go`), improving the robustness and consistency of how plugins are configured and managed throughout the system.Jan 236waste
e9e576eThis commit introduces a **new capability** to the **`tool` package** by adding the `FilterToolset` helper function. This function, along with its supporting `filteredToolset` struct and methods, provides a dedicated and more robust mechanism for **filtering toolsets**. Concurrently, the `ToolFilter` field in the `Config` struct within `tool/mcptoolset/set.go` has been **deprecated**, advising users to migrate to the new `tool.FilterToolset` for improved toolset management. This **refactoring** streamlines how toolsets are filtered, offering a more explicit and maintainable approach for consumers of the `tool` package.Jan 162grow
33d332fThis commit delivers a **bug fix** for the **web server launcher** within the `cmd/launcher/web` package. It modifies the `Run` function to explicitly return `nil` upon a successful server shutdown, rather than propagating a context error, which ensures that callers correctly interpret a clean termination. This change improves the robustness and clarity of the **server lifecycle management**. Additionally, a minor **maintenance** update was applied to the `.github/workflows/go.yml` CI configuration, enabling race detection and test shuffling for enhanced reliability.Jan 162maint
fe09924This commit **fixes a bug** in the **`agenttool`** that prevented it from properly surfacing errors originating from sub-agents, particularly those using `error_code` or `error_message` fields instead of standard Go errors. Previously, the `Run` function in `tool/agenttool/agent_tool.go` would return an empty response, effectively hiding these critical errors when wrapping `remoteagent` or similar components. The change introduces new error handling logic within `agenttool` to correctly detect and propagate these specific error types. This ensures that **`agenttool` now accurately reports all sub-agent errors**, significantly improving observability and debugging for users. A minor **style fix** was also applied to an error message in `cmd/launcher/web/web.go`.Jan 92waste
3cc66f3This commit introduces a **bug fix** to the **database session service** by correcting how event timestamps are truncated before being stored. Specifically, the `AppendEvent` function in `session/database/service.go` is updated to use `time.Truncate(time.Microsecond)` while preserving the original time's location (timezone information). This ensures that event timestamps are accurately stored with their correct context, matching the database's maximum precision without losing critical metadata. The change primarily **fixes test failures** related to time zone discrepancies, improving the reliability of event handling within the **session management subsystem**.Dec 311waste
5c47306This commit **updates the project's contributor guidelines** by clarifying policies within the **Contributor License Agreement (CLA)** section of `CONTRIBUTING.md`. This **documentation update** specifically addresses the use of **coding assistance tools** and **AI-generated code**, providing essential guidance for future contributions. The change ensures that all contributors understand the project's stance on these modern development practices, streamlining the contribution process and maintaining legal clarity.Dec 181maint
d06c264Mar 20

This commit performs a significant **refactoring** by **renaming the request and response types for memory search operations**. Specifically, `SearchMemoryRequest` is now `SearchRequest` and `SearchMemoryResponse` is now `SearchResponse`. This **breaking change** impacts the **core `memory` subsystem**, including the `SearchMemory` method signature across `memory/service.go`, `memory/inmemory.go`, and `internal/memory/memory.go`. The change propagates to the **`agent` and `tool` contexts** that interact with memory, requiring updates to their `SearchMemory` method signatures and associated test files. This improves API consistency and clarity, but requires downstream consumers to update their type references.

13 filesmaint
c7a2049Mar 18

This commit **refactors** the **`adkrest`** package to **remove its direct dependency on the `launcher` package**, enhancing modularity and preparing for future `launcher` revisions. The `server/adkrest/handler.go` file now exposes a new `Server` struct and `NewServer` constructor, replacing the previous `NewHandler` function, which represents a **breaking API change**. Consequently, the `cmd/launcher/web/api/api.go` module has been updated to utilize this new `adkrest.NewServer` constructor with explicit configuration, including telemetry processors. This ensures critical server packages no longer implicitly rely on `launcher` for configuration.

3 filesmaint
bb93331Mar 16

This commit introduces a significant **refactoring** of the **memory service** to achieve consistent naming conventions across the ADK, preparing for the upcoming v1.0 release. Key changes include renaming core methods such as `AddSession` to `AddSessionToMemory` and `Search` to `SearchMemory` within the `agent`, `memory`, and `tool` modules, alongside updates to their return types and associated data structures like `SearchRequest`/`SearchResponse`. Furthermore, the `Entry` struct in the `memory` service now includes `ID` and `CustomMetadata` fields, enhancing the data stored for each memory entry. This constitutes a **breaking change** for any downstream consumers directly utilizing the `memory` service's public interface, necessitating updates to method calls and type definitions to align with the new API.

14 filesmaint
71dc025Mar 16

This commit primarily **refactors the `tool` package** by **removing a duplicated `ConfirmationProvider` type** from the `mcptoolset` module and consolidating its definition into the shared `tool` package. This **code consolidation** standardizes the `ConfirmationProvider` across the codebase, requiring all references within `mcptoolset` to now use `tool.ConfirmationProvider`. Additionally, the commit **improves predicate handling** within the `tool` package by introducing `AllowedToolsPredicate` and deprecating `StringPredicate`, alongside a minor structural cleanup in `exitlooptool`. This change is a **breaking change** for any external code directly referencing the now-removed `mcptoolset.ConfirmationProvider`, promoting better maintainability and consistency.

5 filesmaint
3f2690fMar 11

This commit **introduces a new Apigee LLM model** implementation, significantly expanding the system's AI integration capabilities. The core **new capability** is provided in `model/apigee/apigee.go`, offering content generation and configuration options such as `WithProxyURL` and `WithCustomHeaders`. Supporting this, the `LLMAgent`'s initialization logic in `agent/llmagent/llmagent.go` is **refactored** to correctly handle agent types, and a `TypeRemoteAgent` constant is added to `internal/agent/state.go`. Dedicated unit tests for the Apigee model are included, alongside minor unrelated changes like an improved error message in `session/inmemory.go` and a typo fix in `agent/context.go`.

7 filesmaint
da1d6a5Mar 6

This commit performs a **maintenance chore** by updating the **internal version constant** within the `internal/version/version.go` file. Specifically, the version string has been incremented from `0.3.0` to `0.6.0`. This change primarily affects the project's **internal versioning system**, ensuring that any component relying on this constant reflects the latest software release state.

1 filesmaint
4770642Mar 6

This commit **fixes** an issue in the **`mcptoolset` client** by updating its error handling logic for session-related problems. Specifically, it modifies the `shouldRefreshConnection` function in `tool/mcptoolset/client.go` to recognize the new `mcp.ErrSessionMissing` error type. This **maintenance update** replaces a deprecated string-based check for session not found, improving the reliability and clarity of connection refresh decisions. The change ensures the client correctly identifies when a session is missing, leading to more robust connection management within the `mcptoolset` subsystem.

3 fileswaste
1904d02Mar 5

This commit performs **test maintenance** by updating an expected model name within the **Gemini model integration tests**. Specifically, it corrects the expected model version string in `model/gemini/gemini_test.go` from `gemini-2.0-flash` to `gemini-2.5-flash`. This **test fix** ensures that the test suite accurately reflects the current **Gemini API model names**, preventing outdated expectations and potential false test failures. The change is limited to the test suite and has no direct impact on the production code's functionality.

1 filesmaint
5f4096dMar 4

This commit **updates and regenerates test fixtures** for the **`ParallelAgent` workflow agent** to incorporate recent changes, specifically the addition of an `identityProcessor`. It involves updating the `modelName` constant in `agent/workflowagents/parallelagent/agent_test.go` from `gemini-2.0-flash-exp` to `gemini-2.5-flash`. Additionally, the recorded HTTP requests and responses in `TestParallelAgentWithTools_agent1.httprr` and `TestParallelAgentWithTools_agent2.httprr` are refreshed to reflect the new model and updated system instructions. This **test maintenance** ensures the **integration tests** accurately validate the `ParallelAgent`'s behavior with the latest configurations.

3 filesmaint
9e5b6d5Feb 16

This commit performs a **cleanup and refactoring** by completely removing the unused `MutableSession` struct from the codebase, as it was a leftover from previous refactoring and served no functional purpose. This **maintenance** task primarily impacts the **session management** logic within the `runner` module, where the `Run` method now directly uses the stored session instead of an unnecessary wrapper. Additionally, various **test files** across `internal/llminternal`, `internal/memory`, and `tool/agenttool` are updated to remove references to the deprecated struct, ensuring consistency. The change streamlines internal session handling, improving code clarity and reducing unnecessary abstraction.

7 filesmaint
147b757Feb 13

This commit introduces a **fix** and **refactoring** to the **LLM internal processing logic**, specifically for **Google Gemini models**. It refactors the **LLM variant detection** within `internal/llminternal/googlellm` by introducing a new `GoogleLLM` interface and functions like `NeedsOutputSchemaProcessor` to accurately determine if a Gemini model, particularly **Gemini 2.5 and below API variants**, requires an output schema processor. This ensures that display names are correctly handled in file uploads and that the output schema processor is appropriately enabled for older Gemini versions, preventing potential issues with model output interpretation. The `model/gemini` module is updated to expose the necessary variant information, improving the robustness of model interaction.

6 fileswaste
48ca98aFeb 10

This commit **fixes** an issue within the **LLM internal event generation** module by ensuring that `long_running_function_ids` are correctly passed in the event generated for **request confirmation**. It assigns a unique ID to the request confirmation function call and streamlines content creation within the `generateRequestConfirmationEvent` function. As part of this **bug fix** and **refactoring**, the logic for generating function call IDs was extracted into a new utility function, `GenerateFunctionCallID`, in `internal/utils/utils.go`. New unit tests were also added to `internal/llminternal/functions_test.go` to cover various confirmation scenarios and validate the correct behavior of `generateRequestConfirmationEvent`.

3 filesmaint
9cff259Feb 5

This commit introduces a **new feature** by adding a dedicated **logging plugin** to the system. Implemented in `plugin/loggingplugin/logging_plugin.go`, this plugin provides detailed console output for various lifecycle events across **agent**, **model**, and **tool** interactions. It leverages methods like `onUserMessage`, `beforeRun`, `afterRun`, `beforeAgent`, `afterAgent`, `beforeModel`, `afterModel`, `beforeTool`, and `afterTool` to capture and log operational flow. This enhancement significantly improves observability and debugging capabilities for core components by providing granular insights into their execution.

1 filesgrow
d78c9deJan 27

This commit primarily **updates documentation** across the project, enhancing clarity for key configuration parameters. Specifically, it adds detailed explanations for `Instruction` and `InstructionProvider` within the **LLM agent configuration** and for `ProjectID`, `Location`, and `ReasoningEngine` in the **VertexAI service configuration**. Additionally, a minor **refactoring** was performed in `session/vertexai/vertexai_client.go` to rename an internal helper function `IsNotFoundError` to `isNotFoundError` for consistency. This work improves the overall maintainability and user understanding of critical system settings related to **LLM agent templating** and **VertexAI integration**.

3 filesmaint
76cc45bJan 23

This commit **refactors** the application's plugin management to consistently pass a complete `runner.PluginConfig` object instead of only a list of plugins. This **fixes** an underlying issue where partial plugin information was being propagated, ensuring that all necessary configuration details are available for proper plugin initialization. The change impacts the **launcher's console and A2A setup** (`cmd/launcher/*`) and the **ADK REST API's runtime controller** (`server/adkrest/controllers/runtime.go`), improving the robustness and consistency of how plugins are configured and managed throughout the system.

6 fileswaste
e9e576eJan 16

This commit introduces a **new capability** to the **`tool` package** by adding the `FilterToolset` helper function. This function, along with its supporting `filteredToolset` struct and methods, provides a dedicated and more robust mechanism for **filtering toolsets**. Concurrently, the `ToolFilter` field in the `Config` struct within `tool/mcptoolset/set.go` has been **deprecated**, advising users to migrate to the new `tool.FilterToolset` for improved toolset management. This **refactoring** streamlines how toolsets are filtered, offering a more explicit and maintainable approach for consumers of the `tool` package.

2 filesgrow
33d332fJan 16

This commit delivers a **bug fix** for the **web server launcher** within the `cmd/launcher/web` package. It modifies the `Run` function to explicitly return `nil` upon a successful server shutdown, rather than propagating a context error, which ensures that callers correctly interpret a clean termination. This change improves the robustness and clarity of the **server lifecycle management**. Additionally, a minor **maintenance** update was applied to the `.github/workflows/go.yml` CI configuration, enabling race detection and test shuffling for enhanced reliability.

2 filesmaint
fe09924Jan 9

This commit **fixes a bug** in the **`agenttool`** that prevented it from properly surfacing errors originating from sub-agents, particularly those using `error_code` or `error_message` fields instead of standard Go errors. Previously, the `Run` function in `tool/agenttool/agent_tool.go` would return an empty response, effectively hiding these critical errors when wrapping `remoteagent` or similar components. The change introduces new error handling logic within `agenttool` to correctly detect and propagate these specific error types. This ensures that **`agenttool` now accurately reports all sub-agent errors**, significantly improving observability and debugging for users. A minor **style fix** was also applied to an error message in `cmd/launcher/web/web.go`.

2 fileswaste
3cc66f3Dec 31

This commit introduces a **bug fix** to the **database session service** by correcting how event timestamps are truncated before being stored. Specifically, the `AppendEvent` function in `session/database/service.go` is updated to use `time.Truncate(time.Microsecond)` while preserving the original time's location (timezone information). This ensures that event timestamps are accurately stored with their correct context, matching the database's maximum precision without losing critical metadata. The change primarily **fixes test failures** related to time zone discrepancies, improving the reliability of event handling within the **session management subsystem**.

1 fileswaste
5c47306Dec 18

This commit **updates the project's contributor guidelines** by clarifying policies within the **Contributor License Agreement (CLA)** section of `CONTRIBUTING.md`. This **documentation update** specifically addresses the use of **coding assistance tools** and **AI-generated code**, providing essential guidance for future contributions. The change ensures that all contributors understand the project's stance on these modern development practices, streamlining the contribution process and maintaining legal clarity.

1 filesmaint

Work Patterns

Beta

Commit activity distribution by hour and day of week. Shows when this developer is most active.

Collaboration

Beta

Developers who frequently work on the same files and symbols. Higher score means stronger code collaboration.

NavigaraNavigara
OrganizationsDistributionCompareResearch