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

@fdekit/cli

v0.5.3

Published

Command line interface for FDEKit

Readme

@fdekit/cli

Purpose

@fdekit/cli is the npm package for the fdekit command-line interface. It scaffolds projects, installs and captures recipes, adds providers/connectors/policies/evals, validates configs, runs agents, manages approvals, exports feedback, runs evals, renders reports, opens traces, generates the console, and manages local runtime environments.

Use the CLI when you want the standard workflow from a terminal. Use @fdekit/runtime when you need to script the same behavior inside another Node process.

npm Package

Package page: @fdekit/cli

Install the CLI once for your shell:

npm install -g @fdekit/cli

The package installs the fdekit binary, so commands stay unscoped:

fdekit init
cd fdekit
fdekit recipe install support-triage
npm install

Scaffolded deployment projects also keep @fdekit/cli in devDependencies so npm scripts use a pinned project version. A local-only install exposes fdekit inside npm run and at ./node_modules/.bin/fdekit; it does not put fdekit on your shell PATH.

Bare fdekit init creates ./fdekit. Commands can run from there or from the containing customer project; config, package/env edits, recipes, and the artifacts/ directory stay inside the contained project.

Who should use this package

  • Deployment authors starting or operating an FDEKit project.
  • Forward-deployed engineers running validation, demos, evals, approvals, reports, and console output.
  • Contributors adding or changing command behavior.

Choose @fdekit/core for config authoring helpers and @fdekit/runtime for programmatic execution.

5-minute quick example

From the repository root, the launch demo is:

npm install
npm run demo

For an installed project, the CLI primitives look like:

mkdir support-demo
cd support-demo
npm install -g @fdekit/cli@latest
fdekit init
cd fdekit
fdekit recipe install support-triage
npm install
npm run demo

The installed support-triage recipe starts the local customer API on 127.0.0.1:8787, waits for /health, runs the governed loop, generates the console, captures support-renewal-risk, and shuts the API down.

To step through the same loop manually:

npm run api

In another terminal:

npm run fdekit:doctor
npm run fdekit:validate
npm run fdekit:run
npm run fdekit:eval
npm run fdekit:console

Open artifacts/console.html after the console command to inspect traces, eval status, approvals, policy posture, reports, and exports.

Public API surface

The public surface is the fdekit binary, not a stable TypeScript import API:

fdekit init
fdekit recipe install support-triage
fdekit validate --strict
fdekit run supportTriage --strict
fdekit console

The CLI command reference documents the command surface and where each command is implemented: CLI API Reference.

Stability/backward-compat notes

@fdekit/cli is public but pre-1.0. Command names, documented flags, and scaffolded project structure are the compatibility boundary. Internal command modules are implementation details even though the CLI API reference links them for contributors.

See also