Skip to Content

Apply

⚡ 4 min read

Create the Persona on this device, then apply it so host apps load the Instruction, Rules, and Skills. Push and pull sync the bundle with Transcodes Cloud; apply still writes files on this machine.


Where to apply

DestinationWho gets the PersonaNotes
This device (Global)Installed Claude, ChatGPT (Codex), and Antigravity — every project and sessionUse when you do not have a project path, or want the Persona everywhere.
A project folderThe apps you select for that folderCursor is project-only — it has no global Persona apply.

Dashboard Apply uses its own confirm modal. CLI deploy always needs --yes after you confirm overwrite; without it the command refuses.

Do not expose .claude, .cursor, or .gemini paths unless you are troubleshooting. Preserve Windows paths such as C:\Users\name\project exactly.


Create and apply

Install the CLI and open the dashboard

# macOS / Linux curl -fsSL https://raw.githubusercontent.com/transcodings/transcodes-guard/prod/cli/install.sh | bash && transcodes install
# Windows (PowerShell) Set-ExecutionPolicy Bypass -Scope Process -Force; irm https://raw.githubusercontent.com/transcodings/transcodes-guard/prod/cli/install.ps1 | iex; transcodes install

The CLI dashboard opens at http://127.0.0.1:3847. Later, run transcodes to open it again. Use the Persona tab to create, edit, apply, and sync.

Author the three kinds

Ask /transcodes (or $transcodes in Codex) to interview you, or write Markdown and save it:

transcodes persona create developer transcodes persona save --persona developer --kind agent --content-file /tmp/instruction.md transcodes persona save --persona developer --kind rule --name security --content-file /tmp/security.md transcodes persona save --persona developer --kind skill --name review --content-file /tmp/SKILL.md

See Instruction, Rules, and Skills for the expected shapes. persona save stores Markdown as provided.

Deploy

# One project + selected hosts transcodes persona deploy --persona developer --project "/path/to/project" --targets claude,cursor --yes # This device (Global) — Claude, Codex, Antigravity transcodes persona deploy --persona developer --global --yes

Next: AI Agent (MCP) · Persona overview

Last updated on