v1.6.3 - Recursive Agent Translation
What's New
Recursive Agent Translation
Batch translate entire directories of agents with the new --recursive and --source flags:
# Translate from a custom source directory
skillkit agent translate --source ./my-skills --to cursor
# Recursively translate nested agent directories
skillkit agent translate --source ./kubernetes-skills --to cursor --recursive
# Preview changes without writing
skillkit agent translate --source ./skills --to codex --recursive --dry-runThis solves the issue where Claude Code skills organized as folders with multiple subfolders (e.g., kubernetes-skills/k8s-autoscaling/, kubernetes-skills/k8s-security/) couldn't be batch-translated to other agent formats.
Changes
- New CLI options:
--recursive(-r) and--source(-s) flags forskillkit agent translate - New core functions:
discoverAgentsRecursive()anddiscoverAgentsFromPath() - 13 new tests for recursive agent discovery
- Updated README with agent commands documentation
Installation
npm install -g skillkit@1.6.3Full Changelog: v1.6.2...v1.6.3