cloning-project — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cloning-project (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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]
INSTRUCTIONSKnowledge 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.zipLink 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:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.