From knowledge-and-memory
Exports project instructions and knowledge files from the current Claude project into a downloadable bundle for cloning or backup.
How this skill is triggered — by the user, by Claude, or both
Slash command
/knowledge-and-memory:cloning-projectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When users request to clone, copy, export, or backup their current project:
When users request to clone, copy, export, or backup their current project:
Check if the user is in a project by looking for project-specific indicators:
<available_skills> or similar sectionsIf not in a project, inform the user that this skill requires being inside a Claude project.
Project instructions are typically found in the context window as XML or markdown content describing the project's purpose and configuration. Extract and save these instructions to a file.
Create the instructions file:
cat > /home/claude/project-instructions.md << 'INSTRUCTIONS'
[Extracted project instructions content]
INSTRUCTIONS
Knowledge files are user-uploaded documents stored in /mnt/user-data/uploads/. List all files:
ls -lh /mnt/user-data/uploads/
If knowledge files exist, copy them to the working directory for bundling:
cp /mnt/user-data/uploads/* /home/claude/project-export/
If only project instructions exist (no knowledge files):
cp /home/claude/project-instructions.md /mnt/user-data/outputs/
If project has both instructions and knowledge files:
mkdir -p /home/claude/project-export
cp /home/claude/project-instructions.md /home/claude/project-export/
cp /mnt/user-data/uploads/* /home/claude/project-export/ 2>/dev/null || true
cd /home/claude
zip -r /mnt/user-data/outputs/project-export.zip project-export/
unzip -l /mnt/user-data/outputs/project-export.zip
Link the exported files:
For single instructions file:
[Download project-instructions.md](computer:///mnt/user-data/outputs/project-instructions.md)
For bundled export:
[Download project-export.zip](computer:///mnt/user-data/outputs/project-export.zip)
Then provide clear setup instructions:
## How to Import Into a New Project
1. **Create a new Claude project** (or open an existing one where you want to clone this configuration)
2. **Add project instructions:**
- Open the new project's settings
- Navigate to the "Instructions" section
- Copy and paste the content from `project-instructions.md`
- Save the instructions
3. **Upload knowledge files** (if applicable):
- In the new project, go to the "Knowledge" section
- Upload all files from the export (except project-instructions.md)
- Files will become available as project knowledge
Your project is now cloned with the same configuration and knowledge base.
Empty project (no custom instructions or knowledge):
Large knowledge bases:
Corrupted or inaccessible files:
Trigger phrases:
npx claudepluginhub oaustegard/claude-skills --plugin knowledge-and-memoryCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.