socio-technical-analysis
Analyze repository collaboration patterns, contributor dynamics, and team interactions over time. Generate insights in JSON, Mermaid, or DOT formats to optimize development workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeContributorPatterns | No | ||
includeTeamDynamics | No | ||
repositoryUrl | Yes | ||
timeRange | No | ||
visualizationFormat | No | json |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeContributorPatterns": {
"default": true,
"type": "boolean"
},
"includeTeamDynamics": {
"default": true,
"type": "boolean"
},
"repositoryUrl": {
"type": "string"
},
"timeRange": {
"additionalProperties": false,
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
}
},
"type": "object"
},
"visualizationFormat": {
"default": "json",
"enum": [
"json",
"mermaid",
"dot"
],
"type": "string"
}
},
"required": [
"repositoryUrl"
],
"type": "object"
}