skills/review-knowledge/SKILL.md
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.
npx skillsauth add LevNas/ccmemo review-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.
Maintain knowledge base health and surface entries for review, helping the user internalize accumulated knowledge through periodic reflection.
Delegate the review work to a Sonnet subagent to minimize main context consumption.
healthtopic:<keyword> → topic with the specified keywordfix → fix.claude/knowledge/entries/)Agent(
subagent_type: "general-purpose",
model: "sonnet",
description: "review knowledge base",
prompt: |
You are a knowledge base review agent. Read the procedure file and follow it precisely.
## Input
### mode
{mode}
### topic_keyword (only for topic mode)
{topic_keyword}
### current_date
{current_date}
## Instructions
1. Read the procedure file at: {plugin_root}/skills/review-knowledge/procedure.md
2. Follow the procedure step by step for the specified mode
3. The knowledge base is at: {project_root}/.claude/knowledge/
4. Return the full review report in the output format specified in the procedure
)
Replace the placeholders:
{mode} — review mode: health, topic, or fix{topic_keyword} — keyword or tag for topic mode (empty for other modes){current_date} — today's date in YYYY-MM-DD format (needed for stale entry detection){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.
development
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.
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).
testing
Create, edit, improve, or audit AgentSkills. Use when creating a new skill from scratch or when asked to improve, review, audit, tidy up, or clean up an existing skill or SKILL.md file. Also use when editing or restructuring a skill directory (moving files to references/ or scripts/, removing stale content, validating against the AgentSkills spec). Triggers on phrases like "create a skill", "author a skill", "tidy up a skill", "improve this skill", "review the skill", "clean up the skill", "audit the skill".
testing
Host security hardening and risk-tolerance configuration for OpenClaw deployments. Use when a user asks for security audits, firewall/SSH/update hardening, risk posture, exposure review, OpenClaw cron scheduling for periodic checks, or version status checks on a machine running OpenClaw (laptop, workstation, Pi, VPS).