dsh-agy-link 0.1.2 → 0.1.3
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/dist/client.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.3 (2026-08-19)
|
|
4
|
+
|
|
5
|
+
- Fixed the client slot registration: the sidebar footer slot entry must
|
|
6
|
+
register under the slot name `sidebar.footer.action` (not `ui-sidebar`),
|
|
7
|
+
matching the ui-sidebar slot table - the wrong name failed plugin loading
|
|
8
|
+
with: slot ui-sidebar is not declared.
|
|
9
|
+
|
|
3
10
|
## 0.1.2 (2026-08-18)
|
|
4
11
|
|
|
5
12
|
- Fixed prompt assembly for returning sessions: the last-assistant scan now
|
package/dist/client.js
CHANGED
|
@@ -246,8 +246,8 @@ window.__ModuleLoader__.load({
|
|
|
246
246
|
};
|
|
247
247
|
ctx.slots.inject("sidebar.footer.action", () => {
|
|
248
248
|
return ctx.slots.register({
|
|
249
|
-
name: "
|
|
250
|
-
id: "agy-link",
|
|
249
|
+
name: "sidebar.footer.action",
|
|
250
|
+
id: "agy-link-entry",
|
|
251
251
|
order: 30,
|
|
252
252
|
label: "Antigravity"
|
|
253
253
|
}, AgyPanel);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-agy-link",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Google Antigravity (agy CLI) models for DeepSeek Harness — stream Gemini/Claude/GPT-OSS subscriptions into DSH with thinking, tool activity, token usage and in-GUI Google OAuth login.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|