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

xppai

v1.0.16

Published

LLM-runtime-agnostic X++ AX 2009 skill suite

Readme

XppAI

XppAI is an LLM-runtime-agnostic skill suite for X++ and Microsoft Dynamics AX 2009.

It packages a curated set of AX 2009 / X++ skills into an installable CLI, so you can bring structured, senior-style analysis to old-school ERP codebases without locking yourself into one specific AI runtime.

Because yes: AX 2009 code still exists, it still runs businesses, and sometimes it needs more than "just ask the AI".

XppAI helps LLM agents understand AX 2009 code with better context, safer assumptions, and more production-aware behavior.

Author

Created by Roberta Freitas Oliveira15+ years Microsoft ERP Specialist
LinkedIn: linkedin.com/in/rfreitas90

Why XppAI?

Modern AI tools are great at coding.

AX 2009 is not modern.

X++ has its own patterns, traps, conventions, transaction behaviors, localization blocks, posting flows, and "do not touch this casually" zones.

XppAI gives LLMs a better operating manual for this world.

What It Helps With

  • understanding unfamiliar X++ objects
  • analyzing profiler traces and stack traces
  • reviewing posting flows
  • spotting risky changes before they hurt production
  • proposing minimal, safe fixes
  • exporting skills for different AI runtimes
  • reading XPO files directly for analysis

Included Skills

| Skill | Purpose | |---|---| | xppai-papai | Main dynamic senior orchestrator for mixed or complex artifacts | | xppai-babysit | Main structured static orchestrator for predictable, labeled analysis | | xppai-init | Shared AX 2009 foundation and guardrails | | xppai-explain | Explains unfamiliar methods, classes, forms, and tables | | xppai-stack | Analyzes profiler traces and stack traces | | xppai-codefix | Proposes minimal, safe, production-ready fixes | | xppai-architect | Reviews code for architectural weaknesses and design gaps | | xppai-posting | Analyzes FormLetter posting flows and transaction behavior | | xppai-risk | Assesses change risk before modifying code | | xppai-help | General helper and entry guidance | | xppai-exportxpo | Generates a ready-to-paste X++ job for exporting AOT objects to XPO files |

Quick Start

Requirements

  • Node.js 18 or newer

Install

npm install -g xppai

Or from source:

npm install -g .

First Commands

xppai list
xppai install --target all
xppai xpo read --type Class --name MyClass --file <file>
xppai xpo grep --contains "search-text" --file <file>

Install one runtime at a time when needed:

xppai install --target codex
xppai install --target claude
xppai install --target copilot

Supported Targets

Native targets

  • claude
  • codex
  • copilot

Export-only targets

  • generic

Learn More

Repository

GitHub: betaxD/xppai

Status

XppAI is built for people who still need to reason about AX 2009 seriously.

It will not make legacy ERP magically simple.

But it can make your AI assistant less clueless before it touches the code.