New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vybtest

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vybtest

AI-Native Testing Framework - Write tests in YAML, get structured output for autonomous TDD

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Vyb

Vyb

AI-Native Testing Framework

Write tests in YAML. Get structured output with actual/expected values and hints.
Let AI fix your code autonomously.

build npm version npm downloads license

WebsiteGitHubQuick Start

Installation

npm install -g vybtest

Quick Start

Create player.ts.vyb:

"player starts with full health":
  confidence: 0.95
  when:
    - "player = createPlayer(100, 100)"
  then:
    - "expect: player.health == 100"

Run:

vyb run tests/

Output:

tests:
  - name: player starts with full health
    status: fail
    actual: 50
    expected: 100
    hints:
      - The equality check failed

Your AI reads the structured output, sees actual: 50 vs expected: 100, and fixes the code.

Why Vyb

Traditional test output is designed for humans. Stack traces, diff formatting, ANSI colors. Your AI has to guess what went wrong.

Vyb outputs structured YAML with:

  • Actual and expected values
  • Failure location
  • Pattern-matched hints
  • Confidence guidance

Zero API calls. Zero cost. Just tests that tell AI exactly what failed.

Documentation

Full documentation at vybtest.com

License

MIT

Keywords

testing

FAQs

Package last updated on 18 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts