@elyracode/stack-silt 0.9.16 → 0.9.18
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 +7 -0
- package/extensions/index.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.18] - 2026-07-18
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- `/silt:info` command: fixed a handler signature/argument-order bug that made the command throw instead of showing the notification
|
|
7
|
+
|
|
8
|
+
## [0.9.17] - 2026-07-18
|
|
9
|
+
|
|
3
10
|
## [0.9.16] - 2026-07-15
|
|
4
11
|
|
|
5
12
|
## [0.9.15] - 2026-07-12
|
package/extensions/index.ts
CHANGED
|
@@ -3,8 +3,8 @@ import type { ExtensionAPI } from "@elyracode/coding-agent";
|
|
|
3
3
|
export default function (elyra: ExtensionAPI) {
|
|
4
4
|
elyra.registerCommand("silt:info", {
|
|
5
5
|
description: "Show detected SILT stack information",
|
|
6
|
-
handler: async (ctx) => {
|
|
7
|
-
ctx.ui.notify("
|
|
6
|
+
handler: async (_args, ctx) => {
|
|
7
|
+
ctx.ui.notify("SILT stack profile loaded. Skills: silt-stack. Use /skill:silt-stack for full reference.", "info");
|
|
8
8
|
},
|
|
9
9
|
});
|
|
10
10
|
}
|