🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@typesensekit/cli

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typesensekit/cli - npm Package Compare versions

Comparing version
1.2.0
to
1.4.0
+1
-1
package.json
{
"name": "@typesensekit/cli",
"version": "1.2.0",
"version": "1.4.0",
"type": "module",

@@ -5,0 +5,0 @@ "main": "dist/cli.js",

@@ -7,3 +7,29 @@ # @typesensekit/cli

pnpm add -g @typesensekit/cli
tsk profile add local --url http://localhost:8108 --api-key xyz
# Secure interactive prompt
tsk profile add local --url http://localhost:8108
# Non-interactive stdin (avoids argv and shell history)
printf '%s' "$TYPESENSE_API_KEY" | tsk profile add ci --url https://typesense.example.com --api-key-stdin
# macOS Keychain-backed profile
tsk profile add production --url https://typesense.example.com --keychain
tsk profile test production
tsk profile export production > profile.json # omits plaintext keys
tsk profile export production --reveal > backup.json
tsk profile import backup.json
Operation results use readable tables where possible. Pass `--json` for stable,
redacted JSON output in scripts.
Destructive operations prompt before execution. Pass `--yes` only for deliberate
non-interactive automation.
Every operation supports `--schema` and `--examples`. Enable shell completion with:
```sh
source <(tsk completion zsh) # zsh
source <(tsk completion bash) # bash
tsk completion fish | source # fish
```
tsk collections.list --input '{}'

@@ -10,0 +36,0 @@ tsk skills mcp

Sorry, the diff of this file is too big to display