versuno-cli
v0.4.0
Published
Versuno CLI — the intelligent context layer for your AI agents
Readme
Versuno CLI
The developer-first CLI for Versuno — manage your AI contexts, prompts, personas, and skills from the terminal.
Requirements
- Node.js ≥ 18 or Bun ≥ 1.0
Installation
# Using npm (no Bun required)
npm install -g versuno-cli
# Using Bun
bun add -g versuno-cliOr run directly without installing:
npx versuno-cli <command>
# or
bunx versuno-cli <command>Quick start
# 1. Authenticate
versuno login
# 2. Capture your coding-agent memory into Versuno
versuno memory capture
# Prefer to stay private? Capture into a local store (~/.versuno/memory/)
# instead of the cloud — no account needed — and search it back:
versuno memory capture --local
versuno memory recall "auth flow"
# Make Claude Code recall automatically: install a UserPromptSubmit hook that
# searches the local store on each prompt and injects matches as context.
versuno memory install-hook # (or --uninstall to remove)
# Prompt manager (asset versioning) lives under `prompts`:
versuno prompts init # scaffold .versuno/ in the folder
versuno prompts pull <asset-id> # pull an asset from the cloud
versuno prompts push -m "my change description" # edit, then push a new versionDocumentation
Full command reference: docs.versuno.ai/cli
