We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbreeding/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
isDesignSpecificationAbsent.ts•807 B
/**
* Design Specification Absence Checker for Completeness Evaluation
*
* This utility function provides a simple check to determine if design specifications
* are absent from a Jira issue. It examines the CategoryCheckResult for design specifications
* and returns a boolean indicating their absence. This check is particularly important for
* issues that may require design documentation, and helps the completeness evaluation
* system make appropriate scoring adjustments based on design documentation presence.
*/
import type { CategoryCheckResult } from '../completenessEvaluation.types'
/**
* Checks if design specifications are absent
*/
export function isDesignSpecificationAbsent(designSpecificationsResult: CategoryCheckResult): boolean {
return !designSpecificationsResult.present
}