Skip to content

v1.6.3 - Recursive Agent Translation

Choose a tag to compare

@rohitg00 rohitg00 released this 25 Jan 12:08
· 266 commits to main since this release

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-run

This 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 for skillkit agent translate
  • New core functions: discoverAgentsRecursive() and discoverAgentsFromPath()
  • 13 new tests for recursive agent discovery
  • Updated README with agent commands documentation

Installation

npm install -g skillkit@1.6.3

Full Changelog: v1.6.2...v1.6.3