File tree Expand file tree Collapse file tree
packages/cli/src/__tests__/lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ ### Added
11+
12+ - ** Skill Search** - New ` skill find ` command to discover skills across all registries
13+ - ** Keyword Search** : Find skills by name or description (e.g., ` ai-devkit skill find typescript ` )
14+
15+ ### Changed
16+
17+ - ** Native Fetch** - Migrated all network calls from ` https ` to native ` fetch ` API for better performance and cleaner code
18+
819## [ 0.10.0] - 2026-02-01
920
1021### Added
Original file line number Diff line number Diff line change @@ -56,9 +56,7 @@ function mockFetch(response: any) {
5656 } ) ;
5757}
5858
59- function mockFetchError ( error : Error ) {
60- global . fetch = jest . fn ( ) . mockRejectedValue ( error ) ;
61- }
59+
6260
6361describe ( "SkillManager" , ( ) => {
6462 let skillManager : SkillManager ;
You can’t perform that action at this time.
0 commit comments