Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
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).

## [12.3.0] - 2026-02-15

### Added
- Hybrid hook manifest metadata support with authoritative `HOOK.json` parsing and `HOOK.md` frontmatter fallback in installer catalog loading.

### Changed
- Hook metadata parsing now normalizes `compatibleTargets` and registration target aliases to improve cross-agent compatibility handling.

### Fixed
- Target installs now skip incompatible hooks deterministically instead of treating all hook metadata as universally installable.
- Restored missing CLI export surface required for installer test/build compatibility in current `dev` baseline.

## [12.2.0] - 2026-02-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.2.0
12.3.0
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intelligent-code-agents",
"version": "12.1.0",
"version": "12.3.0",
"private": true,
"description": "ICA cross-platform interactive installer, CLI, and dashboard",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/catalog/skills.catalog.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"generatedAt": "1970-01-01T00:00:00.000Z",
"source": "multi-source",
"version": "12.2.0",
"version": "12.3.0",
"sources": [
{
"id": "official-skills",
Expand Down
Loading