Skills
Skills are pre-built instruction sets for performing complex, multi-step Tuist tasks. Instead of manually guiding an agent through a migration or setup process, you install a skill and let the agent handle it.
Available skills
Migrate to Tuist
Migrates existing Xcode projects to Tuist-generated workspaces with build and run validation, external dependency mapping, and migration checklists.
SKILL_NAME=tuist-migrate
SKILL_URL=https://tuist.dev/skills/migrate/SKILL.mdInstallation
Each coding agent has its own mechanism for loading skills. Below you will find instructions for the most popular ones. The examples use $SKILL_NAME and $SKILL_URL variables listed alongside each skill above.
Claude Code
Claude Code loads skills from SKILL.md files inside a skills/ directory.
mkdir -p .claude/skills/$SKILL_NAME
curl -o .claude/skills/$SKILL_NAME/SKILL.md $SKILL_URLmkdir -p ~/.claude/skills/$SKILL_NAME
curl -o ~/.claude/skills/$SKILL_NAME/SKILL.md $SKILL_URLOnce installed, invoke it with /$SKILL_NAME inside a Claude Code session.
Codex
Codex loads skills from SKILL.md files inside a skills/ directory. It searches the repository root, current working directory, and parent folders.
mkdir -p .codex/skills/$SKILL_NAME
curl -o .codex/skills/$SKILL_NAME/SKILL.md $SKILL_URLmkdir -p ~/.codex/skills/$SKILL_NAME
curl -o ~/.codex/skills/$SKILL_NAME/SKILL.md $SKILL_URLAmp
Amp supports skills through SKILL.md files in a skills/ directory, and also reads AGENTS.md for general instructions.
mkdir -p .agents/skills/$SKILL_NAME
curl -o .agents/skills/$SKILL_NAME/SKILL.md $SKILL_URLmkdir -p ~/.config/agents/skills/$SKILL_NAME
curl -o ~/.config/agents/skills/$SKILL_NAME/SKILL.md $SKILL_URLOpenCode
OpenCode loads skills from SKILL.md files inside a skills/ directory.
mkdir -p .opencode/skills/$SKILL_NAME
curl -o .opencode/skills/$SKILL_NAME/SKILL.md $SKILL_URLmkdir -p ~/.config/opencode/skills/$SKILL_NAME
curl -o ~/.config/opencode/skills/$SKILL_NAME/SKILL.md $SKILL_URL