@softspark/ai-toolkit 1.3.12 → 1.3.13
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 +8 -0
- package/README.md +1 -1
- package/bin/ai-toolkit.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## v1.3.13 — CLI --version flag (2026-04-08)
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **`--version` / `-v` / `version` CLI flag** — prints clean semver string and exits 0 (previously fell through to "Unknown command" with exit 1).
|
|
14
|
+
- **3 new CLI tests** for `--version`, `-v`, and `version` subcommand.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
10
18
|
## v1.3.12 — Cross-platform notifications + version check fix (2026-04-08)
|
|
11
19
|
|
|
12
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](app/skills/)
|
|
8
8
|
[](app/agents/)
|
|
9
|
-
[](tests/)
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
package/bin/ai-toolkit.js
CHANGED
|
@@ -440,6 +440,8 @@ const [,, command, ...args] = process.argv;
|
|
|
440
440
|
|
|
441
441
|
if (!command || command === 'help' || command === '--help' || command === '-h') {
|
|
442
442
|
showHelp();
|
|
443
|
+
} else if (command === '--version' || command === '-v' || command === 'version') {
|
|
444
|
+
console.log(require('../package.json').version);
|
|
443
445
|
} else if (SPECIAL_HANDLERS[command]) {
|
|
444
446
|
SPECIAL_HANDLERS[command](args);
|
|
445
447
|
} else if (SCRIPT_COMMANDS[command]) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softspark/ai-toolkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"description": "Professional-grade AI coding toolkit: 90 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment), machine-enforced safety constitution, persona presets, skill security auditor, expanded lifecycle hooks, 11 plugin packs, and benchmark tooling.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|