verify

Installation
SKILL.md

Verifying the setup helper CLI

The surface is node skills/a1-yandex-kit-setup/scripts/setup.mjs <command>. No build step — plain Node 20+, no dependencies.

Recipes that work

  • stdin protocol (no-EOF regression): feed the token through a FIFO and keep the write end open; the helper must exit on its own:

    mkfifo "$TMP/pipe"
    node .../setup.mjs configure --client cursor --config "$TMP/mcp.json" --token-stdin --json < "$TMP/pipe" &
    exec 3>"$TMP/pipe"; printf 'token\n' >&3; wait $!   # exits ~0.3s
    

    Do not time (printf ...; sleep N) | node ... — the pipeline waits for the sleep, not the helper.

Installs
10
First Seen
14 days ago
verify — ztemerbekov/a1-yandex-kit-skills