How this skill is triggered — by the user, by Claude, or both
Slash command
/know:syncThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Synchronize knowledge entries between local SQLite and Prefrontal cloud.
Synchronize knowledge entries between local SQLite and Prefrontal cloud.
# Two-way sync (push local, pull remote)
know sync
# Push local to cloud only
know sync --push
# Pull cloud to local only
know sync --pull
Set your API token in ~/.zshrc:
export PREFRONTAL_API_TOKEN='your-token'
# Local entry count
know stats
# Compare with cloud (if available)
know sync --dry-run
| Direction | What Happens |
|---|---|
--push | Uploads local entries to cloud |
--pull | Downloads cloud entries to local |
| (default) | Push then pull (two-way merge) |
The whisper loop automatically syncs on:
To verify auto-sync is configured:
jq '.hooks.SessionEnd' ~/.claude/settings.json
Sync fails with auth error?
# Check token is set
echo $PREFRONTAL_API_TOKEN
# Test API connectivity
curl -H "Authorization: Bearer $PREFRONTAL_API_TOKEN" \
https://your-api/api/knowledge/entries
Entries not syncing?
# Check hook logs
tail -20 ~/.claude/hooks/session-checkpoint.log
npx claudepluginhub conduit-ui/marketplace --plugin knowSets up or checks cloud sync for claude-mem memory database with cmem.ai Pro. Use when the user mentions cloud sync, memory backup, or cmem.ai account connection.
Manually syncs Claude brain state across machines: checks initialization, pushes local changes, pulls and auto-merges remote updates, shows summary, suggests conflict resolution.
Manages knowledge base ingestion, sync, and retrieval across local files, MCP memory, vector stores, and Git repos. Use for saving, organizing, deduplicating, or searching knowledge.