add-node-sdk

Installation
SKILL.md

Add Node.js SDKs

Integrate Temps platform features in Node.js / TypeScript apps.

Verified against the real published packages. A prior version of this skill referenced @temps-sdk/node (which does not exist), new Temps({ apiKey, projectId }), temps.track(), new KV({ apiKey, namespace }), kv.has(), blob.get(), blob.getSignedUrl(), TempsErrornone of those exist. Confirm any API before changing it:

npm pack @temps-sdk/node-sdk@latest @temps-sdk/kv@latest @temps-sdk/blob@latest
for t in temps-sdk-*-*.tgz; do tar -xzf "$t"; echo "== $t =="; cat package/dist/index.d.ts | head -60; rm -rf package; done

The three real packages

Package Purpose
@temps-sdk/node-sdk Full platform API client (generated) + Sentry-style server error tracking
@temps-sdk/kv Vercel-KV-style key/value store
@temps-sdk/blob Vercel-Blob-style file store

There is no @temps-sdk/node. The platform client package is @temps-sdk/node-sdk.

Installs
30
Repository
gotempsh/temps
GitHub Stars
572
First Seen
Feb 18, 2026
add-node-sdk — gotempsh/temps