Context: As part of our platform engineering practices, we manage Harness templates using a versioning strategy. Currently, each template version is referenced explicitly by its version number. However, this approach requires application teams to manually update their YAML configurations every time a new version is released—even when the changes are backward-compatible or limited to internal script logic. Proposed Enhancement: Introduce support for static version tags—such as latest or stable—in Harness template versioning. These tags would act as pointers to specific numbered versions in the background, similar to how Docker image tags work. How It Would Work: Platform teams define and maintain static tags like latest or stable. These tags internally map to specific numbered versions (e.g., v1.3.2). Application teams reference templates using these static tags in their YAML files. When a new version is released, platform teams update the tag mapping—no changes required from application teams unless there are breaking changes. Benefits: Centralized version control: Platform teams can manage which version is considered latest or stable without requiring downstream teams to update their configurations. Reduced maintenance overhead: Application teams only need to update their YAML files when there are changes in input/output variables or breaking changes. Improved agility: Enables faster rollout of non-breaking updates (e.g., script optimizations, internal logic changes) without coordination delays. Alignment with industry practices: Mirrors the Docker image tagging model, which is widely understood and adopted. Use Case Example: A template deploy-service has versions v1.0.0, v1.1.0, and v1.2.0. The platform team tags v1.2.0 as stable. Application teams reference deploy-service:stable in their YAML. When v1.3.0 is released and validated, the platform team updates the stable tag to point to v1.3.0. Request Summary: Please consider adding support for static, user-defined tags (e.g., latest, stable) in Harness template versioning. This would significantly streamline template management and improve the developer experience across teams.