Agent skill
copilot-sync
Synchronize GitHub Copilot configuration files (agents, prompts, skills, instructions) from github-copilot-base template to existing codebases. Creates backups before overwriting. Use when updating Copilot configuration, syncing Copilot files, or bringing a project up to date. Triggers on sync copilot, update copilot, copilot sync, sync configuration.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/copilot-sync
SKILL.md
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:
- Agents - All
.github/agents/*.mdfiles - Prompts - All
.github/prompts/*.prompt.mdfiles - Skills - All
.github/skills/*/directories - Instructions -
.github/copilot-instructions.md - PRP Framework -
PRPs/templates - 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:
| Question | Purpose | Validation |
|---|---|---|
| Target path | Codebase to sync to | Must exist, must be Git repo |
| Dry run? | Preview changes first | Yes/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:
- Review copilot-instructions.md - Add project-specific context
- Check backups - In
.copilot-backup/folder - Commit changes:
powershell
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
| Category | Path | Description |
|---|---|---|
| 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.md |
Main instructions |
| Background Workflow | .github/BACKGROUND_WORKFLOW.md |
Multi-agent docs |
| Copilot Config | .github/copilot/ |
Copilot settings |
| VS Code Settings | .vscode/ |
Settings, extensions, MCP config |
| Copilot Ignore | .copilotignore |
Files excluded from Copilot |
| Git Attributes | .gitattributes |
Line endings and file handling |
| Pre-commit Config | .pre-commit-config.yaml |
Secret detection (gitleaks) |
| Worktree Helper | scripts/worktree-helper.ps1 |
Git worktree utilities |
| PRP Framework | PRPs/ |
Templates & docs |
| Style Guide | docs/STYLE_GUIDE.md |
Doc standards |
Options
| Option | Description | Default |
|---|---|---|
-TargetPath |
Path to target codebase | Required |
-DryRun |
Preview only, no changes | False |
-NoBackup |
Skip creating backups | False |
-Force |
Skip confirmation prompts | False |
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
| Error | Resolution |
|---|---|
| Path doesn't exist | Provide valid path |
| Not a Git repo | Initialize with git init |
| Permission denied | Check write access |
| Backup failed | Use -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
- Copilot Sync Agent
- Copilot Sync Prompt
- Sync Script
- Project Wizard - For new projects
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?