dsh-agy-link 0.1.2 → 0.1.4

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.4 (2026-08-19)
4
+
5
+ - READMEs: added the author promo block (Chinese first, then English).
6
+ - Housekeeping: internal spec documents are no longer part of the repo.
7
+
8
+ ## 0.1.3 (2026-08-19)
9
+
10
+ - Fixed the client slot registration: the sidebar footer slot entry must
11
+ register under the slot name `sidebar.footer.action` (not `ui-sidebar`),
12
+ matching the ui-sidebar slot table - the wrong name failed plugin loading
13
+ with: slot ui-sidebar is not declared.
14
+
3
15
  ## 0.1.2 (2026-08-18)
4
16
 
5
17
  - Fixed prompt assembly for returning sessions: the last-assistant scan now
package/README.md CHANGED
@@ -8,6 +8,17 @@ driven by the official `agy` CLI.
8
8
 
9
9
  English | [简体中文](README.zh.md)
10
10
 
11
+ ---
12
+
13
+ > 全网统一昵称:**小斯syzs** · B站 [@小斯syzs](https://space.bilibili.com/390211071) · 抖音 · 小红书 · 快手(全网同名)
14
+ >
15
+ > 💬 **小斯syzs 邀请你加入飞书群** —— [点此一键加入](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=553i2f4a-5cc8-487f-95d3-3c4095bec0d9)
16
+
17
+ > Known online as **小斯syzs** — Bilibili [@小斯syzs](https://space.bilibili.com/390211071) · Douyin · Xiaohongshu · Kuaishou (same handle on every platform).
18
+ >
19
+ > 💬 **Join the Feishu community group** hosted by 小斯syzs — [one-click invite](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=553i2f4a-5cc8-487f-95d3-3c4095bec0d9)
20
+
21
+
11
22
  ## What you get
12
23
 
13
24
  - **A model route, not a proxy** — registers the `antigravity` provider in
package/README.zh.md CHANGED
@@ -6,6 +6,17 @@
6
6
 
7
7
  [English](README.md) | 简体中文
8
8
 
9
+ ---
10
+
11
+ > 全网统一昵称:**小斯syzs** · B站 [@小斯syzs](https://space.bilibili.com/390211071) · 抖音 · 小红书 · 快手(全网同名)
12
+ >
13
+ > 💬 **小斯syzs 邀请你加入飞书群** —— [点此一键加入](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=553i2f4a-5cc8-487f-95d3-3c4095bec0d9)
14
+
15
+ > Known online as **小斯syzs** — Bilibili [@小斯syzs](https://space.bilibili.com/390211071) · Douyin · Xiaohongshu · Kuaishou (same handle on every platform).
16
+ >
17
+ > 💬 **Join the Feishu community group** hosted by 小斯syzs — [one-click invite](https://applink.feishu.cn/client/chat/chatter/add_by_link?link_token=553i2f4a-5cc8-487f-95d3-3c4095bec0d9)
18
+
19
+
9
20
  ## 你能得到什么
10
21
 
11
22
  - **模型路由而非代理** —— 在 DSH 模型配置里注册 `antigravity` 提供方,
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: "ui-sidebar",
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.2",
3
+ "version": "0.1.4",
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",