npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@domglyph/ai-contract

v2.1.0

Published

> **DOMglyph is now DOMglyph.** This package (`@domglyph/ai-contract`) is no longer maintained. All future updates are published under [`@domglyph/ai-contract`](https://www.npmjs.com/package/@domglyph/ai-contract). Please migrate to the new package.

Readme

DOMglyph is now DOMglyph. This package (@domglyph/ai-contract) is no longer maintained. All future updates are published under @domglyph/ai-contract. Please migrate to the new package.


@domglyph/ai-contract

npm version License: MIT

The machine-readable interface specification for DOMglyph (now DOMglyph).


Overview

@domglyph/ai-contract is the foundation of the DOMglyph system. It defines:

  • The complete data-ai-* attribute specification as string constants
  • TypeScript types for every role, state, event, and attribute map
  • Runtime validation utilities (validateAIAttributes, extractAIAttributes)
  • Event type definitions for the DOMglyph event log

All other DOMglyph packages depend on this package as their source of truth. It has no runtime dependencies and is safe to use in any environment — browser, Node.js, or test runner.


Installation

npm install @domglyph/ai-contract

The Attributes

| Attribute | Description | |---|---| | data-ai-id | Stable unique identifier for the element. Used by agents to target a specific element across renders. | | data-ai-role | The semantic role of the element. One of the 9 defined roles (see below). | | data-ai-action | The verb-noun action name for action elements (e.g. save-profile, delete-order). | | data-ai-state | The current interactive state of the element. One of the 7 defined states (see below). | | data-ai-screen | The name of the screen or page this element belongs to. | | data-ai-section | The named section within a screen (e.g. billing, profile, header). | | data-ai-entity | The entity type this element represents or operates on (e.g. user, order, product). | | data-ai-entity-id | The specific instance ID of the entity (e.g. a user ID or order number). | | data-ai-field-type | The input type for field elements. One of: text, email, password, number, select, checkbox. | | data-ai-required | Whether a field is required. "true" or "false". | | data-ai-label | A human-readable label for the element, used when the visible text is insufficient or absent. |


Roles

The data-ai-role attribute identifies what kind of element this is:

| Role | Description | |---|---| | action | An element that triggers an action when activated (button, link, etc.) | | field | A data entry element (input, select, textarea) | | form | A container grouping related fields and a submission action | | table | A data grid or tabular list of entities | | modal | A dialog or overlay requiring user attention | | nav-item | A navigation element (menu item, tab, breadcrumb link) | | status | A read-only element communicating system or entity status | | screen | The root container of the current screen or page | | section | A named sub-region of a screen |


States

The data-ai-state attribute communicates the current interaction state:

| State | Description | |---|---| | idle | Element is ready and interactive | | loading | Element is waiting for an async operation to complete | | success | The most recent operation completed successfully | | error | The most recent operation failed, or the element has a validation error | | disabled | Element is present but not currently interactive | | expanded | Element is in an open/expanded state (e.g. dropdown, accordion) | | selected | Element is in an active/selected state (e.g. tab, list item) |


Events

DOMglyph components emit structured events that are captured in the runtime event log.

| Event | Description | Key Payload Fields | |---|---|---| | action_triggered | An action element was activated | actionId, timestamp | | action_completed | The action completed successfully | actionId, result: 'success', timestamp | | action_failed | The action failed | actionId, result: 'error', message, timestamp | | form_submitted | A form was submitted | formId, timestamp | | field_updated | A field value changed | fieldId, timestamp |

TypeScript event types:

type AIEventType =
  | 'action_triggered'
  | 'action_completed'
  | 'action_failed'
  | 'form_submitted'
  | 'field_updated';

interface RuntimeEventLogEntry {
  type: AIEventType;
  actionId?: string;
  formId?: string;
  fieldId?: string;
  result?: 'success' | 'error';
  message?: string;
  timestamp: number;
}

Usage

Attribute constants

Import attribute name constants to avoid magic strings:

import {
  DATA_AI_ROLE,
  DATA_AI_STATE,
  DATA_AI_ACTION,
  DATA_AI_ID,
  DATA_AI_ENTITY,
  DATA_AI_ENTITY_ID,
  DATA_AI_FIELD_TYPE,
  DATA_AI_REQUIRED,
  DATA_AI_SCREEN,
  DATA_AI_SECTION,
} from '@domglyph/ai-contract';

// Use in React components:
<button
  {...{ [DATA_AI_ROLE]: 'action', [DATA_AI_ID]: 'save', [DATA_AI_STATE]: 'idle' }}
>
  Save
</button>

Validation

Validate that a DOM element has a correct and complete AI contract:

import { validateAIAttributes } from '@domglyph/ai-contract';

const result = validateAIAttributes(element);
// {
//   valid: boolean,
//   errors: string[],
//   attributes: AIAttributeMap
// }

if (!result.valid) {
  console.error('AI contract violations:', result.errors);
}

Extracting attributes

Read all data-ai-* attributes from a DOM element as a typed object:

import { extractAIAttributes } from '@domglyph/ai-contract';

const attrs = extractAIAttributes(element);
// {
//   id: 'save-profile',
//   role: 'action',
//   action: 'save-profile',
//   state: 'idle',
//   screen: 'profile',
//   section: 'contact-info',
//   entity: null,
//   entityId: null,
//   fieldType: null,
//   required: null
// }

TypeScript types

Key types exported from this package:

type AIRole =
  | 'action'
  | 'field'
  | 'form'
  | 'table'
  | 'modal'
  | 'nav-item'
  | 'status'
  | 'screen'
  | 'section';

type AIState =
  | 'idle'
  | 'loading'
  | 'success'
  | 'error'
  | 'disabled'
  | 'expanded'
  | 'selected';

type AIEvent =
  | 'action_triggered'
  | 'action_completed'
  | 'action_failed'
  | 'form_submitted'
  | 'field_updated';

interface AIAttributeMap {
  readonly id: string | null;
  readonly role: AIRole | null;
  readonly action: string | null;
  readonly state: AIState | null;
  readonly screen: string | null;
  readonly section: string | null;
  readonly entity: string | null;
  readonly entityId: string | null;
  readonly fieldType: string | null;
  readonly required: boolean | null;
}

Part of DOMglyph

@domglyph/ai-contract is part of the DOMglyph design system.


☕ Support

If you find DOMglyph useful, you can support the project:

👉 https://buymeacoffee.com/nishchya

It helps keep the project alive and growing.