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

@fechin/sbti-now-cli

v0.1.1

Published

Free SBTI personality test CLI and local sbti test engine for Silly Big Personality Test results.

Readme

@fechin/sbti-now-cli

@fechin/sbti-now-cli is a free SBTI personality test package and terminal-friendly sbti test CLI for people who want a fast, playful SBTI personality result without leaving their local workflow. It is built for the same entertainment-first use case behind searches such as sbti 人格, sbti 人格测试, sbti test, sbti personality, and sbti 中文测试.

Online version: https://sbti.now/

What This Package Covers

If you are looking for what is sbti, sbti meaning, or Silly Big Personality Test tooling, this package gives you a local version of the experience:

  • a fast SBTI personality test CLI
  • a reusable question bank for 人格测试 and 人格类型测试 flows
  • built-in scoring for sbti 结果, sbti 性格, and sbti 类型
  • a companion standalone skill for running the same experience inside agent workflows

It is designed for lightweight, shareable, internet-style personality testing rather than clinical assessment. If users are comparing sbti vs mbti or sbti mbti, the simplest framing is: MBTI is the familiar reference point, while SBTI is the more playful, meme-native, entertainment-first personality test format.

Highlights

  • Supports multilingual SBTI test flows in Simplified Chinese, Traditional Chinese, and English.
  • Ships with a complete SBTI personality test question bank and local scoring engine.
  • Returns structured sbti 结果 data, including personality code, score, vector, and top matches.
  • Covers popular sbti 类型 lookups such as sbti ctrl, sbti malo, sbti 伪人, sbti 妈妈, sbti 多情者, sbti gogo, and imsb.
  • Works as an npm package, and pairs with a standalone skill repository for local agents.

Install

After publishing to npm:

npm install @fechin/sbti-now-cli

During local development:

npm install /absolute/path/to/sbti-now-cli

Run The SBTI Test

Interactive mode:

npx sbti

Deterministic smoke test:

npx sbti --preset CTRL --json

English output:

npx sbti --lang en

If your audience is specifically searching for sbti 人格测试 免费 or sbti 测试 网站, the live version at sbti.now is the easiest entry point, while the npm package is the best fit for developers, local tools, and agent workflows.

CLI Flags

  • --lang <zh-Hans|zh-Hant|en>
  • --answers <30 digits or comma list>
  • --special <2 digits or comma list>
  • --preset <type code>
  • --demo same as --preset CTRL
  • --json
  • --list-types
  • --help

These flags are useful when you want to script a sbti test result meaning flow, run a repeatable sbti personality type check, or generate a fixed result for demos and QA.

Library Usage

const { runTest } = require("@fechin/sbti-now-cli");

async function main() {
  const result = await runTest({
    language: "en",
    answers: "331333313313313133313313313133",
    specialAnswers: "11"
  });

  console.log(result.personality, result.score);
}

main();

Typical integration use cases include:

  • embedding a sbti personality test inside a product or bot
  • generating sbti 结果 JSON for downstream rendering
  • building sbti 类型 pages or Silly Big Personality Test results views
  • testing how sbti vs mbti difference content maps to real user output

Types And Results

The scoring engine returns structured results for the most searched and most shareable personalities, including examples such as:

  • sbti ctrl
  • sbti malo
  • sbti 伪人
  • sbti 妈妈
  • sbti 多情者
  • sbti gogo
  • imsb
  • sbti drunk

That makes the package useful not only for the raw SBTI personality test, but also for supporting sbti 类型大全, result explanation pages, type lookup pages, and share-card workflows.

Standalone Skill

The self-contained SBTI skill now lives in its own repository:

Current tested installation command:

npx add-skill https://github.com/Fechin/sbti-now-skill

After installation, the skill is available as sbti-now.

If your host exposes the installed files locally, the bundled runner can be executed without depending on the sbti npm command:

python3 .codebuddy/skills/sbti-now/scripts/run_sbti.py --preset CTRL --lang en --json

If a host AI can read local files but cannot execute Python, use the bundled fallback in the standalone skill repository:

.codebuddy/skills/sbti-now/references/manual-workflow.md