🎩 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

Typesense API CLI with profile management and agent skill snippets.

Source
npmnpm
Version
1.4.0
Version published
Weekly downloads
12
-7.69%
Maintainers
1
Weekly downloads
 
Created
Source

@typesensekit/cli

CLI for Typesense API operations, profile management, and agent skill snippets.

pnpm add -g @typesensekit/cli
# 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 '{}' tsk skills mcp


See the root README for operation coverage and development docs.

Keywords

typesense

FAQs

Package last updated on 12 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts