cloning-project

Solid

Exports project instructions and knowledge files from the current Claude project. Use when users want to clone, copy, backup, or export a project's configuration and files.

Data & Documents 134 stars 7 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
71
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Cloning Project When users request to clone, copy, export, or backup their current project: ## Step 1: Verify Project Context Check if the user is in a project by looking for project-specific indicators: - Project instructions in the context window - Knowledge files mentioned in `<available_skills>` or similar sections - User explicitly stating they're in a project If not in a project, inform the user that this skill requires being inside a Claude project. ## Step 2: Gather Project Instructions 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: ```bash cat > /home/claude/project-instructions.md << 'INSTRUCTIONS' [Extracted project instructions content] INSTRUCTIONS ``` ## Step 3: Locate Knowledge Files Knowledge files are user-uploaded documents stored in `/mnt/user-data/uploads/`. List all files: ```bash ls -lh /mnt/user-data/uploads/ ``` If knowledge files exist, copy them to the working directory for bundling: ```bash cp /mnt/user-data/uploads/* /home/claude/project-export/ ``` ## Step 4: Create Export Bundle **If only project instructions exist (no knowledge files):** - Copy instructions directly to outputs: ```bash cp /home/claude/project-instructions.md /mnt/user-data/outputs/ ``` **If project has both instructions and knowledge files:** - Create an organized export directory: ```b...

Details

Author
oaustegard
Repository
oaustegard/claude-skills
Created
9 months ago
Last Updated
yesterday
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

build-perfect-project

Turn any recurring workflow into a complete, paste-ready Claude Project — Project Instructions, a context-document plan with fill-in templates, starter prompts, and a pressure test. Use when someone wants to "set up a Claude Project", "build a project for X", needs Project Instructions or a knowledge-base plan, wants a repeatable system for content creation, newsletters, outreach, research, proposals, or support, keeps re-pasting the same context into every chat, or asks "how should I structure my Claude Project".

0 Updated 1 weeks ago
navinramharak-rgb
AI & Automation Listed

cc-clone

Clone a Claude Code brain — package your own memory/skills/agents/rules into a shareable, secret-redacted pack, or one-click install another developer's brain into your Claude Code (or export it to Codex/Gemini/Cursor/OpenCode). Use when the user says "clone my brain", "package my Claude Code setup", "install someone's brain", "克隆大脑", "打包我的记忆", "移植到 codex/cursor", or wants to distribute or adopt a Claude Code configuration.

0 Updated 2 weeks ago
duliangkuan
AI & Automation Listed

skill-exporter

Package an already-installed Claude Code skill from ~/.claude/skills/ into the folder structure required by a shared skills GitHub repo (README.md, SKILL.md, INSTALLATION.md), ready to commit and push. Use this skill whenever the user asks to export, publish, package, or share one of their existing custom skills, wants to "add this skill to my repo" or "make this skill shareable," or names a specific installed skill and asks to prep it for GitHub or hand it to someone else.

0 Updated 1 weeks ago
DeltaCorvi