@goodandready/dsh-clinebot 0.3.13 → 0.3.14

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
@@ -5,6 +5,17 @@ All notable changes to `@goodandready/dsh-clinebot` will be documented in this f
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.14] - 2026-09-19
9
+
10
+ ### Fixed
11
+ - **The row-seat key is registered under both spellings.** The core keys a row's
12
+ configuration page as `` `${bundle.name}#${rowId}` `` (`rowConfigKey` in
13
+ `dsh-client-ui-plugin-manager`), and `bundle.name` may be either the package name
14
+ (`@goodandready/dsh-clinebot`) or the short bundle name (`dsh-clinebot`) depending
15
+ on how the manager builds its package view. Both keys are now registered for
16
+ `plugins.row.config`, so the row's configure control appears whichever spelling the
17
+ core compares against; the unused entry is inert.
18
+
8
19
  ## [0.3.13] - 2026-09-19
9
20
 
10
21
  ### Fixed
package/lib/client.js CHANGED
@@ -1442,17 +1442,22 @@ function apply(ctx) {
1442
1442
  }
1443
1443
 
1444
1444
  // Row seat first (the seat the current core renders), legacy seat after it.
1445
- registerSlotWhenReady('plugins.row.config', () =>
1446
- ctx.slots.register(
1447
- {
1448
- name: 'plugins.row.config',
1449
- key: ROW_CONFIG_KEY,
1450
- locale: NS,
1451
- inject: () => ({ ctx }),
1452
- },
1453
- (props) => React.createElement(ErrorBoundary, null, React.createElement(PluginCard, { ...props, ctx: (props && props.ctx) || ctx }))
1445
+ // The core keys the seat as `<bundle name>#<row id>`; `bundle.name` may be the
1446
+ // package name or the short bundle name depending on the manager's view, so both
1447
+ // spellings are registered — the unused one is inert.
1448
+ for (const key of [ROW_CONFIG_KEY, ROW_ID + '#' + ROW_ID]) {
1449
+ registerSlotWhenReady('plugins.row.config', () =>
1450
+ ctx.slots.register(
1451
+ {
1452
+ name: 'plugins.row.config',
1453
+ key,
1454
+ locale: NS,
1455
+ inject: () => ({ ctx }),
1456
+ },
1457
+ (props) => React.createElement(ErrorBoundary, null, React.createElement(PluginCard, { ...props, ctx: (props && props.ctx) || ctx }))
1458
+ )
1454
1459
  )
1455
- )
1460
+ }
1456
1461
 
1457
1462
  registerSlotWhenReady('settings.plugin.item', () =>
1458
1463
  ctx.slots.register(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-clinebot",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "DeepSeek Harness companion for ClineBot / ClinePass: dynamic subscription models sync, quota exhaustion warnings, session metrics, dedicated settings page, live usage limits, and /cline slash-command.",
5
5
  "license": "MIT",
6
6
  "type": "module",