Interface: CapabilityStats
Defined in: src/ai/types.ts:211
Statistical summary of the capability registry.
Intent
Provide a quick overview of registered capabilities for dashboards and AI agents.
Example
const stats = registry.getStatistics();
logger.info(`Total: ${stats.totalMethods}, Categories: ${stats.categories.join(', ')}`);
Properties
byPriority
readonlybyPriority:object
Defined in: src/ai/types.ts:221
Breakdown of entries by priority tier.
fixture
readonlyfixture:number
implementation
readonlyimplementation:number
namespace
readonlynamespace:number
categories
readonlycategories: readonly ("ui5"|"auth"|"navigate"|"table"|"dialog"|"date"|"odata"|"fe"|"intent"|"flp"|"shell"|"footer"|"ai"|"data"|"assert")[]
Defined in: src/ai/types.ts:215
Deduplicated list of category names across all entries.
generatedAt
readonlygeneratedAt:string
Defined in: src/ai/types.ts:217
ISO 8601 timestamp when the statistics were generated.
totalMethods
readonlytotalMethods:number
Defined in: src/ai/types.ts:213
Total number of registered capability entries.
version
readonlyversion:string
Defined in: src/ai/types.ts:219
Package version string.