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

@askable-ui/core

v0.6.1

Published

Framework-agnostic context tracker for LLM-aware UIs

Readme

@askable-ui/core

Framework-agnostic context tracker for LLM-aware UIs. Annotate DOM elements with data-askable attributes to expose structured context to language models, enabling AI assistants to understand what users are focused on and interacting with.

Installation

npm install @askable-ui/core

Quick Start

<!-- Annotate elements with data-askable -->
<button data-askable='{"action":"submit","form":"checkout"}'>
  Complete Purchase
</button>

<input data-askable='{"field":"email","required":true}' data-askable-scope="form-helper" placeholder="Email address" />
import { createAskableContext } from '@askable-ui/core';

const ctx = createAskableContext();

// Start observing the document
ctx.observe(document);

// Listen for focus changes
ctx.on('focus', (focus) => {
  console.log('User focused on:', focus.meta);
  console.log('Element text:', focus.text);
});

// Get the current focus as an LLM prompt string
const prompt = ctx.toPromptContext();
const formPrompt = ctx.toPromptContext({ scope: 'form-helper' });
// e.g. "User is focused on: — action: submit, form: checkout — value "Complete Purchase""

// Clean up when done
ctx.destroy();

API Reference

createAskableContext(): AskableContext

Factory function that creates and returns a new AskableContext instance. This is the recommended way to instantiate the context.

import { createAskableContext } from '@askable-ui/core';
const ctx = createAskableContext();

AskableContext

The main interface for interacting with Askable.

observe(root: HTMLElement | Document, options?: { events?: AskableEvent[]; hoverDebounce?: number; hoverThrottle?: number }): void

Start observing a DOM subtree for [data-askable] elements. By default listens for click, focus, and hover events. Pass events to restrict which interactions trigger a context update.

// Observe the entire document (all trigger events)
ctx.observe(document);

// Only update context on click
ctx.observe(document, { events: ['click'] });

// Only update context on focus (keyboard navigation)
ctx.observe(document, { events: ['focus'] });

// Or observe a specific subtree
const panel = document.getElementById('main-panel');
ctx.observe(panel, { events: ['click', 'hover'] });

// Debounce hover updates until the pointer settles
ctx.observe(document, { events: ['hover'], hoverDebounce: 75 });

// Or throttle hover updates for dense UIs
ctx.observe(document, { events: ['hover'], hoverThrottle: 100 });

unobserve(): void

Stop observing and detach all event listeners added by observe(). Does not destroy the context — you can call observe() again afterward.

ctx.unobserve();

getFocus(): AskableFocus | null

Returns the current focus state, or null if no element has been interacted with yet.

const focus = ctx.getFocus();
if (focus) {
  console.log(focus.meta);      // Parsed data-askable value
  console.log(focus.text);      // Element text content
  console.log(focus.element);   // The HTMLElement
  console.log(focus.timestamp); // Unix ms when focus was set
}

on<K>(event: K, handler: AskableEventHandler<K>): void

Subscribe to an event. Currently the only event is 'focus', which fires whenever a [data-askable] element receives focus, is clicked, or is hovered.

ctx.on('focus', (focus) => {
  sendToLLM(ctx.toPromptContext());
});

off<K>(event: K, handler: AskableEventHandler<K>): void

Unsubscribe a previously registered handler.

const handler = (focus) => console.log(focus);
ctx.on('focus', handler);
// later...
ctx.off('focus', handler);

toPromptContext(options?: AskablePromptContextOptions): string

Serializes the current focus state into a prompt-ready string. Returns 'No UI element is currently focused.' (or 'null' in JSON format) when nothing is focused.

// With no focus:
ctx.toPromptContext();
// → "No UI element is currently focused."

// Natural language (default):
// <button data-askable='{"action":"delete","target":"account"}'>Delete Account</button>
ctx.toPromptContext();
// → "User is focused on: — action: delete, target: account — value "Delete Account""

// JSON format:
ctx.toPromptContext({ format: 'json' });
// → '{"meta":{"action":"delete","target":"account"},"text":"Delete Account","timestamp":1712345678}'

// Custom prefix and label:
ctx.toPromptContext({ prefix: 'Active element:', textLabel: 'label' });
// → "Active element: — action: delete, target: account — label "Delete Account""

// Omit element text:
ctx.toPromptContext({ includeText: false });

// Truncate text to 100 chars:
ctx.toPromptContext({ maxTextLength: 100 });

// Exclude specific meta keys:
ctx.toPromptContext({ excludeKeys: ['_internal', 'debug'] });

// Prioritize key order:
ctx.toPromptContext({ keyOrder: ['action', 'target'] });

// Token budget — truncates output to ~50 tokens (4 chars/token estimate):
ctx.toPromptContext({ maxTokens: 50 });
// If output exceeds ~200 chars: "User is focused on: — ... [truncated]"
AskablePromptContextOptions

