Move or rename files in knowledge base with directory governance. Use when user wants to move, relocate, or rename content. Reads RULE.md of both source and target directories.
View on GitHubakashicrecords/skills/move-content/SKILL.md
February 2, 2026
Select agents to install to:
npx add-skill https://github.com/legacybridge-tech/claude-plugins/blob/main/akashicrecords/skills/move-content/SKILL.md -a claude-code --skill move-contentInstallation paths:
.claude/skills/move-content/# Move Content Skill Generic file move/rename Skill that respects both source and target RULE.md requirements. ## When to use this Skill - User says "move", "relocate", "transfer", "rename" - User requests reorganization - User wants to reclassify content to different directory ## Workflow ### 1. Identify Source File **If user provides file path**: - Verify file exists - Confirm file identity **If user provides topic/title only**: - Search for file using Grep or Glob - Pattern: `**/*keyword*.md` - If multiple matches: present list, ask user to choose - If no matches: report not found **Search strategies**: 1. Filename match: `find . -name "*keyword*"` 2. Content match: `grep -r "keyword" .` 3. README.md index: Search README.md files for references ### 2. Determine Target Location **If user specifies target**: - Parse target path - Verify target directory exists (or offer to create) - Confirm target path with user **If user doesn't specify target**: - Analyze content (read source file) - Scan available directories - Read RULE.md files to understand purposes - Recommend target directory based on content - Ask user for confirmation or alternative **Recommendation logic** (similar to add-content): 1. Analyze file content 2. Read RULE.md of potential target directories 3. Match content to directory purposes 4. Rank by suitability 5. Present top recommendation ### 3. Read Both RULE.md Files **Read source directory RULE.md**: 1. Check if moving out is allowed 2. Check if any special handling required (e.g., "notify when file moved") 3. Understand current file format **Read target directory RULE.md**: 1. Check if moving in is allowed 2. Check file format requirements 3. Check naming conventions 4. Check if transformation needed 5. Understand target directory structure **Compare requirements**: - Source format vs target format - Source naming vs target naming - Compatibility check ### 4. Check Compatibility **Format compatibility**: - Both use markdown → Co