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
16 changes: 16 additions & 0 deletions src/skillfs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.3] - 2026-07-10

### Added
- Hermes workspace layout compatibility. SkillFS now recognizes Hermes hub
markers, preserves management paths, and exposes nested
`category/skill/SKILL.md` skills alongside top-level skills.
- Nested Hermes skills now support activation state, installer lifecycle
writes, notifications, audit attribution, fallback snapshots, and hidden
visibility.

### Fixed
- `skillfs validate --json` now includes source paths for warning and error
entries so automation can locate invalid skills.
- FUSE teardown now bounds failed unmount cleanup and prevents leaked test
mounts from affecting later sessions.

## [0.3.2] - 2026-07-03

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions src/skillfs/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/skillfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.3.2"
version = "0.3.3"
edition = "2024"
rust-version = "1.86"
license = "Apache-2.0"
Expand Down
5 changes: 4 additions & 1 deletion src/skillfs/skillfs.spec.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%define anolis_release 2
%define anolis_release 1
%global rustflags -C opt-level=3 -C codegen-units=1
%global debug_package %{nil}
%global _localbindir /usr/local/bin
Expand Down Expand Up @@ -62,6 +62,9 @@ cp -rp docs/skills/skillfs-mount/. \
%{_datadir}/anolisa/runtime/skills/skillfs/

%changelog
* Fri Jul 10 2026 Kongche <kongche.jbw@alibaba-inc.com> - 0.3.3-1
- Release Hermes workspace layout compatibility and SkillFS reliability fixes.

* Fri Jul 03 2026 Kongche <kongche.jbw@alibaba-inc.com> - 0.3.2-1
- Fix SLS ops logging and runtime metric delta reporting.

Expand Down
Loading