Interface: CapabilityStats
Defined in: src/ai/types.ts:225
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:235
Breakdown of entries by priority tier.
fixture​
readonlyfixture:number
implementation​
readonlyimplementation:number
namespace​
readonlynamespace:number
categories​
readonlycategories: readonlystring[]
Defined in: src/ai/types.ts:229
Deduplicated list of category names across all entries.
generatedAt​
readonlygeneratedAt:string
Defined in: src/ai/types.ts:231
ISO 8601 timestamp when the statistics were generated.
totalMethods​
readonlytotalMethods:number
Defined in: src/ai/types.ts:227
Total number of registered capability entries.
version​
readonlyversion:string
Defined in: src/ai/types.ts:233
Package version string.