@fechin/sbti-now-cli
v0.1.1
Published
Free SBTI personality test CLI and local sbti test engine for Silly Big Personality Test results.
Maintainers
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 testCLI - a reusable question bank for
人格测试and人格类型测试flows - built-in scoring for
sbti 结果,sbti 性格, andsbti 类型 - 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 testflows in Simplified Chinese, Traditional Chinese, and English. - Ships with a complete
SBTI personality testquestion bank and local scoring engine. - Returns structured
sbti 结果data, including personality code, score, vector, and top matches. - Covers popular
sbti 类型lookups such assbti ctrl,sbti malo,sbti 伪人,sbti 妈妈,sbti 多情者,sbti gogo, andimsb. - 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-cliDuring local development:
npm install /absolute/path/to/sbti-now-cliRun The SBTI Test
Interactive mode:
npx sbtiDeterministic smoke test:
npx sbti --preset CTRL --jsonEnglish output:
npx sbti --lang enIf 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>--demosame 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 testinside a product or bot - generating
sbti 结果JSON for downstream rendering - building
sbti 类型pages orSilly Big Personality Test resultsviews - testing how
sbti vs mbti differencecontent 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 ctrlsbti malosbti 伪人sbti 妈妈sbti 多情者sbti gogoimsbsbti 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-skillAfter 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 --jsonIf 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