hidden-folder-audit-migrate-agent-os-to-Codex
Sub-skill of hidden-folder-audit: Migrate .agent-os to .Codex (+4).
Best use case
hidden-folder-audit-migrate-agent-os-to-Codex is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of hidden-folder-audit: Migrate .agent-os to .Codex (+4).
Teams using hidden-folder-audit-migrate-agent-os-to-Codex should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/migrate-agent-os-to-claude/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How hidden-folder-audit-migrate-agent-os-to-Codex Compares
| Feature / Agent | hidden-folder-audit-migrate-agent-os-to-Codex | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of hidden-folder-audit: Migrate .agent-os to .Codex (+4).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# 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.*Related Skills
llm-wiki-audit-feedback-loop
Durable feedback loop for correcting llm-wiki pages without losing the correction to chat history. Use when (1) a human notices a wiki page is wrong, outdated, or contradicts a source, (2) processing the `audit/` inbox of a domain wiki, (3) reviewing what feedback has been resolved vs deferred, (4) needing to leave a comment on a specific text range that survives line- number drift. Implements the anchored-text audit file pattern from lewislulu/llm-wiki-skill, adapted for workspace-hub's domain-wiki layout under /mnt/local-analysis/llm-wiki/wikis/<domain>/. Extends the 5-op model (compile/ingest/query/lint) from research/llm-wiki with the missing `audit` op. Never silently delete feedback — rejected audits stay archived with rejection rationale.
pre-completion-cleanup-audit
Audit and dispose of session residue (orphan files, scratch dirs, sibling-repo state, locks, trash-stages) BEFORE claiming a task complete. Required gate before any agent says "all done", "task complete", or hands work back to user/orchestrator.
verify-Codex-run-commit-vs-working-tree-before-closing
After a Codex implementation run, verify the claimed file set against the actual commit and working tree before treating the issue as fully complete.
repo-mission-portfolio-audit
Audit the workspace-hub repo portfolio to extract each repo's mission, identify documentation gaps, and prioritize a plan/approval sequence with explicit LLM-wiki weighting for future issue triage.
provider-session-ecosystem-audit-and-exporters
Build and maintain cross-provider session-log audits for Codex, Codex, Hermes, and Gemini, including exporter design, normalization, and behavioral verification.
orcawave-orcaflex-readiness-audit
Audit the real readiness of digitalmodel OrcaWave/OrcaFlex spec-driven workflows by reconciling workspace-hub issues, source/tests, semantic-equivalence boundaries, and wiki synthesis gaps.
read-only-pre-implementation-audit
Systematic cross-check workflow to validate assumptions before TDD coding begins
extract-skills-from-Codex-sessions
Automatically extract reusable skills from Codex session transcripts using LLM analysis and wire them into a Stop hook
interactive-Codex-to-file-based-fallback
Switch from tmux/interactive Codex to file-based Codex -p execution when interactive runs fail with upstream errors or analysis-only stalls, then verify landing from git/GitHub state.
exclude-wiki-Codex-md-from-harness-line-limit-hook
Fix false-positive pre-commit failures where workspace-hub's AGENTS.md line-limit hook blocks edits to auto-generated wiki schema files under knowledge/wikis/.
provider-audit-bootstrap-and-path-classification
Fix provider-session ecosystem audit failures caused by source-checkout imports and over-aggressive symbolic-path classification.
overnight-worktree-Codex-noop-recovery
Recover overnight Codex worktree batches that appear to succeed but produce no artifacts; harden rerun prompts and launch commands.