| Option | Type | Default | Description | |---|---|---|---| | format | 'natural' \| 'json' | 'natural' | Output format | | includeText | boolean | true | Include element text content | | maxTextLength | number | — | Truncate text to this many characters | | excludeKeys | string[] | — | Omit these keys from object meta | | keyOrder | string[] | — | Promote these keys to the front | | prefix | string | 'User is focused on:' | Prefix in natural format | | textLabel | string | 'value' | Label for text field in natural format | | maxTokens | number | — | Approximate token budget. Uses a 4 chars/token estimate. Truncates output and appends [truncated] if exceeded. |

toHistoryContext(limit?: number, options?: AskablePromptContextOptions): string

Serializes the focus history (newest first) into a prompt-ready string with numbered entries. Accepts the same AskablePromptContextOptions as toPromptContext(), including maxTokens. Returns 'No interaction history.' when no interactions have occurred.

// After a few interactions:
ctx.toHistoryContext();
// → "[1] User is focused on: — action: delete, target: account — value "Delete Account"
//    [2] User is focused on: — page: settings — value "Account Settings"
//    [3] User is focused on: — page: dashboard — value "Dashboard""

// Last 3 interactions only:
ctx.toHistoryContext(3);

// With serialization options:
ctx.toHistoryContext(5, { includeText: false, excludeKeys: ['_id'] });

// With a token budget:
ctx.toHistoryContext(10, { maxTokens: 200 });

serializeFocus(options?: AskablePromptContextOptions): AskableSerializedFocus | null

Returns the current focus as a structured AskableSerializedFocus object, or null if nothing is focused. Useful when you want to process or store the data before formatting it as a string.

const data = ctx.serializeFocus();
// → { meta: { action: 'delete', target: 'account' }, text: 'Delete Account', timestamp: 1712345678 }

// With options (same as toPromptContext):
ctx.serializeFocus({ includeText: false, excludeKeys: ['debug'] });

// Use the structured data:
if (data) {
  await db.insertFocusEvent(data.meta, data.timestamp);
}

getHistory(limit?: number): AskableFocus[]

Returns the focus history, newest first. Optional limit caps the number of results. History is capped at 50 entries.

const history = ctx.getHistory();     // all entries, newest first
const recent = ctx.getHistory(5);     // last 5 interactions

clear(): void

Resets the current focus to null and emits a 'clear' event.

ctx.on('clear', () => console.log('Focus cleared'));
ctx.clear();
// → focus is null, 'clear' event fires

subscribe(callback, options?): () => void

Subscribe to serialized context updates for streaming LLM integrations. The callback receives the latest ctx.toContext() string plus the current AskableFocus | null. Returns an unsubscribe function.

const unsubscribe = ctx.subscribe((context, focus) => {
  streamTransport.send({
    type: 'ui-context',
    context,
    focusedMeta: focus?.meta ?? null,
  });
}, {
  history: 3,
  debounce: 75,
});

// later
unsubscribe();

Use debounce to coalesce rapid focus changes while a response is streaming.

select(element: HTMLElement): void

Programmatically set focus to any element, as if the user had interacted with it. Useful for "Ask AI" buttons that explicitly set context before opening a chat.

const el = document.querySelector('[data-askable]');
ctx.select(el);

// Common pattern: "Ask AI" button sets context, then opens chat
document.querySelectorAll('.ask-btn').forEach((btn) => {
  btn.addEventListener('click', () => {
    const target = btn.closest('[data-askable]');
    ctx.select(target);
    openChat();
  });
});

destroy(): void

Tears down the entire context: stops observing, removes all event listeners, clears all event handlers, and resets focus state. Call this when the context is no longer needed (e.g., component unmount).

ctx.destroy();

AskableFocus

The shape of focus state objects passed to event handlers and returned by getFocus().

interface AskableFocus {
  meta: Record<string, unknown> | string; // Parsed data-askable value
  text: string;                            // Element text content
  element: HTMLElement;                    // The DOM element
  timestamp: number;                       // Unix ms
}

The meta field is parsed as JSON if possible; otherwise it is a raw string. This means you can use either form in your markup:

<!-- JSON object (parsed to Record<string, unknown>) -->
<button data-askable='{"action":"save","section":"profile"}'>Save</button>

<!-- Plain string (kept as string) -->
<nav data-askable="main navigation">...</nav>

Integration Examples

React

import { useEffect, useRef, useCallback } from 'react';
import { createAskableContext } from '@askable-ui/core';
import type { AskableFocus } from '@askable-ui/core';

function useAskable(onFocus?: (focus: AskableFocus) => void) {
  const ctxRef = useRef(createAskableContext());

  useEffect(() => {
    const ctx = ctxRef.current;
    ctx.observe(document);

    if (onFocus) {
      ctx.on('focus', onFocus);
    }

    return () => ctx.destroy();
  }, [onFocus]);

  return ctxRef.current;
}

