Changelog

Release history for AI Skills Manager

v1.8.4 March 14, 2026

Fixed

  • Publish workflow now strips the v prefix from the release tag before sending the version to the site repo via repository dispatch (BUG-003)

v1.8.3 March 14, 2026

Added

  • ASCII art banner displayed on CLI startup
  • Automated site repo notification on npm publish — new releases now trigger the marketing site auto-update workflow

Improvements

  • Removed dead code identified during banner implementation

v1.8.2 March 13, 2026

Changed

  • Migrated test suite from Jest to Vitest — replaced Jest with Vitest as the test runner, updated all test files to use Vitest APIs, converted Jest config to vitest.config.ts, and removed Jest dependencies
  • Validation now warns when a skill's allowed-tools field could bypass managed policy ask rules

Fixed

  • CI release notes generation now uses explicit previous tag for correct diff range

Compatibility

  • Verified compatibility with Claude Code v2.1.74 — no ASM code changes required

v1.8.1 March 11, 2026

Added

  • Automated GitHub Actions workflow to monitor the Claude Code changelog for compatibility-impacting changes and create tracking issues
  • YAML linting via eslint-plugin-yml — workflow YAML files are now linted as part of npm run lint and npm run quality

Improvements

  • Reduced false positives in changelog check workflow with enhanced LLM prompt, architectural boundary descriptions, source citation requirements, upgraded analysis model, and codebase grep pre-filter
  • Standardized and tightened permission error test assertions across all API test files
  • Converted inline .catch() assertion patterns to expect().rejects style across test suite

Security

  • Bumped ajv from 6.12.6 to 6.14.0 to resolve moderate-severity ReDoS vulnerability (GHSA-2g4f-4pwh-qvx6)
  • Added minimatch override to resolve high-severity ReDoS vulnerability (GHSA-3ppc-4f35-3m26) in eslint, jest, and archiver dependency trees
  • Resolved 32 transitive vulnerabilities in eslint and jest dependency trees

Compatibility

  • Verified compatibility with Claude Code v2.1.63, v2.1.69, v2.1.70, and v2.1.71 — no ASM code changes required

v1.8.0 February 15, 2026

Breaking Changes

  • Removed agent template type — skills and agents are distinct; agent scaffolding belongs in .claude/agents/
  • Removed --memory and --model scaffold flags (agent-only fields)
  • Removed 5 agent-only validators — validation checks reduced from 25 to 20

Features

  • New --license <text> scaffold flag for agentskills.io spec compliance
  • New --compatibility <text> scaffold flag for compatibility requirements
  • New --metadata <key=value> repeatable scaffold flag for custom metadata
  • Interactive mode now prompts for license, compatibility, and metadata entries

Bug Fixes

  • Fixed compatibility validation inconsistency with whitespace trimming
  • Fixed metadata comma parsing — replaced comma-separated input with multi-entry loop

Improvements

  • Field length corrections: compatibility max increased to 500 chars, argument-hint max increased to 200 chars
  • 100 new end-to-end tests, type guard unit tests for all 15 exported functions

v1.7.0 February 8, 2026

Features

  • Interactive scaffold mode (asm scaffold --interactive) for guided skill creation
  • Agent template type for scaffold command (--template agent)
  • --minimal flag for shorter, production-ready scaffold templates
  • Frontmatter schema v2 with 11 new field validators
  • Nested skill directory discovery (asm list --recursive) for monorepos
  • Claude Code 2.1.x frontmatter field validation
  • Removed gitignore filtering from recursive discovery
  • Docs and plugin system awareness updates

Improvements

  • Depth limit warning for recursive list command
  • depthLimitReached included in recursive JSON output
  • Reorganized skills documentation into separate directories

v1.6.0 January 11, 2026

Features

  • Programmatic Node.js API — use ASM as a module with full TypeScript support
  • Detailed option for API functions for richer CLI output

v1.5.1 January 5, 2026

Features

  • Agent Skills specification compliance

v1.5.0 January 4, 2026

Features

  • Uninstall skill command (asm uninstall)
  • Update skill command (asm update)

v1.4.0 January 1, 2026

Features

  • Install skill command (asm install) with automatic validation and rollback

v1.3.0 December 31, 2025

Features

  • Package skill command (asm package) for creating distributable .skill files

v1.2.0 December 30, 2025

Features

  • Chore task skills for maintenance workflows

v1.1.1 December 29, 2025

Features

  • Validate command (asm validate) for checking skills against the specification

v0.0.1 December 27, 2025

Initial Pre-release

  • Scaffold command (asm scaffold) for creating new skills