Skip to main content

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​

readonly byPriority: object

Defined in: src/ai/types.ts:235

Breakdown of entries by priority tier.

fixture​

readonly fixture: number

implementation​

readonly implementation: number

namespace​

readonly namespace: number


categories​

readonly categories: readonly string[]

Defined in: src/ai/types.ts:229

Deduplicated list of category names across all entries.


generatedAt​

readonly generatedAt: string

Defined in: src/ai/types.ts:231

ISO 8601 timestamp when the statistics were generated.


totalMethods​

readonly totalMethods: number

Defined in: src/ai/types.ts:227

Total number of registered capability entries.


version​

readonly version: string

Defined in: src/ai/types.ts:233

Package version string.