@weibaohui/experts-management 0.1.0 → 0.1.2
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/client/bundle.js +1 -1
- package/client/index.js +1 -1
- package/package.json +1 -1
package/client/bundle.js
CHANGED
|
@@ -491,7 +491,7 @@ window.__ModuleLoader__.load({
|
|
|
491
491
|
h('button', { className: 'exp-btn exp-modal-close', onClick: onClose }, t('close'))),
|
|
492
492
|
error !== '' ? h('div', { className: 'exp-empty' }, `${t('loadFailed')}: ${error}`) : null,
|
|
493
493
|
detail === null && error === '' ? h('div', { className: 'exp-empty' }, '…') : null,
|
|
494
|
-
detail !== null ? h(
|
|
494
|
+
detail !== null ? h('div', { style: { display: 'contents' } },
|
|
495
495
|
h('div', { className: 'exp-form-row' },
|
|
496
496
|
(detail.descZh || detail.descEn) ? h('div', { className: 'exp-desc', style: { WebkitLineClamp: 'unset' } }, detail.descZh || detail.descEn) : null),
|
|
497
497
|
h('div', { className: 'exp-status-line' },
|
package/client/index.js
CHANGED
|
@@ -481,7 +481,7 @@ function DetailModal({ name, source, t, onClose, onInstalled, onDeleted }) {
|
|
|
481
481
|
h('button', { className: 'exp-btn exp-modal-close', onClick: onClose }, t('close'))),
|
|
482
482
|
error !== '' ? h('div', { className: 'exp-empty' }, `${t('loadFailed')}: ${error}`) : null,
|
|
483
483
|
detail === null && error === '' ? h('div', { className: 'exp-empty' }, '…') : null,
|
|
484
|
-
detail !== null ? h(
|
|
484
|
+
detail !== null ? h('div', { style: { display: 'contents' } },
|
|
485
485
|
h('div', { className: 'exp-form-row' },
|
|
486
486
|
(detail.descZh || detail.descEn) ? h('div', { className: 'exp-desc', style: { WebkitLineClamp: 'unset' } }, detail.descZh || detail.descEn) : null),
|
|
487
487
|
h('div', { className: 'exp-status-line' },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weibaohui/experts-management",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "dsh 插件 · 专家市场:管理 ntd 格式的专家与专家团队(plugin.json + Agent MD + 技能集),浏览/安装 50+ 内置专家市场;每个专家注册为「仅用户可调用」的技能,在对话输入框用 /expert-名称 即可以该专家的身份执行任务(宿主确定性注入角色定义与技能清单,不占用模型目录 token)。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|