name: "tx-sync-data" description: "Export, import, migrate, hydrate, and compact task state and sync artifacts. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Export, import, migrate, hydrate, and compact task state and sync artifacts."
tx Sync And Data
Use when data needs to move between SQLite, JSONL, Codex, Claude, or migration layers.
Quick Start
tx sync exporttx sync statustx sync compact
Included Commands
tx compact: Compact completed tasks and export learningstx history: View compaction historytx migrate: Manage database schema migrationstx migrate status: Show migration statustx sync: Sync, data management, and migrationstx sync auto: Manage automatic synctx sync claude: Write tasks to Claude Code team directorytx sync codex: Write tasks to Codex (coming soon)tx sync compact: Compact completed tasks and export learningstx sync export: Export stream eventstx sync history: View compaction historytx sync hydrate: Full rebuild from stream event logstx sync import: Import from stream eventstx sync migrate: Show database migration statustx sync status: Show sync statustx sync stream: Show stream identity and sequence state
Full Help
Read references/commands.md for the full generated CLI help text for this skill's commands.
Search And Shell Fixes
When working in Codex, prefer rg -n <pattern> <path> and rg --files <path> over broad grep -r or fragile find pipelines.
If a shell/search command fails because of malformed flags, truncated paths, or broken quotes:
- rerun it as a smaller
rgcommand with an explicit directory - avoid partial paths like
node_modulor unterminated quotes - replace
grep -rwithrg -nunlessrgis unavailable - replace broad
findprobes withrg --fileswhen you are really locating source files