name: "create-clone" description: "Create isolated git clone for feature"
Creates a git clone for isolated feature development.
Feature description from user input
"$ARGUMENTS"
Feature Description Validation
- If empty or missing: "Error: Feature description is required. Please provide a detailed description."
Process
Step 1: Parse Feature Description
- Decide on feature name based on description
- Convert feature name to kebab-case for branch naming
- Validate description is sufficient for planning
Step 2: Create Git Clone
Set up isolated feature branch from origin/main (unless user stated a different branch)
# Get the current repo URL
REPO_URL=$(git config --get remote.origin.url)
# Create _clones directory if it doesn't exist
mkdir -p _clones
# Create clone in _clones subdirectory with branch name as folder
git clone -b main "$REPO_URL" _clones/$FEATURE_NAME
# Move to new clone directory
cd _clones/$FEATURE_NAME
# Create and checkout the feature branch
git checkout -b $FEATURE_NAME
Step 3: Publish Branch to Remote
Push the empty branch to remote to establish tracking:
# Push the branch to remote and set upstream
git push -u origin $FEATURE_NAME
Step 4: Sync with Main
Run the sync skill to commit and push.
Step 5: Setup Environment
Setup development environment:
# Setup development environment
bash ~/.claude/scripts/setup_project_env.sh
Step 6: Notify User
Tell user:
- The clone has been created at
_clones/$FEATURE_NAME - The branch
$FEATURE_NAMEhas been published to remote
Step 7: Change to Feature Directory
Change to the feature clone directory.
FROM NOW ALL NEW WORK SHOULD ONLY BE DONE IN THIS FEATURE DIR
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools git workflows
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!