Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill clickmem-research명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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.