Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.21 KB

File metadata and controls

29 lines (23 loc) · 1.21 KB

Secure, Local, Private

JP conversations can be scoped to a workspace (e.g. a VCS-backed directory), or stored locally on your machine, and you can switch between them at any time:

# Conversations are stored in the current workspace by default
jp query --new "Where does this error come from?"

# You can start a local conversation, stored outside the workspace directory
jp query --new-local "What is the purpose of this module?"

# Or switch between them at any time
jp conversation edit --local
  • Local-first models: First-class support for Ollama and llama.cpp. Run open-weight models (Llama, Mistral, Qwen, etc.) entirely offline.
  • Zero telemetry: JP sends nothing to us. Your queries, conversations, and configuration never leave your control.
  • Sandboxed extensibility: WASM-based plugins run in a true sandbox with capability-based security — no filesystem, network, or environment access unless explicitly granted. No security theater.
  • Local conversations: Store conversations outside your workspace (not tracked in git) for private or temporary work.
  • Memory safety: Written in Rust. No buffer overflows, no use-after-free, no data races.

back to README