Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "skillpack",
"description": "Generate and verify the agent-distribution layer for any OSS project",
"version": "0.13.2",
"version": "0.13.3",
"author": {
"name": "nordicnode"
},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/skillpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
required: false
type: string
# Keep in sync with the latest published release - bump on every tag.
default: '0.13.2'
default: '0.13.3'

jobs:
verify:
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.13.3](https://github.com/nordicnode/skillpack/compare/v0.13.2...v0.13.3) - 2026-08-15

### Added

- Shell/PowerShell languages, nested polyglot detection, Trae target, verify config gate
- *(release)* auto re-pin homebrew sha256 checksums on the v* tag push
- add 8 languages, remove command, and 4 rules-directory targets

### Fixed

- *(ci)* make multi-skill test git-identity-independent and unblock release PR
- honor intent-driven CLI rendering, multi-skill/update artifacts, distribution hardening

### Other

- split verify modules and main.rs into commands/, add release hygiene ([#17](https://github.com/nordicnode/skillpack/pull/17))
- fold per-language CLI probes into each language's spec module
- one module per language in introspect/manifest, per-format modules in generate
- list Qoder, Continue, Augment, and Amazon Q as supported agents

### Added

- Eight new language ecosystems: **Lua** (`*.rockspec`), **Julia**
Expand Down
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skillpack"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
rust-version = "1.85"
authors = ["nordicnode <128633122+nordicnode@users.noreply.github.com>"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ on:

jobs:
verify:
uses: nordicnode/skillpack/.github/workflows/skillpack.yml@v0.13.2
uses: nordicnode/skillpack/.github/workflows/skillpack.yml@v0.13.3
```

For a stricter gate that fails on *any* warning (not just critical failures),
Expand All @@ -215,7 +215,7 @@ Add to your `.pre-commit-config.yaml`:
```yaml
repos:
- repo: https://github.com/nordicnode/skillpack
rev: v0.13.2
rev: v0.13.3
hooks:
- id: skillpack-verify
```
Expand Down
18 changes: 9 additions & 9 deletions homebrew/skillpack.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ class Skillpack < Formula
desc "Generate and verify the agent-distribution layer for any OSS project"
homepage "https://github.com/nordicnode/skillpack"
license "MIT"
version "0.13.2"
version "0.13.3"

on_macos do
if Hardware::CPU.arm?
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.2/skillpack-aarch64-apple-darwin.tar.gz"
sha256 "c76105f574f27b1043e386934db6a7b90ce612e18212c62b8e593c136890d7b7"
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.3/skillpack-aarch64-apple-darwin.tar.gz"
# TODO: re-pin sha256 via scripts/update_homebrew_sha256.py after the release is published
else
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.2/skillpack-x86_64-apple-darwin.tar.gz"
sha256 "921a6439ee54b172e6fd62ab9f8efc5f49a81e854451016c538d01ec23a6126b"
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.3/skillpack-x86_64-apple-darwin.tar.gz"
# TODO: re-pin sha256 via scripts/update_homebrew_sha256.py after the release is published
end
end

on_linux do
if Hardware::CPU.arm?
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.2/skillpack-aarch64-unknown-linux-gnu.tar.gz"
sha256 "e21e739bc638cedc168a96a3cc46dae63536ab423aaba15ff4bcdcd71e1fd680"
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.3/skillpack-aarch64-unknown-linux-gnu.tar.gz"
# TODO: re-pin sha256 via scripts/update_homebrew_sha256.py after the release is published
else
# Static musl build - no glibc dependency.
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.2/skillpack-x86_64-unknown-linux-musl.tar.gz"
sha256 "85b1b0ace70d706758ad980716c2e9facc39d679e583532a83cc556548013760"
url "https://github.com/nordicnode/skillpack/releases/download/v0.13.3/skillpack-x86_64-unknown-linux-musl.tar.gz"
# TODO: re-pin sha256 via scripts/update_homebrew_sha256.py after the release is published
end
end

Expand Down
Loading