skills/record-knowledge/SKILL.md
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.
npx skillsauth add LevNas/ccmemo record-knowledgeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Capture tacit knowledge discovered during work and make it available for future sessions.
.claude/knowledge/entries/ for active entries related to the current task before starting work
overview entry exists for the topic, read it first — load detail entries on demand to save contextDelegate the recording work to a subagent to minimize main context consumption.
.claude/knowledge/entries/)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 directoryIMPORTANT: 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.
testing
Review and maintain the knowledge base — find stale entries, orphan entries without connections, missing links between related entries, and generate topic summaries. Supports the "internalization" phase of knowledge management by surfacing knowledge for periodic review and reflection.
development
Persist multi-step plans and task progress across Claude Code sessions. Use when starting work that may span multiple sessions, resuming incomplete plans, or updating task progress. Supports two modes: Git-tracked (shared via commits) and Issue-centric (issue tracker as primary source of truth, local scratchpad for sessions).
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.