Skip to content

Releases: codeaholicguy/ai-devkit

v0.9.0

28 Jan 20:11

Choose a tag to compare

What's Changed

Added

  • Terminal UI Standardization - Centralized terminal output utility for consistent CLI experience
  • Skill Update Command - New ai-devkit skill update command for updating skills from registries
    • Update All Skills: ai-devkit skill update - Updates all cached skill registries via git pull
    • Update Specific Registry: ai-devkit skill update <registry-id> - Updates only the specified registry (e.g., ai-devkit skill update anthropic/skills)

Changed

  • Module Resolution - Updated TypeScript configuration from Node16 to CommonJS for better compatibility

Fixed

  • Graceful Exit - Commands now properly exit with code 0 on successful completion
    • skill list - Added explicit process.exit(0) when no skills found
    • skill remove - Added explicit process.exit(0) after successful removal

Full Changelog: https://github.com/codeaholicguy/ai-devkit/compare/[email protected]@0.9.0

v0.8.1

26 Jan 20:46

Choose a tag to compare

What's Changed

Added

  • Custom Skill Registries - Support skills.registries in global ~/.ai-devkit/.ai-devkit.json for adding multiple registries that merge with defaults and override on conflicts.
  • Global Registry Reader - New global config reader for resolving custom registries in skill commands.

Changed

  • Skill Registry Resolution - Skill commands now merge default and custom registries, with offline cache fallback when a registry URL is not configured.

Full Changelog: https://github.com/codeaholicguy/ai-devkit/compare/[email protected]@0.8.1

v0.8.0

26 Jan 11:27

Choose a tag to compare

What's Changed

Added

  • Memory Skill Template - New skill for integrating memory service capabilities into agent workflows
  • Comprehensive Documentation - Added extensive documentation pages for:
    • Getting Started guide
    • Supported AI agents reference
    • Development with AI DevKit
    • Debug workflows
    • Understanding existing code
    • Memory service usage
    • Skills management
  • Updated base template for all environments

Full Changelog: https://github.com/codeaholicguy/ai-devkit/compare/[email protected]@0.8.0

v0.7.0

25 Jan 16:16

Choose a tag to compare

What's Changed

Added

  • Skill Management - Centralized registry for managing Agent Skills across projects
    • One-Command Installation: ai-devkit skill add <registry>/<repo> <skill-name>
    • Local Cache: Skills stored in ~/.ai-devkit/skills/ to avoid duplication
    • Symlink-First Strategy: Symlinks with automatic copy fallback for Windows
    • Multi-Environment Support: Works with Cursor, Claude Code, Codex, OpenCode, and Antigravity
    • CLI Commands:
      • ai-devkit skill add <registry>/<repo> <skill-name> - Install a skill from registry
      • ai-devkit skill list - List all installed skills with sources
      • ai-devkit skill remove <skill-name> - Remove skill from project
    • Features:
      • Centralized registry file (skills/registry.json) with verified repositories
      • Automatic .ai-devkit.json creation if missing
      • Environment filtering (only shows/uses environments with skill support)
      • Git repository caching for efficient reuse across projects
      • Validation for registry IDs and skill names (follows Agent Skills spec)

Full Changelog: https://github.com/codeaholicguy/ai-devkit/compare/[email protected]@0.7.0

v0.6.0

22 Jan 15:28

Choose a tag to compare

v0.5.0

15 Jan 18:40

Choose a tag to compare

What's Changed

  • Antigravity Support - Added support for Google Antigravity
  • New Slash Command - /simplify-implementation for analyzing and simplifying existing implementations
  • Dynamic TOML Generation - Refactored TemplateManager to dynamically generate .toml files from .md files at runtime

Full Changelog: v0.4.2...v0.5.0

v0.4.2

05 Nov 15:08

Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.4.2

v0.4.1

31 Oct 14:35

Choose a tag to compare

Bug fix: cannot copy AGENTS.md file.

v0.4.0

31 Oct 13:55

Choose a tag to compare

Added

  • Multi-Environment Setup - Support for 10 AI development environments
    • Interactive environment selection with multi-choice prompts
    • Support for Cursor, Claude Code, GitHub Copilot, Google Gemini, OpenAI Codex, Windsurf, KiloCode, AMP, OpenCode, and Roo Code
    • Unified template structure with AGENTS.md files for all environments
    • Environment-specific command directories and configuration files
    • Override protection with confirmation prompts for existing environments
    • Config persistence storing selected environments array

Changed

  • Breaking Changes - Removed legacy single-environment support for cleaner API
    • Renamed EnvironmentId to EnvironmentCode throughout codebase
    • Removed legacy Environment type union (cursor | claude | both)
    • Updated config schema to use environments: EnvironmentCode[]
    • All environments now use standardized AGENTS.md context files

Technical Improvements

  • Testing Infrastructure - Complete test suite implementation
  • Architecture - Modular design improvements