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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ The evidence behind each vendor fact lives in [docs/dialects.md](docs/dialects.m

## [Unreleased]

## [1.0.3] - 2026-09-02

No change to any diagnostic.

### Fixed

- The Action built its argument list with `[ cond ] && args+=(...)`, which returns
non-zero when the condition is false and would fail the step under `bash -e` if it
were ever the last line. It survived only by accident of ordering; the conditions
are now `if` blocks.

## [1.0.2] - 2026-09-02

No change to any diagnostic.
Expand Down Expand Up @@ -100,7 +111,8 @@ surface, the CLI flags, the Action inputs, and the config schema.
- Output formats: text, JSON, SARIF, and GitHub annotations.
- A zero-config GitHub Action and an installation-free CLI.

[unreleased]: https://github.com/korya/askl/compare/v1.0.2...HEAD
[unreleased]: https://github.com/korya/askl/compare/v1.0.3...HEAD
[1.0.3]: https://github.com/korya/askl/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/korya/askl/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/korya/askl/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/korya/askl/compare/v0.3.0...v1.0.0
Expand Down
14 changes: 11 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ runs:
shell: bash
run: |
args=(--format github)
[ -n "${{ inputs.dialect }}" ] && args+=(--dialect "${{ inputs.dialect }}")
[ "${{ inputs.strict }}" = "true" ] && args+=(--strict)
[ "${{ inputs.pedantic }}" = "true" ] && args+=(--pedantic)
# `[ cond ] && args+=(...)` returns non-zero when the test fails, which
# fails the whole step under `bash -e` if it is ever the last line.
if [ -n "${{ inputs.dialect }}" ]; then
args+=(--dialect "${{ inputs.dialect }}")
fi
if [ "${{ inputs.strict }}" = "true" ]; then
args+=(--strict)
fi
if [ "${{ inputs.pedantic }}" = "true" ]; then
args+=(--pedantic)
fi
node "${{ github.action_path }}/dist/cli.js" "${args[@]}" "${{ inputs.path }}"
2 changes: 1 addition & 1 deletion dist/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15893,7 +15893,7 @@ function reportText(diagnostics, dialectIds) {
}

// src/main.ts
var VERSION = "1.0.2";
var VERSION = "1.0.3";
var HELP = `askl: a deterministic linter for agent skills and plugins

Usage: askl [options] [paths...]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@korya/askl",
"version": "1.0.2",
"version": "1.0.3",
"description": "Deterministic linter for agent skills and agent plugins: agentskills.io, agent-plugins.org, Claude Code, and Codex compliance.",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { reportJson } from "./reporters/json.js";
import { reportSarif } from "./reporters/sarif.js";
import { reportText } from "./reporters/text.js";

const VERSION = "1.0.2";
const VERSION = "1.0.3";

const HELP = `askl: a deterministic linter for agent skills and plugins

Expand Down
Loading