Toolverse
All skills

test-nodebridge-handler

by neovateai

Use this skill when testing NodeBridge handlers using `bun scripts/test-nodebridge.ts`, including listing available handlers and passing parameters

Installation

Pick a client and clone the repository into its skills directory.

Installation

Quick info

Author
neovateai
Category
Testing

About this skill

Use this skill when testing NodeBridge handlers using bun scripts/test-nodebridge.ts, including listing available handlers and passing parameters

How to use

  1. Zainstaluj skill w swoim projekcie Claude/Codex, dodając go do katalogu .claude/skills/.

  2. Wylistuj wszystkie dostępne handlery, uruchamiając bun scripts/test-nodebridge.ts --list. Zobaczysz kategorie takie jak models, config, providers, mcp, skills, git i utils.

  3. Testuj konkretny handler, podając jego nazwę, np. bun scripts/test-nodebridge.ts models.list lub bun scripts/test-nodebridge.ts git.status.

  4. Przekazuj parametry w formacie klucz-wartość: bun scripts/test-nodebridge.ts models.test --model=anthropic/claude-sonnet-4-20250514 --prompt="Cześć" --timeout=5000. Wartości true/false konwertują się na boolean, liczby na Number, a flagi bez wartości (np. --verbose) stają się { verbose: true }.

  5. Do złożonych danych użyj formatu JSON z flagą --data: bun scripts/test-nodebridge.ts handler.name --data='{"key":"value","nested":{"foo":"bar"}}'. Format JSON ma priorytet nad klucz-wartość.

  6. Sprawdzaj wyniki w konsoli i iteruj parametry, aż handler zwróci oczekiwane dane.

Related skills