Sub-skill of hidden-folder-audit: Migrate .agent-os to .Codex (+4).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill migrate-agent-os-to-claude --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Migrate Agent Os To Claude?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-migrate-agent-os-to-claude)More formats (shields.io, HTML) on the badges page.
---
name: hidden-folder-audit-migrate-agent-os-to-Codex
description: 'Sub-skill of hidden-folder-audit: Migrate .agent-os to .Codex (+4).'
version: 1.2.0
category: _internal
type: reference
scripts_exempt: true
---
# Migrate .agent-os to .Codex (+4)
## Migrate .agent-os to .Codex
```bash
# Backup first
cp -r .agent-os .agent-os.backup
# Migrate agents
mkdir -p .Codex/agents
cp -r .agent-os/agents/* .Codex/agents/ 2>/dev/null
# Migrate standards (if applicable)
mkdir -p .Codex/standards
*See sub-skills for full details.*
## Migrate .ai to .Codex
```bash
# Backup first
cp -r .ai .ai.backup
# Migrate prompts to skills
mkdir -p .Codex/skills/prompts
cp -r .ai/prompts/* .Codex/skills/prompts/ 2>/dev/null
# Migrate config
cp .ai/config.* .Codex/ 2>/dev/null
# Cleanup
git rm -r --cached .ai/ 2>/dev/null
rm -rf .ai
```
## Clean Dead Symlinks
```bash
# Find broken symlinks
find . -maxdepth 2 -type l ! -exec test -e {} \; -print
# Remove broken symlinks
find . -maxdepth 2 -type l ! -exec test -e {} \; -delete
# Remove specific dead symlink folder
rm -rf .agent-runtime
```
## Consolidate Runtime Directories
```bash
# Create standard runtime directory
# Migrate coordination data
# Remove old directories
rm -rf .coordination .session
```
## Update .gitignore
Add these patterns after consolidation:
```gitignore
# Runtime and state (not tracked)
.coordination/
.session/
# Legacy folders (prevent re-creation)
.agent-os/
.ai/
*See sub-skills for full details.*
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!