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/react-native

v0.6.1

Published

React Native bindings for askable — LLM-aware UI context

Readme

@askable-ui/react-native

React Native bindings for askable.

Current slice

  • useAskable() hook backed by @askable-ui/core
  • useAskableScreen() hook for screen/navigation-aware context updates
  • useAskableVisibility() hook for FlatList / SectionList visibility-driven context updates
  • useAskableScrollView() hook for raw ScrollView measurement-driven visibility tracking
  • <Askable ctx={...}> wrapper that turns onPress / onLongPress into context updates
  • Runnable Expo example in examples/react-native-expo

Example

import { Pressable, Text } from 'react-native';
import { Askable, useAskable } from '@askable-ui/react-native';

export function RevenueCard() {
  const { ctx, promptContext } = useAskable();

  return (
    <Askable ctx={ctx} meta={{ widget: 'revenue' }} scope="analytics" text="Revenue card">
      <Pressable>
        <Text>Revenue</Text>
      </Pressable>
    </Askable>
  );
}

scope is optional and lets you later read filtered context with ctx.toPromptContext({ scope: 'analytics' }) or ctx.toHistoryContext(5, { scope: 'analytics' }).

Screen awareness

Use useAskableScreen() to push the active screen into context. It is designed to pair cleanly with React Navigation's useIsFocused() without forcing a hard dependency on React Navigation inside this package.

import { useIsFocused } from '@react-navigation/native';
import { useAskable, useAskableScreen } from '@askable-ui/react-native';

export function RevenueScreen() {
  const isFocused = useIsFocused();
  const { ctx, promptContext } = useAskable();

  useAskableScreen({
    ctx,
    active: isFocused,
    meta: { screen: 'RevenueScreen' },
    text: 'Revenue screen',
  });

  return null;
}

List visibility awareness

Use useAskableVisibility() with FlatList / SectionList viewability callbacks to mirror the top visible item into askable context while the user scrolls.

import { FlatList, Text, View } from 'react-native';
import { useAskable, useAskableVisibility } from '@askable-ui/react-native';

const products = [
  { id: 'p-1', title: 'Revenue Dashboard' },
  { id: 'p-2', title: 'Pipeline Summary' },
];

export function ProductList() {
  const { ctx } = useAskable();
  const { onViewableItemsChanged } = useAskableVisibility({
    ctx,
    getMeta: (item) => ({ productId: item.id }),
    getText: (item) => item.title,
  });

  return (
    <FlatList
      data={products}
      keyExtractor={(item) => item.id}
      onViewableItemsChanged={onViewableItemsChanged}
      renderItem={({ item }) => (
        <View>
          <Text>{item.title}</Text>
        </View>
      )}
    />
  );
}

Raw ScrollView tracking

For dashboards or custom feeds built with ScrollView, use useAskableScrollView() to measure child layouts and mirror the top visible card into askable context.

import { Pressable, ScrollView, Text } from 'react-native';
import { Askable, useAskable, useAskableScrollView } from '@askable-ui/react-native';

const cards = [
  { id: 'revenue', title: 'Revenue', meta: { widget: 'revenue' } },
  { id: 'pipeline', title: 'Pipeline', meta: { widget: 'pipeline' } },
];

export function Dashboard() {
  const { ctx } = useAskable();
  const { onScroll, createOnItemLayout } = useAskableScrollView({
    ctx,
    getMeta: (card) => ({ ...card.meta, visible: true }),
    getText: (card) => `${card.title} is leading the dashboard scroll view`,
  });

  return (
    <ScrollView onScroll={onScroll} scrollEventThrottle={16}>
      {cards.map((card) => (
        <Askable key={card.id} ctx={ctx} meta={card.meta} text={card.title}>
          <Pressable onLayout={createOnItemLayout(card.id, card)}>
            <Text>{card.title}</Text>
          </Pressable>
        </Askable>
      ))}
    </ScrollView>
  );
}