test-nodebridge-handler
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
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
Zainstaluj skill w swoim projekcie Claude/Codex, dodając go do katalogu
.claude/skills/.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.Testuj konkretny handler, podając jego nazwę, np.
bun scripts/test-nodebridge.ts models.listlubbun scripts/test-nodebridge.ts git.status.Przekazuj parametry w formacie klucz-wartość:
bun scripts/test-nodebridge.ts models.test --model=anthropic/claude-sonnet-4-20250514 --prompt="Cześć" --timeout=5000. Wartościtrue/falsekonwertują się na boolean, liczby na Number, a flagi bez wartości (np.--verbose) stają się{ verbose: true }.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ść.Sprawdzaj wyniki w konsoli i iteruj parametry, aż handler zwróci oczekiwane dane.