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

@kuttl/react

v0.1.1

Published

Kuttl React adapter - AI-powered non-destructive UI patching for React apps

Downloads

292

Readme

@kuttl/react

React adapter for Kuttl — AI-powered, non-destructive UI patching. Let your users describe UI changes in plain English ("make the title larger", "remove the sidebar"); Kuttl turns them into structured patches applied to the live DOM without touching your component code. Changes can be previewed, persisted, exported, and undone.

The AI runs through a hosted backend proxy that owns the LLM credentials, so no API keys are ever exposed in the browser.

Install

npm install @kuttl/react

Requires React 18 or 19 as a peer dependency.

Usage

Wrap your app in KuttlProvider and render KuttlPanel anywhere inside it. Mark the elements you want to be editable with a data-uid attribute.

import { KuttlProvider, KuttlPanel } from '@kuttl/react'

export default function App() {
  return (
    <KuttlProvider persistKey="my-app">
      <div data-uid="page">{/* your app */}</div>
      <KuttlPanel />
    </KuttlProvider>
  )
}

Provider props

<KuttlProvider
  persistKey="my-app"                     // localStorage key for patch persistence
  uidAttribute="data-uid"                 // attribute used as element identity
  descriptionAttribute="data-description" // attribute used as an element label for AI context
  onSelect={(el) => console.log(el)}      // callback when an element is selected
  debug                                   // log AI prompt details to console
>

Context API (useKuttlContext)

| Method | Description | |---|---| | patch(patches) | Apply one or more patches | | unpatch(id) | Remove a patch by id | | undo() | Remove the most recently applied patch | | reset() | Remove all patches and clear selection | | exportPatches() | Serialize current patches to a JSON string | | importPatches(json) | Hydrate the store from exported JSON | | prompt(text) | Send a natural-language instruction to the AI | | preview(patches) | Dry-run: compute the result without committing | | generateSemanticPatches(op, uid) | Generate compound, layout-safe patches for an operation | | selectedElement | Currently selected element (uid, tag, description, …) | | isSelectActive | Whether click-to-select mode is active | | toggleSelect() | Enter/exit click-to-select mode | | clearSelection() | Deselect the current element |

Hooks

// Read overrides for a specific element (opt-in structural patching)
const { style, hidden, reorder } = useKuttl("nav-actions");

// Send AI prompts and track loading/error state
const { sendPrompt, status, isLoading } = useKuttlAI();

useKuttl(uid).reorder(children) re-orders a React children array according to any active reorder patch on that uid — useful in components that manage their own children dynamically.

Supported operations

restyle, hide, show, reorder, addClass, removeClass, setText, and move. Style-based operations survive React re-renders; DOM operations are re-applied automatically when the tree changes.

License

MIT © Samuel Isirima