Official TypeScript SDK and CLI for wspc.ai.
Status: v0 walking skeleton. Covers the todo domain only.
npm i -g @wspc/cliThis installs the wspc binary globally.
wspc login
wspc todo add "Buy milk"
wspc todo lsIf you'd rather not install globally, use npx — but two flags matter:
-p @wspc/cli@latest: the package is@wspc/clibut the binary iswspc, so npx's default short form (npx @wspc/cli ...) can't resolve the bin on Windows. The@latest(or any explicit version) is also required — without it npx may dispatch flags like--versionto itself.-y: skip the "install this?" prompt (optional but recommended for scripts).
npx -y -p @wspc/cli@latest wspc --version
npx -y -p @wspc/cli@latest wspc todo lsSee full docs at https://wspc.ai/docs (coming soon).
MIT