From d6611f8f69883976d31ce4ea0ef47aff78c30671 Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Mon, 2 Mar 2026 15:50:33 -0700 Subject: [PATCH] chore(cli): prepare release v0.1.13 (#11837) * chore(cli): prepare release v0.1.13 * Update CHANGELOG.md --------- Co-authored-by: Chris Estreich --- apps/cli/CHANGELOG.md | 15 +++++++++++++++ apps/cli/package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index aebfb04c19..af2f3ab6c5 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to the `@roo-code/cli` package will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.13] - 2026-03-02 + +### Added + +- **Skills as Slash Commands**: Skills are now exposed as slash commands, so you can invoke skill workflows directly from command-style input. +- **Skill Fallback Execution**: When a slash command does not match a command file but matches a skill slug, the CLI can resolve and execute that skill path. + +### Changed + +- **Slash Command Resolution Priority**: Command precedence is preserved, with skill fallback only used when no matching slash command is found. + +### Tests + +- Added and updated tests for slash command + skill fallback behavior, including command precedence and duplicate skill-slug handling. + ## [0.1.12] - 2026-03-02 ### Fixed diff --git a/apps/cli/package.json b/apps/cli/package.json index 85b884f8a8..a06b858dbd 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "@roo-code/cli", - "version": "0.1.12", + "version": "0.1.13", "description": "Roo Code CLI - Run the Roo Code agent from the command line", "private": true, "type": "module",