@aiready/core 0.9.38 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/client.d.mts +14 -6
- package/dist/client.d.ts +14 -6
- package/dist/index.d.mts +221 -281
- package/dist/index.d.ts +221 -281
- package/dist/index.js +464 -542
- package/dist/index.mjs +455 -537
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/client.d.mts
CHANGED
|
@@ -125,14 +125,13 @@ interface ComprehensionDifficulty {
|
|
|
125
125
|
score: number;
|
|
126
126
|
/** Factors contributing to difficulty */
|
|
127
127
|
factors: {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}
|
|
128
|
+
budgetRatio: number;
|
|
129
|
+
depthRatio: number;
|
|
130
|
+
fragmentation: number;
|
|
131
|
+
};
|
|
132
132
|
/** Interpretation */
|
|
133
133
|
rating: 'trivial' | 'easy' | 'moderate' | 'difficult' | 'expert';
|
|
134
134
|
}
|
|
135
|
-
/**
|
|
136
135
|
/**
|
|
137
136
|
* Technical Value Chain
|
|
138
137
|
* Traces a technical issue through its impact on AI and developer outcomes.
|
|
@@ -155,6 +154,15 @@ interface TechnicalValueChain {
|
|
|
155
154
|
riskLevel: 'low' | 'moderate' | 'high' | 'critical';
|
|
156
155
|
};
|
|
157
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* v0.13+ simplified technical value chain
|
|
159
|
+
*/
|
|
160
|
+
interface TechnicalValueChainSummary {
|
|
161
|
+
score: number;
|
|
162
|
+
density: number;
|
|
163
|
+
complexity: number;
|
|
164
|
+
surface: number;
|
|
165
|
+
}
|
|
158
166
|
/**
|
|
159
167
|
* Extended report with business metrics
|
|
160
168
|
*/
|
|
@@ -675,4 +683,4 @@ declare function formatToolScore(output: ToolScoringOutput): string;
|
|
|
675
683
|
*/
|
|
676
684
|
declare function generateHTML(graph: GraphData): string;
|
|
677
685
|
|
|
678
|
-
export { type AIReadyConfig, type AcceptancePrediction, type AnalysisResult, type BusinessReport, CONTEXT_TIER_THRESHOLDS, type CommonASTNode, type ComprehensionDifficulty, type CostConfig, DEFAULT_TOOL_WEIGHTS, type ExportInfo, type GraphData, type GraphEdge, type GraphIssueSeverity, type GraphMetadata, type GraphNode, type ImportInfo, type Issue, type IssueType, LANGUAGE_EXTENSIONS, Language, type LanguageConfig, type LanguageParser, type Location, type Metrics, type ModelContextTier, type NamingConvention, ParseError, type ParseResult, type ParseStatistics, type ProductivityImpact, type Report, SIZE_ADJUSTED_THRESHOLDS, type ScanOptions, type ScoringConfig, type ScoringResult, type SourceLocation, type SourceRange, TOOL_NAME_MAP, type TechnicalValueChain, type TokenBudget, type ToolScoringOutput, calculateOverallScore, formatScore, formatToolScore, generateHTML, getProjectSizeTier, getRating, getRatingDisplay, getRatingWithContext, getRecommendedThreshold, getToolWeight, normalizeToolName, parseWeightString };
|
|
686
|
+
export { type AIReadyConfig, type AcceptancePrediction, type AnalysisResult, type BusinessReport, CONTEXT_TIER_THRESHOLDS, type CommonASTNode, type ComprehensionDifficulty, type CostConfig, DEFAULT_TOOL_WEIGHTS, type ExportInfo, type GraphData, type GraphEdge, type GraphIssueSeverity, type GraphMetadata, type GraphNode, type ImportInfo, type Issue, type IssueType, LANGUAGE_EXTENSIONS, Language, type LanguageConfig, type LanguageParser, type Location, type Metrics, type ModelContextTier, type NamingConvention, ParseError, type ParseResult, type ParseStatistics, type ProductivityImpact, type Report, SIZE_ADJUSTED_THRESHOLDS, type ScanOptions, type ScoringConfig, type ScoringResult, type SourceLocation, type SourceRange, TOOL_NAME_MAP, type TechnicalValueChain, type TechnicalValueChainSummary, type TokenBudget, type ToolScoringOutput, calculateOverallScore, formatScore, formatToolScore, generateHTML, getProjectSizeTier, getRating, getRatingDisplay, getRatingWithContext, getRecommendedThreshold, getToolWeight, normalizeToolName, parseWeightString };
|
package/dist/client.d.ts
CHANGED
|
@@ -125,14 +125,13 @@ interface ComprehensionDifficulty {
|
|
|
125
125
|
score: number;
|
|
126
126
|
/** Factors contributing to difficulty */
|
|
127
127
|
factors: {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}
|
|
128
|
+
budgetRatio: number;
|
|
129
|
+
depthRatio: number;
|
|
130
|
+
fragmentation: number;
|
|
131
|
+
};
|
|
132
132
|
/** Interpretation */
|
|
133
133
|
rating: 'trivial' | 'easy' | 'moderate' | 'difficult' | 'expert';
|
|
134
134
|
}
|
|
135
|
-
/**
|
|
136
135
|
/**
|
|
137
136
|
* Technical Value Chain
|
|
138
137
|
* Traces a technical issue through its impact on AI and developer outcomes.
|
|
@@ -155,6 +154,15 @@ interface TechnicalValueChain {
|
|
|
155
154
|
riskLevel: 'low' | 'moderate' | 'high' | 'critical';
|
|
156
155
|
};
|
|
157
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* v0.13+ simplified technical value chain
|
|
159
|
+
*/
|
|
160
|
+
interface TechnicalValueChainSummary {
|
|
161
|
+
score: number;
|
|
162
|
+
density: number;
|
|
163
|
+
complexity: number;
|
|
164
|
+
surface: number;
|
|
165
|
+
}
|
|
158
166
|
/**
|
|
159
167
|
* Extended report with business metrics
|
|
160
168
|
*/
|
|
@@ -675,4 +683,4 @@ declare function formatToolScore(output: ToolScoringOutput): string;
|
|
|
675
683
|
*/
|
|
676
684
|
declare function generateHTML(graph: GraphData): string;
|
|
677
685
|
|
|
678
|
-
export { type AIReadyConfig, type AcceptancePrediction, type AnalysisResult, type BusinessReport, CONTEXT_TIER_THRESHOLDS, type CommonASTNode, type ComprehensionDifficulty, type CostConfig, DEFAULT_TOOL_WEIGHTS, type ExportInfo, type GraphData, type GraphEdge, type GraphIssueSeverity, type GraphMetadata, type GraphNode, type ImportInfo, type Issue, type IssueType, LANGUAGE_EXTENSIONS, Language, type LanguageConfig, type LanguageParser, type Location, type Metrics, type ModelContextTier, type NamingConvention, ParseError, type ParseResult, type ParseStatistics, type ProductivityImpact, type Report, SIZE_ADJUSTED_THRESHOLDS, type ScanOptions, type ScoringConfig, type ScoringResult, type SourceLocation, type SourceRange, TOOL_NAME_MAP, type TechnicalValueChain, type TokenBudget, type ToolScoringOutput, calculateOverallScore, formatScore, formatToolScore, generateHTML, getProjectSizeTier, getRating, getRatingDisplay, getRatingWithContext, getRecommendedThreshold, getToolWeight, normalizeToolName, parseWeightString };
|
|
686
|
+
export { type AIReadyConfig, type AcceptancePrediction, type AnalysisResult, type BusinessReport, CONTEXT_TIER_THRESHOLDS, type CommonASTNode, type ComprehensionDifficulty, type CostConfig, DEFAULT_TOOL_WEIGHTS, type ExportInfo, type GraphData, type GraphEdge, type GraphIssueSeverity, type GraphMetadata, type GraphNode, type ImportInfo, type Issue, type IssueType, LANGUAGE_EXTENSIONS, Language, type LanguageConfig, type LanguageParser, type Location, type Metrics, type ModelContextTier, type NamingConvention, ParseError, type ParseResult, type ParseStatistics, type ProductivityImpact, type Report, SIZE_ADJUSTED_THRESHOLDS, type ScanOptions, type ScoringConfig, type ScoringResult, type SourceLocation, type SourceRange, TOOL_NAME_MAP, type TechnicalValueChain, type TechnicalValueChainSummary, type TokenBudget, type ToolScoringOutput, calculateOverallScore, formatScore, formatToolScore, generateHTML, getProjectSizeTier, getRating, getRatingDisplay, getRatingWithContext, getRecommendedThreshold, getToolWeight, normalizeToolName, parseWeightString };
|