用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill clickmem-research命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | clickmem-research |
| description | | Use when this capability is needed. |
A lightweight quality pass over the ClickMem store. The server runs zero LLM, so this skill uses the agent's current session model to score recall behaviour and propose fixes. Everything reads through the public REST + MCP surface; no direct chDB access.
Run the steps in order. Stop early if a step fails critically (server unreachable, no data).
clickmem service status
curl -s http://127.0.0.1:9527/v1/health | jq
curl -s http://127.0.0.1:9527/v1/stats/overview | jq
Confirm:
local chDB vs clickhouse) matches what the user expects.The server logs every recall to the events table. Pull the last N traces and the per-candidate scoring:
clickmem recall-trace --sample 20 --since 7d
# or
curl -s -X POST http://127.0.0.1:9527/v1/recall/trace \
-H 'Content-Type: application/json' \
-d '{"sample": 20, "since": "7d"}' | jq
Each trace returns the query, the top hits, and the score breakdown (cosine × project multiplier × privacy filter × pinned boost). Look for:
other-project (×0.0) and got filtered out.status='contracted' or hasn't been updated in months and yet is winning.clickmem conflicts --json
# or
curl -s http://127.0.0.1:9527/v1/conflicts | jq
For each pair, fetch both memories:
clickmem show <id_a> --history
clickmem show <id_b> --history
Decide for each pair:
clickmem resolve <loser> --revise <winner>.clickmem resolve <a> --allow <b>.clickmem forget on both with a reason.Do not execute resolutions automatically. Surface the proposal to the user and let them confirm.
With the trace sample + conflicts list, summarise:
~/.clickmem/audits/ has prior reports.forget), pinned memories that no longer match recent traces (candidates for unpin + edit).hit_count = 0 in the last 30 d are dead — propose removal.If the user asks you to file a GitHub issue or share the audit externally, mask aggressively. Treat any audit artefact as public.
100.86.x.x → [INTERNAL_IP], machine names → [HOST_A]./Users/auxten/ → /Users/[USER]/.[REDACTED].Re-read the full body before submitting and confirm no PII remains.
If the audit reveals systemic issues (recall pass rate dropping, conflict backlog growing, an adapter consistently producing low-quality commits), file an issue against the active repo:
REPO=$(git remote get-url origin 2>/dev/null \
| sed -E 's|.*github\.com[:/]||;s|\.git$||' \
|| echo "auxten/clickmem")
gh issue create --repo "$REPO" \
--title "ClickMem audit: YYYY-MM-DD" \
--body "..."
Issue body sections:
CLICKMEM_CONFLICT_THRESHOLD), proposed resolutions for top conflicts, adapter-specific issues.If the audit surfaces probes that should regress-test future changes, append them to docs/recall-test-cases.md (or wherever the repo keeps them). These stay in-repo, so literal queries are fine — but the GitHub issue body still must be masked.
Source: auxten/clickmem — distributed by TomeVault.