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

@sf-ai-kit/core

v0.1.4

Published

Core engine for SF AI Kit — scanning, planning, safe merging, backups, and file generation.

Downloads

233

Readme

@sf-ai-kit/core

Core engine for SF AI Kit.

This package contains all the logic used by the CLI and VS Code extension — scanning, file generation, inline diagnostics, MCP bootstrap, drift detection, and more. Use it if you want to build your own tooling on top of SF AI Kit.


Installation

npm install @sf-ai-kit/core

Usage

import {
  scanProject,
  planSetup,
  applySetup,
  analyseFile,
  detectFileType,
  bootstrapMcp,
  detectDrift,
} from '@sf-ai-kit/core';

// Scan a Salesforce DX project and get an AI readiness score
const result = await scanProject('/path/to/sf/project');
console.log(result.score);        // 0–100
console.log(result.missing);      // files and config that are missing
console.log(result.recommendations);

// Plan and apply the setup
const plan = await planSetup('/path/to/sf/project', { preset: 'core' });
const applied = await applySetup('/path/to/sf/project', plan);
console.log(applied.filesCreated);
console.log(applied.filesSkipped); // existing files are never overwritten

// Run inline diagnostics on an Apex file
const fileType = detectFileType('MyClass.cls'); // 'apex'
const diagnostics = analyseFile(apexSourceCode, fileType);
// diagnostics: [{ ruleId, message, severity, line, ruleFile }]

// Bootstrap MCP config for Cursor and Claude Code
const mcp = await bootstrapMcp('/path/to/sf/project', { orgAlias: 'my-sandbox' });
// writes .cursor/mcp.json and .mcp.json

What Is Included

| Module | Description | |--------|-------------| | scanProject | Scans a project and returns an AI readiness score across 21 signals | | planSetup | Plans which files to create for a given preset, without writing anything | | applySetup | Applies a plan — creates missing files, never overwrites existing ones | | analyseFile | Runs inline diagnostic rules on Apex, LWC JS, and LWC HTML source | | detectFileType | Classifies a file path as apex, lwc-js, lwc-html, or unknown | | getHoverContent | Returns explanation and fix suggestion for a given diagnostic rule ID | | bootstrapMcp | Generates .cursor/mcp.json and .mcp.json for a Salesforce org | | validateMcpConfig | Validates an MCP config file for common mistakes | | detectDrift | Checks whether AI setup files still contain the expected content signals | | checkTeamSync | Compares local files against a remote team config | | fetchTeamConfig | Fetches a team config JSON from a URL | | readOrgContext | Reads the current default org alias from project config files | | detectAgentforceContext | Scans force-app/ for Agentforce metadata | | buildDeployPreview | Classifies components in force-app/ and identifies deployment risks | | listInstalledSkills | Returns installed Cursor skills from .cursor/skills/ | | generateClaudeMemModeJson | Generates a claude-mem Salesforce DX mode JSON file | | generateReadinessReport | Formats a scan result as a readable text report |


Presets

| Preset | Description | |--------|-------------| | core | Standard Salesforce DX project | | lwc | Adds extra LWC rules and skills | | agentforce | Adds Agentforce and AFV Library support | | data-cloud | Adds Data Cloud docs and rules | | experience-cloud | Adds Experience Cloud rules |


Requirements

  • Node.js 18 or later

Related


Author

Nikhil Karkra

License

MIT