Sub-skill of repo-cleanup: Conflict Resolution Patterns (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill conflict-resolution-patterns --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Conflict Resolution Patterns?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-conflict-resolution-patterns)More formats (shields.io, HTML) on the badges page.
---
name: repo-cleanup-conflict-resolution-patterns
description: 'Sub-skill of repo-cleanup: Conflict Resolution Patterns (+2).'
version: 2.2.0
category: _internal
type: reference
scripts_exempt: true
---
# Conflict Resolution Patterns (+2)
## Conflict Resolution Patterns
| Conflict Type | Strategy | Example |
|--------------|----------|---------|
| Same filename | Rename with suffix | `README.md` -> `README-legacy.md` |
| Similar content | Use subdirectory | `commands/` -> `commands/legacy-scripts/` |
| Unique content | Preserve in dedicated folder | Keep `implementation-history/` |
| Clear duplicates | Delete after verification | Remove exact copies |
## Merge Commands
```bash
# Rename conflicting files before merge
mv .agent-os/README.md .agent-os/README-legacy.md
# Create legacy subdirectory for scripts
mkdir -p .Codex/commands/legacy-scripts
git mv .agent-os/commands/* .Codex/commands/legacy-scripts/
# Preserve unique historical content
git mv .agent-os/implementation-history/ .Codex/docs/implementation-history/
# Find and remove exact duplicates (verify first)
md5sum .Codex/agents/*.md .agent-os/agents/*.md | sort | uniq -w32 -d
```
## Pre-Merge Checklist
- [ ] Compare file lists between source and target
- [ ] Identify naming conflicts
- [ ] Decide rename vs. subdirectory strategy
- [ ] Document unique content to preserve
- [ ] Verify duplicates before deletion
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!