Skip to content

Commit 7b815f8

Browse files
committed
Update changelog
1 parent 6e4a58a commit 7b815f8

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

packages/cli/src/__tests__/lib/SkillManager.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

6361
describe("SkillManager", () => {
6462
let skillManager: SkillManager;

0 commit comments

Comments
 (0)