Skip to main content
Version: 1.x

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

readonly byPriority: object

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

Breakdown of entries by priority tier.

fixture

readonly fixture: number

implementation

readonly implementation: number

namespace

readonly namespace: number


categories

readonly categories: 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

readonly generatedAt: string

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

ISO 8601 timestamp when the statistics were generated.


totalMethods

readonly totalMethods: number

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

Total number of registered capability entries.


version

readonly version: string

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

Package version string.