---
name: vektor-memory
version: 1.5.5
description: >
  Give your agent persistent memory, stealth browsing, AES-256 vault, and SSH orchestration
  via VEKTOR Slipstream MCP. Use when the user asks to remember, recall, store context,
  fetch a URL without being blocked, manage credentials, or run remote commands from the agent.
  Triggers: remember, recall, memory, store context, cloak, vault, SSH deploy, persistent agent.
---

# VEKTOR Slipstream — Agent Skill

VEKTOR Slipstream is an MCP server that gives agents four capabilities:
**persistent memory**, **stealth browser**, **encrypted vault**, and **SSH orchestration**.

## Install

```bash
npm install -g vektor-slipstream
vektor activate <LICENCE_KEY>
vektor mcp
```

Node >= 18.0.0 required. Licence: https://vektormemory.com/product
DXT (Claude Desktop drag-and-drop): https://vektormemory.com/docs/dxt

---

## 1 · Memory Tools

### Store
```
vektor_store   key, value, namespace?, tags?
```

### Recall
```
vektor_recall        query, namespace?, limit?
vektor_recall_rrf    dual BM25 + semantic, best precision
```

### Graph & context
```
vektor_graph      — D3 force graph (opens localhost:3847)
vektor_delta      — what changed on a topic recently
vektor_related    — traverse edges from a memory ID
vektor_briefing   — structured digest of recent memories
vektor_context    — assembled context block ready for prompt injection
vektor_status     — health check: count, namespace, last store timestamp
```

**Session handover pattern:**
End of session → vektor_store a summary.
Start of next session → vektor_recall project name to restore context.

---

## 2 · Cloak — Stealth Browser

```
cloak_fetch           url, identity?       — bot-resistant headless fetch
cloak_fetch_smart     url                  — checks llms.txt first, falls back to browser
cloak_render          url                  — full layout sensor, computed CSS geometry
cloak_diff            url                  — semantic diff since last fetch
cloak_identity_create                      — generate persistent browser fingerprint
cloak_identity_list                        — list identities with trust scores
cloak_identity_use    name                 — activate identity for next fetch
cloak_inject_behaviour                     — inject human-realistic mouse/scroll
```

---

## 3 · Vault (AES-256-GCM)

```
cloak_passport   action: "set"|"get"|"delete",  key,  value? (set only)
```

Never store secrets in memory tools — use passport for API keys and credentials.

---

## 4 · SSH Orchestration

```
cloak_ssh_exec    host, username, keyName, command
cloak_ssh_plan    host, username, keyName, steps[]   — queue multi-step transaction
cloak_ssh_approve approval_token, confirm: true      — safety gate with auto-backup
cloak_ssh_rollback rollback_key                      — one-step undo
cloak_ssh_backup  host, username, keyName            — manual timestamped backup
```

Always use keyName (vault key name), never keyPath.

Safe deploy pattern: plan → review → approve → rollback if needed.

---

## 5 · Intelligence (auto-runs on boot)

vektor-confidence · vektor-dedup · vektor-recall-tune · vektor-rl-memory
vektor-selforg · vektor-briefing-scheduler · vektor-session-ingest

---

## MCP Config

```json
{
  "mcpServers": {
    "vektor": {
      "command": "node",
      "args": ["/path/to/node_modules/vektor-slipstream/vektor.mjs", "mcp"],
      "env": { "VEKTOR_LICENCE_KEY": "YOUR_KEY_HERE" }
    }
  }
}
```

Or run `vektor setup` — writes config automatically.

---

## Quick Reference

| Need | Tool |
|------|------|
| Remember something | vektor_store |
| Find a memory | vektor_recall / vektor_recall_rrf |
| Fetch without blocking | cloak_fetch / cloak_fetch_smart |
| Store a secret | cloak_passport set |
| Run remote command | cloak_ssh_exec |
| Safe multi-step deploy | cloak_ssh_plan → cloak_ssh_approve |
| What changed in memory | vektor_delta |
| Visualise memory | vektor_graph |

Docs: https://vektormemory.com/docs


## n8n + CrewAI Bridges
- n8n bridge: node n8n/n8n-vektor-setup.js (port 3848)
- CrewAI bridge: node crewai/crewai-vektor-setup.js (port 3849)
- Both follow mistral bridge pattern
- Bridge files in vektor-slipstream-sdk/n8n/ and crewai/
