evolution-pathway
Analyze and map code evolution pathways to achieve goals like modernizing architecture, improving performance, enhancing security, or reducing technical debt. Plan actionable steps by timeframe and context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeImplementationDetails | No | ||
| repositoryUrl | Yes | ||
| targetGoal | Yes | ||
| timeframe | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeImplementationDetails": {
"default": true,
"type": "boolean"
},
"repositoryUrl": {
"type": "string"
},
"targetGoal": {
"enum": [
"modernize-architecture",
"improve-performance",
"enhance-security",
"reduce-technical-debt"
],
"type": "string"
},
"timeframe": {
"enum": [
"immediate",
"sprint",
"quarter",
"year"
],
"type": "string"
}
},
"required": [
"repositoryUrl",
"targetGoal",
"timeframe"
],
"type": "object"
}