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

@adobe/data-ai

v0.10.19

Published

Cross-agent architecture skills for @adobe/data — installable as a Claude Code plugin or copied into any Agent-Skills-compatible agent (Cursor, Codex).

Downloads

35,406

Readme

@adobe/data-ai

AI architecture skills + rules for building applications with @adobe/data — a layered, spec-first feature structure (data → services → ui) kept honest by conformance tests. Versioned in lockstep with the library: @adobe/[email protected] targets @adobe/[email protected].

It installs two things:

  • skillsbuild-* commands that scaffold features and applications.
  • rules — the path-scoped conventions those skills follow while building.

The rules are the part that evolves often, so install pins the package and re-copies them automatically on every install: bump the version and they refresh — no manual step, no committed diff, no hand-editing.

Quick start

From your project folder root:

1. Install — one command:

npx @adobe/data-ai@latest install

(Claude Code only: also add the skills plugin once — see Claude Code. Cursor/Codex need nothing extra; install copies their skills.)

2. Restart your AI agent so it loads the newly installed skills and rules.

3. Create an application — ask your agent:

/build-application <a description of the app you want>

That's the whole flow. Everything below explains what install does and the other build skills available.

What install does

install does two things: it copies the bundle now (rules → .claude/rules/adobe-data-ai/, and for Cursor/Codex skills → .agents/skills/adobe-data-ai/), and it wires the repo so future installs self-update, editing your package.json and .gitignore to:

  1. pin @adobe/data-ai in devDependencies at the exact version it just resolved (never a range, so a later install can't silently pull an unreviewed release);
  2. add data-ai install to your own postinstall script (chaining if one exists) — it must be your script: pnpm does not run a dependency's lifecycle scripts, so a postinstall shipped inside the package would silently not fire;
  3. gitignore the managed bundle folders.

The copied files are regenerated artifacts — never committed, never edited in place. The wiring is idempotent, so re-running is harmless; with --global or in a directory with no package.json, install just copies (no wiring).

After that first run, sync your lockfile with a normal install (pnpm install) so the pinned dev-dependency is recorded; from then on every install refreshes the bundle via the postinstall.

Why @latest for the first command but a pinned version afterward? The one command you type is a one-time, human-initiated bootstrap, so @latest is fine (the same posture as npm create …@latest). The part that repeats — every teammate's and CI's install — runs from the exact version install pinned into your devDependencies, never a moving tag, so no unreviewed release ever auto-executes. Pinning happens where it matters, automatically.

Update: bump the @adobe/data-ai version in package.json and install again. That's it.

Claude Code — add the skills plugin (one time)

Claude Code loads skills from a marketplace plugin, not from .claude/skills/, so its skills are a separate one-time install (the install step above already handles the rules for Claude Code):

claude plugin marketplace add adobe/data --scope project
claude plugin install adobe-data-ai@adobe-data-skills --scope project

(Interactive sessions can use /plugin marketplace add adobe/data then /plugin install adobe-data-ai@adobe-data-skills.) Update the skills: claude plugin update adobe-data-ai. Cursor/Codex need no plugin — install copies their skills too.

Just the files, no managed dependency

If you don't want the auto-update wiring — a throwaway scaffold, a non-Node repo, or you'd rather commit the bundle and update it on your own schedule — run install where it can't wire (no package.json, or pass --global), or simply delete the postinstall/dev-dependency lines it added. Re-running install is always a clean wipe-and-recopy; you then update by re-running it yourself.

Build skills

Step 3 above uses build-application; the skills are available by name:

  • build-application — build a whole app: a base feature that hosts lazily-loaded peer features.
  • build-feature — build one feature end to end. Pipes the per-layer skills (data → core-database → transactions → … → ui), then conformance-tests the result against its pure data/ spec.

Both compose finer-grained skills that are installed alongside and discoverable by name when you want a single phase or a specialized flow: build-data, build-core-database, build-indexes, build-transactions, build-computed, build-services, build-service-database, build-actions, build-systems, build-ui, build-app-entry; plus build-game, meta-build (phase-by-phase in subagents), review (audit output against the rules), and structure (reason about layout).

One-liner: install + build an app (headless)

Paste this into an agent already running in your project root, replacing the quoted text with your own app description. It installs the bundle, then runs build-application on your prompt:

Set up @adobe/data-ai in the current directory: run
`npx @adobe/data-ai@latest install` (this copies the bundle and pins the exact
version so rules auto-update on every install). On Claude Code also add the
skills plugin per the package README. Then use its /build-application skill to
build <prompt here>