MCP HubMCP Hub
スキル一覧に戻る

curating-memories

majiayu000
更新日 Today
20 閲覧
58
9
58
GitHubで表示
メタaidesign

について

このClaudeスキルは、記憶の質を維持するためのキュレーションガイダンスを提供します。内容の更新、陳腐化した情報のマーキング、関連知識のリンク作成を含みます。記憶の修正が必要な場合、新しい情報が古いデータに取って代わるとき、または関連概念間でナレッジグラフの接続を構築する際にご利用ください。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/majiayu000/claude-skill-registry
Git クローン代替
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/curating-memories

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Curating Memories

Active curation keeps the knowledge base accurate and connected. Outdated memories pollute search results and reduce effectiveness.

When to Update a Memory

Use update_memory when:

  • Information needs correction or clarification
  • Importance level changes (more/less relevant than thought)
  • Content needs refinement
  • Links to projects/artifacts/documents change
execute_forgetful_tool("update_memory", {
  "memory_id": <id>,
  "content": "Updated content...",
  "importance": 8
})

Only specified fields are changed (PATCH semantics).

When to Mark Obsolete

Use mark_memory_obsolete when:

  • Memory is outdated or contradicted by newer information
  • Decision has been reversed or superseded
  • Referenced code/feature no longer exists
  • Memory was created in error
execute_forgetful_tool("mark_memory_obsolete", {
  "memory_id": <id>,
  "reason": "Superseded by new architecture decision",
  "superseded_by": <new_memory_id>  // optional
})

Obsolete memories are soft-deleted (preserved for audit, hidden from queries).

When to Link Memories

Use link_memories when:

  • Concepts are related but not caught by auto-linking
  • Building explicit knowledge graph structure
  • Connecting decisions to their implementations
  • Relating patterns across projects
execute_forgetful_tool("link_memories", {
  "memory_id": <source_id>,
  "related_ids": [<target_id_1>, <target_id_2>]
})

Links are bidirectional (A↔B created automatically).

Curation Workflow

When creating new memories, check impact on existing knowledge:

Step 1: Query Related Memories

execute_forgetful_tool("query_memory", {
  "query": "<topic of new memory>",
  "query_context": "Checking for memories that may need curation",
  "k": 5
})

Step 2: Analyze Each Result

For each existing memory, determine action:

SituationAction
Existing memory is still accurateLink to it
Existing memory has minor gapsUpdate it
Existing memory is now wrongMark obsolete, create new
Existing memory is partially validCreate new, link both

Step 3: Execute Curation Plan

Present plan to user before executing:

Curation plan:
- Create: "New authentication approach" (importance: 8)
- Mark obsolete: #42 "Old auth pattern" (superseded)
- Link: New memory ↔ #38 "Security requirements"

Proceed? (y/n)

Step 4: Execute and Report

After user confirms:

  1. Create new memory
  2. Mark obsolete memories
  3. Create links
  4. Report results with all changes made

Signs of Poor Curation

Watch for these indicators:

  • Multiple similar memories on same topic (deduplicate)
  • Memories referencing deleted code (mark obsolete)
  • Contradictory memories (resolve conflict)
  • Low-importance memories (importance < 6) accumulating
  • Orphaned memories with no links (consider linking or removing)

Auto-Linking

Forgetful auto-links semantically similar memories (similarity >= 0.7) during creation. Manual linking is for:

  • Explicit relationships auto-linking missed
  • Cross-project connections
  • Non-obvious conceptual links

Check similar_memories in create response to see what was auto-linked.

GitHub リポジトリ

majiayu000/claude-skill-registry
パス: skills/curating-memories

関連スキル

content-collections

メタ

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

スキルを見る

creating-opencode-plugins

メタ

This skill provides the structure and API specifications for creating OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It offers implementation patterns for JavaScript/TypeScript modules that intercept and extend the AI assistant's lifecycle. Use it when you need to build event-driven plugins for monitoring, custom handling, or extending OpenCode's capabilities.

スキルを見る

evaluating-llms-harness

テスト

This Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.

スキルを見る

sglang

メタ

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

スキルを見る