← Back to Skills

copilot-sync

majiayu000
Updated Today
1 views
58
9
58
View on GitHub
Metageneral

About

This skill syncs GitHub Copilot configuration files (agents, prompts, skills, instructions) from a base template to your existing codebase. It automatically creates backups before overwriting files to ensure safety. Use it when updating Copilot settings or bringing a project's configuration up to date.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/copilot-sync

Copy and paste this command in Claude Code to install this skill

Documentation

Copilot Sync Skill

Synchronize GitHub Copilot configuration files from the base template to existing codebases.


Triggers

Activate this skill when user mentions:

  • "sync copilot", "copilot sync"
  • "update copilot files", "update copilot configuration"
  • "sync copilot config", "sync configuration"
  • "bring project up to date with copilot"
  • "#copilot-sync"

Description

The Copilot Sync skill synchronizes all Copilot-related files from the github-copilot-base template to an existing codebase:

  1. Agents - All .github/agents/*.md files
  2. Prompts - All .github/prompts/*.prompt.md files
  3. Skills - All .github/skills/*/ directories
  4. Instructions - .github/copilot-instructions.md
  5. PRP Framework - PRPs/ templates
  6. Supporting Docs - Background workflow, style guides

Key Features:

  • πŸ’Ύ Automatic backups before overwriting
  • πŸ‘οΈ Dry-run mode for previewing changes
  • βœ… Validation of target repository
  • πŸ“Š Detailed sync statistics

Workflow Steps

1. Gather Information

Collect the following using ask_user:

QuestionPurposeValidation
Target pathCodebase to sync toMust exist, must be Git repo
Dry run?Preview changes firstYes/No

2. Validate Target

# Check path exists
if (-not (Test-Path $TargetPath -PathType Container)) {
    Write-Error "Path does not exist"
}

# Check it's a Git repository
if (-not (Test-Path (Join-Path $TargetPath ".git"))) {
    Write-Error "Not a Git repository"
}

3. Execute Sync

Dry Run (Preview):

$TemplateRepo = "E:\Repos\HouseGarofalo\github-copilot-base"
& "$TemplateRepo\scripts\sync-copilot.ps1" -TargetPath $TargetPath -DryRun

Apply Changes:

$TemplateRepo = "E:\Repos\HouseGarofalo\github-copilot-base"
& "$TemplateRepo\scripts\sync-copilot.ps1" -TargetPath $TargetPath

Force (No Prompts):

& "$TemplateRepo\scripts\sync-copilot.ps1" -TargetPath $TargetPath -Force

4. Post-Sync Guidance

After sync, guide user to:

  1. Review copilot-instructions.md - Add project-specific context
  2. Check backups - In .copilot-backup/ folder
  3. Commit changes:
    git add .github PRPs docs
    git commit -m "chore: sync Copilot configuration from github-copilot-base"
    

5. Output Summary

Provide completion summary with:

  • Files synced count
  • New files count
  • Backups created
  • Next steps

What Gets Synced

CategoryPathDescription
Agents.github/agents/44+ custom agents
Prompts.github/prompts/50+ prompt files
Skills.github/skills/80+ skill definitions
Chat Modes.github/chatmodes/Chat mode configs
Instructions.github/copilot-instructions.mdMain instructions
Background Workflow.github/BACKGROUND_WORKFLOW.mdMulti-agent docs
Copilot Config.github/copilot/Copilot settings
VS Code Settings.vscode/Settings, extensions, MCP config
Copilot Ignore.copilotignoreFiles excluded from Copilot
Git Attributes.gitattributesLine endings and file handling
Pre-commit Config.pre-commit-config.yamlSecret detection (gitleaks)
Worktree Helperscripts/worktree-helper.ps1Git worktree utilities
PRP FrameworkPRPs/Templates & docs
Style Guidedocs/STYLE_GUIDE.mdDoc standards

Options

OptionDescriptionDefault
-TargetPathPath to target codebaseRequired
-DryRunPreview only, no changesFalse
-NoBackupSkip creating backupsFalse
-ForceSkip confirmation promptsFalse

Backup & Recovery

Backup Location:

<target>\.copilot-backup\
β”œβ”€β”€ .github\
β”‚   β”œβ”€β”€ copilot-instructions.md.<timestamp>.backup
β”‚   └── agents\*.backup
└── PRPs\*.backup

Restore a File:

Copy-Item "<backup_file>" "<original_path>" -Force

Error Handling

ErrorResolution
Path doesn't existProvide valid path
Not a Git repoInitialize with git init
Permission deniedCheck write access
Backup failedUse -NoBackup or check disk space

Prerequisites

  • Git installed
  • Target must be an existing Git repository
  • Write access to target directory

Example

User: #copilot-sync E:\Repos\MyOrg\my-project

Copilot: πŸ”„ Copilot Sync

Validating target... βœ…
Target is a Git repository... βœ…

Would you like to preview changes first?
> Yes

πŸ“‹ Dry Run:
   Would sync: 150 files
   New: 45 | Updated: 105

Apply changes?
> Yes

Syncing... βœ…
Backing up existing files... βœ…

πŸŽ‰ Sync Complete!
   Files synced: 150
   Backups: .copilot-backup/

Next steps:
1. Review .github/copilot-instructions.md
2. Commit changes

Related

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/copilot-sync

Related Skills

algorithmic-art

Meta

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

View skill

subagent-driven-development

Development

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

View skill

executing-plans

Design

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

View skill

cost-optimization

Other

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

View skill