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

@khoavhd/figma-sentinel

v1.2.0

Published

CLI for Figma Sentinel - Design change tracking and automated sync

Downloads

14

Readme

@khoavhd/figma-sentinel

npm version License: MIT

CLI for Figma Sentinel - Automated design change tracking and synchronization from Figma to your codebase

Installation

# Run directly with npx (no install required)
npx @khoavhd/figma-sentinel sync

# Or install globally
npm install -g @khoavhd/figma-sentinel
pnpm add -g @khoavhd/figma-sentinel

# Verify installation
figma-sentinel --version

Quick Start

1. Add Figma Directives to Your Code

Reference Figma designs in your source code using comment directives:

// src/components/Button.tsx

// @figma-file: ABC123xyz
// @figma-node: 1:23
// @figma-node: 1:45

export function Button({ children }) {
  return <button className="btn-primary">{children}</button>;
}

2. Set Up Figma Token

export FIGMA_TOKEN="your-figma-personal-access-token"

Get your token from Figma Account Settings.

3. Initialize Configuration

figma-sentinel init

4. Run Sync

figma-sentinel sync

CLI Commands

figma-sentinel sync

Scan source files, fetch Figma designs, and detect changes.

figma-sentinel sync [options]

Options:
  --dry-run         Preview changes without writing files
  --cwd <dir>       Set working directory
  --config <path>   Path to config file

figma-sentinel check

Validate your setup without fetching from Figma.

figma-sentinel check [options]

Options:
  --cwd <dir>       Set working directory
  --config <path>   Path to config file

figma-sentinel init

Initialize Figma Sentinel with an interactive wizard.

figma-sentinel init [options]

Options:
  --cwd <dir>       Set working directory

figma-sentinel diff <node-id>

Debug and compare a specific node's current and stored state.

figma-sentinel diff <node-id> [options]

Options:
  --file-key <key>  Figma file key (required)
  --cwd <dir>       Set working directory
  --config <path>   Path to config file

figma-sentinel variables

Fetch and display Figma Variables (design tokens) from Figma files.

Note: The Figma Variables API requires a Figma Enterprise plan.

figma-sentinel variables [options]

Options:
  --file-key <key>      Figma file key to fetch variables from
  --collection <name>   Filter by collection name
  --output <path>       Output JSON file path
  --cwd <dir>          Set working directory
  --config <path>      Path to config file

Configuration

Create figma-sentinel.config.js in your project root:

module.exports = {
  filePatterns: ['src/**/*.tsx', 'src/**/*.jsx'],
  excludePatterns: ['node_modules/**', '**/*.test.tsx'],
  specsDir: '.design-specs',
  exportImages: true,
  imageScale: 2,
  outputFormat: 'json',
};

Related Packages

| Package | Description | |---------|-------------| | @khoavhd/figma-sentinel-core | Core library for programmatic use | | @khoavhd/figma-sentinel-action | GitHub Action wrapper |

Documentation

For complete documentation, see the main repository.

License

MIT © duckhoa-uit