agent
Installation
SKILL.md
tdx Agent - LLM Agent Development
Build and manage LLM agents using tdx agent pull/push with YAML/Markdown configuration files.
Key Commands
# Pull project to local files (creates agents/{project}/)
tdx agent pull "My LLM Project"
tdx agent pull "My LLM Project" "Agent Name" # Single agent
# Push local changes to TD
tdx agent push # Push all from current dir
tdx agent push ./agents/my-project/my-agent/ # Push single agent
tdx agent push --dry-run # Preview changes
# Clone project (for staging/production deployment)
tdx agent clone "Source Project" --name "New Project"
tdx agent clone ./agents/my-project/ --name "Prod" --profile production