@tdsoft-tech/aikit 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/dist/cli.js +1293 -818
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +12 -3
- package/dist/index.js +1302 -858
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +1265 -469
- package/dist/mcp-server.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.15] - 2026-01-01
|
|
4
|
+
|
|
5
|
+
### Breaking Changes ⚠️
|
|
6
|
+
- 🏷️ **Command & Skill Prefix Separation** - All OpenCode commands now use prefixes to distinguish type:
|
|
7
|
+
- Commands: `/ak_cm_<name>` (e.g., `/ak_cm_plan`, `/ak_cm_implement`, `/ak_cm_fix`)
|
|
8
|
+
- Skills: `/ak_sk_<name>` (e.g., `/ak_sk_test-driven-development`, `/ak_sk_code-review`)
|
|
9
|
+
- Old simple names (e.g., `/plan`, `/test-driven-development`) are **no longer supported**
|
|
10
|
+
- Users must press `/` in OpenCode to see new prefixed commands
|
|
11
|
+
- All documentation updated with new command names
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Clear visual distinction between commands and skills in OpenCode command picker
|
|
15
|
+
- New naming convention: `ak_cm_*` for commands, `ak_sk_*` for skills
|
|
16
|
+
- Updated all 28 commands and 23 skills with new prefixes
|
|
17
|
+
|
|
18
|
+
### Migration Guide
|
|
19
|
+
1. Run `aikit install` to generate new prefixed commands
|
|
20
|
+
2. Press `/` in OpenCode to see new command structure
|
|
21
|
+
3. Use `/ak_cm_` prefix for all slash commands
|
|
22
|
+
4. Use `/ak_sk_` prefix for direct skill invocation
|
|
23
|
+
|
|
3
24
|
## [0.1.12] - 2024-12-28
|
|
4
25
|
|
|
5
26
|
### Added
|