// Usage in a component
export function App() {
  const handleFocus = useCallback((focus: AskableFocus) => {
    console.log('User is looking at:', focus.meta);
  }, []);

  const ctx = useAskable(handleFocus);

  async function askAssistant(question: string) {
    const context = ctx.toPromptContext();
    const response = await fetch('/api/chat', {
      method: 'POST',
      body: JSON.stringify({
        messages: [
          { role: 'system', content: `UI context: ${context}` },
          { role: 'user', content: question },
        ],
      }),
    });
    return response.json();
  }

  return (
    <div>
      <button data-askable='{"action":"buy","item":"pro-plan"}'>
        Upgrade to Pro
      </button>
    </div>
  );
}

Vue

<script setup lang="ts">
import { onMounted, onUnmounted, ref } from 'vue';
import { createAskableContext } from '@askable-ui/core';
import type { AskableFocus } from '@askable-ui/core';

const ctx = createAskableContext();
const currentFocus = ref<AskableFocus | null>(null);

onMounted(() => {
  ctx.observe(document);
  ctx.on('focus', (focus) => {
    currentFocus.value = focus;
  });
});

onUnmounted(() => {
  ctx.destroy();
});

function getPromptContext() {
  return ctx.toPromptContext();
}
</script>

<template>
  <div>
    <input
      data-askable='{"field":"search","scope":"products"}'
      placeholder="Search products..."
    />
    <p v-if="currentFocus">
      Focused: {{ JSON.stringify(currentFocus.meta) }}
    </p>
  </div>
</template>

Svelte

<script lang="ts">
  import { onMount, onDestroy } from 'svelte';
  import { createAskableContext } from '@askable-ui/core';
  import type { AskableFocus } from '@askable-ui/core';

  const ctx = createAskableContext();
  let currentFocus: AskableFocus | null = null;

  onMount(() => {
    ctx.observe(document);
    ctx.on('focus', (focus) => {
      currentFocus = focus;
    });
  });

  onDestroy(() => {
    ctx.destroy();
  });
</script>

<section data-askable='{"page":"dashboard","view":"analytics"}'>
  <h1>Analytics Dashboard</h1>
  <!-- content -->
</section>

{#if currentFocus}
  <p>Context: {ctx.toPromptContext()}</p>
{/if}

Plain HTML

<!DOCTYPE html>
<html>
<body>
  <nav data-askable="main navigation">
    <a href="/pricing" data-askable='{"page":"pricing"}'>Pricing</a>
    <a href="/docs" data-askable='{"page":"docs"}'>Docs</a>
  </nav>

  <main>
    <form data-askable='{"form":"signup","step":1}'>
      <input
        data-askable='{"field":"email","required":true}'
        type="email"
        placeholder="Email"
      />
      <button
        type="submit"
        data-askable='{"action":"submit","form":"signup"}'
      >
        Create Account
      </button>
    </form>
  </main>

  <script type="module">
    import { createAskableContext } from 'https://esm.sh/@askable-ui/core';

    const ctx = createAskableContext();
    ctx.observe(document);

    ctx.on('focus', () => {
      document.title = `Askable: ${ctx.toPromptContext()}`;
    });
  </script>
</body>
</html>

LLM Integration

The primary use case is feeding UI context into LLM prompts so the AI assistant understands what the user is looking at.

import { createAskableContext } from '@askable-ui/core';

const ctx = createAskableContext();
ctx.observe(document);

async function askWithContext(userMessage: string) {
  const uiContext = ctx.toPromptContext();

  const response = await fetch('https://api.openai.com/v1/chat/completions', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      Authorization: `Bearer ${process.env.OPENAI_API_KEY}`,
    },
    body: JSON.stringify({
      model: 'gpt-4o',
      messages: [
        {
          role: 'system',
          content: [
            'You are a helpful UI assistant.',
            'Current UI context:',
            uiContext,
          ].join('\n'),
        },
        {
          role: 'user',
          content: userMessage,
        },
      ],
    }),
  });

  return response.json();
}

// Example output when user clicks a delete button:
// uiContext = "User is focused on: — action: delete, target: account — value "Delete Account""
// The LLM can then provide context-aware help about account deletion.

TypeScript Types Reference

import type {
  AskableContext,             // Main context interface
  AskableFocus,               // Focus state: { meta, text, element, timestamp }
  AskableSerializedFocus,     // Serialized focus: { meta, text?, timestamp }
  AskablePromptContextOptions, // Options for toPromptContext / toHistoryContext
  AskablePromptFormat,        // 'natural' | 'json'
  AskableEvent,               // Trigger type: 'click' | 'hover' | 'focus'
  AskableObserveOptions,      // Options for observe(): { events?, hoverDebounce?, hoverThrottle? }
  AskableEventMap,            // Map of event names to payload types
  AskableEventName,           // 'focus' | 'clear'
  AskableEventHandler,        // Generic handler type
} from '@askable-ui/core';

AskableSerializedFocus

interface AskableSerializedFocus {
  meta: Record<string, unknown> | string;
  text?: string;    // omitted when includeText: false or text is empty
  timestamp: number;
}

License

MIT