Releases: codeaholicguy/ai-devkit
Releases · codeaholicguy/ai-devkit
v0.9.0
What's Changed
Added
- Terminal UI Standardization - Centralized terminal output utility for consistent CLI experience
- Skill Update Command - New
ai-devkit skill updatecommand 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)
- Update All 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 foundskill 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
What's Changed
Added
- Custom Skill Registries - Support
skills.registriesin global~/.ai-devkit/.ai-devkit.jsonfor 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
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
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 registryai-devkit skill list- List all installed skills with sourcesai-devkit skill remove <skill-name>- Remove skill from project
- Features:
- Centralized registry file (
skills/registry.json) with verified repositories - Automatic
.ai-devkit.jsoncreation 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)
- Centralized registry file (
- One-Command Installation:
Full Changelog: https://github.com/codeaholicguy/ai-devkit/compare/[email protected]@0.7.0
v0.6.0
v0.5.0
What's Changed
- Antigravity Support - Added support for Google Antigravity
- New Slash Command -
/simplify-implementationfor analyzing and simplifying existing implementations - Dynamic TOML Generation - Refactored TemplateManager to dynamically generate
.tomlfiles from.mdfiles at runtime
Full Changelog: v0.4.2...v0.5.0
v0.4.2
What's Changed
- Fix Gemini template integration and enhance status indicators by @codeaholicguy in #6
- Fix GitHub Copilot VSCode integration by @codeaholicguy in #7
Full Changelog: v0.4.1...v0.4.2
v0.4.1
Bug fix: cannot copy AGENTS.md file.
v0.4.0
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
EnvironmentIdtoEnvironmentCodethroughout codebase - Removed legacy
Environmenttype union (cursor | claude | both) - Updated config schema to use
environments: EnvironmentCode[] - All environments now use standardized AGENTS.md context files
- Renamed
Technical Improvements
- Testing Infrastructure - Complete test suite implementation
- Architecture - Modular design improvements