Help us improve
Share bugs, ideas, or general feedback.
From claude-turbo-search
Manually pushes repo's .claude-memory/memory.db to self-hosted Fly.io dashboard via git-derived slug. Use after direct memory edits like add-fact or add-knowledge; /remember auto-pushes normally.
npx claudepluginhub iagocavalcante/claude-turbo-search --plugin claude-turbo-searchHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-turbo-search:pushThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send the current repo's `.claude-memory/memory.db` to your self-hosted Fly.io dashboard. Slug is derived from `git remote get-url origin`, so it lands on the right per-repo storage automatically.
Downloads per-repo memory.db from self-hosted Fly.io dashboard into current repo. Restores accumulated sessions, knowledge, facts, and RAG embeddings after cloning on new machine.
Searches, adds, and inspects facts in a shared mem0 Qdrant memory store (hermes_mem0) used by Claude, Codex, and Hermes agents under the current user.
Uses the AI DevKit memory CLI as a durable knowledge layer for storing and retrieving reusable project context, conventions, and fixes.
Share bugs, ideas, or general feedback.
Send the current repo's .claude-memory/memory.db to your self-hosted Fly.io dashboard. Slug is derived from git remote get-url origin, so it lands on the right per-repo storage automatically.
When the user invokes /push, run:
PLUGIN_DIR="${PLUGIN_DIR:-$HOME/claude-turbo-search}"
MEMORY_SCRIPT="$PLUGIN_DIR/memory/memory-db.sh"
"$MEMORY_SCRIPT" push
Happy path:
Pushed .../memory.db to https://<dashboard>/api/repos/<slug>/push
Tell the user the dashboard now reflects this push.
No config — message will be:
no sync remote configured. run `memorydb config set --remote URL --token TOKEN`
Tell the user how to configure it.
No local DB — message will be:
no memory database at <path> — nothing to push
Suggest running /remember first (which creates the DB if needed).
add-fact, add-knowledge, or consolidate directly via memory-db.sh doesn't trigger an auto-push. Use /push to sync./remember./remember — that skill auto-pushes already./remember handle pushes at the natural session boundary./pull — the inverse operation (download from dashboard)./remember — auto-pushes after saving the session.web/README.md — full architecture.