Record knowledge
npx -y skills add LevNas/ccmemo --skill record-knowledgeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Record tacit knowledge — quirks, pitfalls, dependencies, decisions, root causes — as tagged Markdown entries in `.claude/knowledge/entries/`. Use this skill whenever discoveries are made during work, when the user shares undocumented system behavior, or at plan completion to capture lessons learned. Also use when Claude Code makes a mistake pointed out by the user — record what happened, why it was wrong, and what to do next time.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.9 KB, as published. Nobody here has run it
Record Knowledge
Goal
Capture tacit knowledge discovered during work and make it available for future sessions.
When to Reference
- New session start: Search
.claude/knowledge/entries/for active entries related to the current task before starting work- If an
overviewentry exists for the topic, read it first — loaddetailentries on demand to save context
- If an
- Progress update: Check if related entries need updating based on new discoveries
- Not needed when resuming a session (context is already preserved)
Execution
Delegate the recording work to a subagent to minimize main context consumption.
- Analyze the user input or work context and prepare structured input fields
- Determine the knowledge base path (default:
.claude/knowledge/entries/) - Spawn a subagent with the following configuration:
Agent(
subagent_type: "general-purpose",
description: "record knowledge entry",
prompt: |
You are a knowledge recording agent. Read the procedure file and follow it precisely.
## Input
### what(事実)
{what}
### why(判断理由)
{why}
### context(背景情報)
{context}
### tags_hint(推奨タグ)
{tags_hint}
## Instructions
1. Read the procedure file at: {plugin_root}/skills/record-knowledge/procedure.md
2. Follow the procedure step by step
3. The knowledge base is at: {project_root}/.claude/knowledge/
4. Return: filename, # heading, ## headings, and linked entries
)
Replace the placeholders:
{what}— 何が起きたか: the factual observation, discovery, or decision to record{why}— なぜ重要か: why this matters, the reasoning behind recording it (judgment made by the main agent){context}— 関連する背景情報: surrounding context (task being worked on, environment, related files, issues){tags_hint}— 推奨タグ: tags the main agent recommends (subagent validates against the tag registry){plugin_root}— the plugin's installation path (shown in the skill loading message as "Base directory for this skill"){project_root}— the project working directory
- Report the subagent's result to the user (filename, headings, linked entries only)
IMPORTANT: The procedure file path uses the plugin's base directory, NOT the project directory. Read the "Base directory for this skill" line from the skill loading message to determine the correct path.