Skip to content

Releases: netclaw-dev/skill-server

SkillServer 0.3.0

05 May 02:02
Immutable release. Only release title and notes can be modified.
048e256

Choose a tag to compare

0.3.0 May 5th 2026

New Features

  • Add skillserver CLI tool for publishing and managing skills from the command line (#56)
    • Commands: publish, publish-all, delete, list, versions, verify, config, api-key
    • Distributed as a .NET global tool (dotnet tool install -g Netclaw.SkillServer.Cli) and standalone trimmed binaries for linux-x64, linux-arm64, osx-arm64, and win-x64
    • Install scripts for Linux/macOS (install-skillserver.sh) and Windows (install-skillserver.ps1)
  • Add UploadSkillWithResourcesAsync and UploadSkillIfNotExistsAsync to Netclaw.SkillClient for idempotent publishing with resource file support (#56)

Improvements

  • Consolidate publish_nuget.yml and publish_container.yml into a unified release.yml workflow — NuGet packages, CLI binaries, and container images build in parallel with a single coordinated publish stage (#56)
  • Add CLI publish dry-run, trim warning checks, and install script linting to PR validation (#56)

Dependency Updates

  • Bump YamlDotNet from 17.0.1 to 17.1.0 (#55)

SkillServer 0.2.1

29 Apr 03:48
Immutable release. Only release title and notes can be modified.
5851619

Choose a tag to compare

0.2.1 April 29th 2026

New Features

  • Add resource file upload support to POST /skills — skills can now include arbitrary resource files (e.g. references/guide.md, scripts/setup.sh) per the AgentSkills.io spec (#52)

Improvements

  • Resource upload endpoint now supports any subdirectory per the AgentSkills.io spec — previously restricted to references/ only; all subdirectories are now accessible with path traversal protection (#53)
  • Fix stream leak on validation failure in resource upload path (#53)

SkillServer 0.2.0

27 Apr 21:35
Immutable release. Only release title and notes can be modified.
029cad0

Choose a tag to compare

0.2.0 April 27th 2026

Improvements

  • Add lightweight database migration system — schema changes are now applied automatically via numbered SQL migration files on server startup (#44)
  • Enable FTS5 Porter stemmer for skill search — stemmed queries like "closing" now match skills containing "close deal", improving search relevance (#43)

SkillServer 0.1.2

27 Apr 20:55
Immutable release. Only release title and notes can be modified.
3b3d546

Choose a tag to compare

0.1.2 April 27th 2026

Improvements

  • Return 409 Conflict for duplicate skill version uploads instead of 400 Bad Request (#41)
    • Follows NuGet pattern — enables idempotent publish pipelines via --skip-duplicate semantics

SkillServer 0.1.1

24 Apr 21:27
Immutable release. Only release title and notes can be modified.
1be3339

Choose a tag to compare

0.1.1 April 24th 2026

Bug Fixes

  • Fix /health endpoint NotSupportedException from source-generated JSON serializer (#39)

CI/CD

  • Add --skip-duplicate to NuGet push commands to prevent duplicate package errors (#36)

Dependency Updates

  • Bump YamlDotNet from 16.3.0 to 17.0.1 (#38)