Discover, audit, reconcile, modify, and delete GitHub Copilot customizations across both Copilot IDE (VS Code) and Copilot CLI environments. Use this skill whenever the user wants to "list copilot customizations", "find copilot files", "audit copilot setup", "what copilot configs do I have", "reconcile copilot IDE and CLI", "clean up copilot files", "delete copilot agent", "show copilot instructions", "compare copilot configs", "remove unused copilot customizations", "copilot drift", "copilot inventory", "what does copilot see", "manage copilot", "copilot hygiene", or any request involving exploring, inspecting, modifying, or removing existing Copilot customization files. Also triggers when the user mentions conflicts between Copilot IDE and Copilot CLI, cross-readability issues, or wants to understand which files each Copilot variant sees. Does NOT trigger for creating new customizations from scratch (use copilot-customization skill instead).
From copilot-managernpx claudepluginhub thomasrohde/marketplace --plugin copilot-managerThis skill uses the workspace's default tool permissions.
references/copilot-cli-paths.mdreferences/copilot-ide-paths.mdreferences/frontmatter-schema.mdreferences/reconciliation.mdProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Builds 3-5 year financial models for startups with cohort revenue projections, cost structures, cash flow, headcount plans, burn rate, runway, and scenario analysis.
Manage existing GitHub Copilot customizations across both Copilot IDE (VS Code/JetBrains) and Copilot CLI (terminal agent). This skill gives you the ability to discover what exists, find conflicts, reconcile between the two environments, and surgically modify or remove customizations — all using file tools, no external dependencies.
Copilot IDE and Copilot CLI share some paths but have distinct discovery models. Understanding this is key to everything that follows.
Shared paths (both targets read these):
.github/copilot-instructions.md — project-level guidance.github/agents/*.md — custom agents.github/skills/*/SKILL.md — skills.github/hooks/*.json — hooksAGENTS.md — root-level agent definitions~/.copilot/agents/, ~/.copilot/skills/ — user-level artifactsIDE-only features:
.github/prompts/*.prompt.md — prompt templates (CLI has no equivalent).vscode/settings.json, .vscode/mcp.json — VS Code settings & MCP.devcontainer.json — dev container MCP serverschat.*Locations keys)CLAUDE.md and GEMINI.md from repo rootCLI-only features:
~/.copilot/config.json — CLI-specific configuration~/.copilot/copilot-instructions.md — user-level guidance.claude/commands/*.md — command filesCOPILOT_CUSTOM_INSTRUCTIONS_DIRS, COPILOT_HOMEFiles read by both targets at repo root:
AGENTS.md, CLAUDE.md, GEMINI.md, .github/copilot-instructions.mdCLAUDE.local.md is read by IDE only (not by CLI)For complete path listings, read references/copilot-ide-paths.md and
references/copilot-cli-paths.md.
Scan the workspace and user home to build a complete inventory.
Workspace scan — use Glob to check each path family:
# Shared paths
.github/copilot-instructions.md
.github/instructions/*.instructions.md
.github/agents/*.md
.github/skills/*/SKILL.md
.github/hooks/*.json
.github/prompts/*.prompt.md
AGENTS.md
.agents/skills/*/SKILL.md
# IDE-specific paths
.vscode/settings.json
.vscode/mcp.json
.vscode/hooks/*.json
.devcontainer.json
.devcontainer/devcontainer.json
.github/chatmodes/*.chatmode.md
# Shared instruction files (read by both IDE and CLI)
CLAUDE.md
GEMINI.md
# IDE-only instruction files
CLAUDE.local.md
.claude/CLAUDE.md
.claude/rules/*.md
.claude/agents/*.md
.claude/skills/*/SKILL.md
.claude/commands/*.md
.claude/settings.json
.claude/settings.local.json
User-level scan — expand ~ to the actual home directory, then Glob:
# Copilot user tree
~/.copilot/config.json
~/.copilot/copilot-instructions.md
~/.copilot/instructions/*.instructions.md
~/.copilot/agents/*.md
~/.copilot/skills/*/SKILL.md
~/.copilot/mcp-config.json
# Claude user tree (cross-read)
~/.claude/CLAUDE.md
~/.claude/rules/*.md
~/.claude/agents/*.md
~/.claude/skills/*/SKILL.md
~/.claude/commands/*.md
# VS Code profile (Windows: ~/AppData/Roaming/Code/User/, Linux/Mac: ~/.config/Code/User/)
<vscode-profile>/agents/*.md
<vscode-profile>/prompts/*.prompt.md
<vscode-profile>/skills/*/SKILL.md
<vscode-profile>/hooks/*.json
<vscode-profile>/mcp.json
Plugin scan:
~/.copilot/installed-plugins/*/
~/.copilot/state/marketplace-cache/*/
Each plugin folder should contain a plugin.json (check .github/plugin/, .claude-plugin/, then root).
For each discovered file, read it and extract:
name/id field, or filename stem--- delimiters (see references/frontmatter-schema.md)Present results as a table grouped by kind, showing path, target visibility, scope, and name.
After discovery, check for these issue categories:
Name collisions: Two artifacts of the same kind with the same logical name.
Group all discovered artifacts by (kind, lowercase_name). Any group with >1 entry
is a potential collision. Classify as:
Lossy mappings: Artifacts that exist for one target but not the other, where no cross-readability rule covers the gap:
.prompt.md files → only IDE sees them, CLI has no equivalent.claude/commands/*.md → only CLI sees them, IDE has no equivalentCLAUDE.local.md → only IDE reads it, CLI does not.vscode/mcp.json → only IDE sees it; CLI uses ~/.copilot/mcp-config.jsonCross-read awareness: Both CLAUDE.md and GEMINI.md are read by both Copilot
IDE and CLI. CLAUDE.local.md is read only by IDE. Warn if these files contain
tool-specific instructions that don't make sense for all readers.
MCP drift: Compare .vscode/mcp.json (IDE) with ~/.copilot/mcp-config.json
(CLI user). Flag servers that exist in one but not the other. Note: CLI has no
standard repo-level MCP path equivalent to IDE's .vscode/mcp.json.
Orphaned legacy files: Check for .chatmode.md files — these still work but should
be migrated to .md agents.
Settings checks: If .vscode/settings.json exists, look for:
chat.useAgentsMdFile — is AGENTS.md reading enabled?chat.useClaudeMdFile — is CLAUDE.md cross-reading enabled?chat.useNestedAgentsMdFiles — are nested AGENTS.md files enabled?For the full reconciliation checklist, read references/reconciliation.md.
Based on audit findings, propose and execute fixes:
For duplicate agents across targets:
Choose a shared location (.github/agents/) so both targets see it, then remove
the target-specific copy.
For lossy mappings (prompts with no CLI equivalent):
Offer to create a corresponding .claude/commands/<name>.md with equivalent content
adapted for CLI context.
For MCP drift:
Offer to sync server definitions between .vscode/mcp.json (IDE) and
~/.copilot/mcp-config.json (CLI). Note: CLI has no standard repo-level MCP config
path — MCP is configured per-user or via --additional-mcp-config flag at runtime.
For shared instruction files (CLAUDE.md, GEMINI.md read by all Copilots): Review the content for tool-specific instructions. Offer to:
<!-- Note: This file is read by Claude Code, Copilot IDE, and Copilot CLI -->.claude/rules/ (not read by Copilot) and keep
only universal guidance in CLAUDE.mdCLAUDE.local.md: note it is read by Copilot IDE but not CLIFor shadowed artifacts: Explain which version wins (scope precedence: user < repo < directory) and offer to remove the shadowed version or rename it.
To modify an existing customization:
--- lines)Common modifications:
tools: array in frontmatterapplyTo: globdescription: fieldhandoffs: entries to agent frontmatterWhen modifying frontmatter, preserve the --- delimiters and any fields you're not
changing. Be careful with YAML formatting — use the same style (quoted vs unquoted,
flow vs block) as the existing file.
Before deleting, always:
handoffs:, agents:, excludeAgent:mcp-servers:rmFor skill folders (*/SKILL.md), delete the entire skill directory, not just the
SKILL.md file.
When presenting discovery or audit results, use this structure:
## Copilot Customization Inventory
### Guidance (N files)
| File | Target | Scope | Applied To |
|------|--------|-------|------------|
### Agents (N files)
| File | Name | Target | Scope | Tools |
|------|------|--------|-------|-------|
### Skills (N folders)
| Folder | Name | Target | Scope |
|--------|------|--------|-------|
### MCP Servers
| Config File | Target | Servers |
|-------------|--------|---------|
### Issues Found
- [severity] description
Load these on demand — only when you need detailed path listings or schema info:
| File | When to read |
|---|---|
references/copilot-ide-paths.md | Deep-dive into all IDE discovery paths |
references/copilot-cli-paths.md | Deep-dive into all CLI discovery paths |
references/reconciliation.md | Full conflict types, cross-read rules, and checklist |
references/frontmatter-schema.md | Complete frontmatter field reference by artifact type |