soldnacloud 0.7.5 → 0.7.6

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.
@@ -11,6 +11,50 @@ description: >
11
11
 
12
12
  # DNAcloud Skill
13
13
 
14
+ ## 前置环境检查(触发后第一步,必须通过)
15
+
16
+ 在执行任何买家/卖家流程之前,先检查以下两项:
17
+
18
+ ### 1. DNAcloud CLI 是否已安装
19
+
20
+ 运行 `which dnacloud-sol` 或 `dnacloud-sol --version`:
21
+
22
+ - **已安装** → 继续下一项检查
23
+ - **未安装** → 告知用户并引导安装:
24
+
25
+ ```
26
+ DNAcloud CLI 尚未安装。请在终端运行:
27
+
28
+ npm install -g soldnacloud
29
+
30
+ 安装完成后,在当前项目目录运行:
31
+
32
+ dnacloud-sol init
33
+
34
+ 然后重启 Claude Code,再重试你的请求。
35
+ ```
36
+
37
+ ### 2. Marketplace MCP 是否已加载
38
+
39
+ 检查当前会话中 `mcp__dnacloud-marketplace__search` 工具是否可用:
40
+
41
+ - **可用** → 继续执行买家/卖家流程
42
+ - **不可用** → 说明 `dnacloud-sol init` 尚未在本项目执行,引导用户:
43
+
44
+ ```
45
+ DNAcloud Marketplace MCP 尚未配置。请在当前项目目录终端中运行:
46
+
47
+ dnacloud-sol init
48
+
49
+ 这会自动将 dnacloud-marketplace MCP server 写入 .mcp.json。
50
+ 完成后重启 Claude Code,再重试你的请求。
51
+ ```
52
+
53
+ > 注意:CLI 包名为 `soldnacloud`(npm),安装后提供 `dnacloud-sol` 命令。
54
+ > 不要引导用户安装 `dnacloud`(那是另一个不相关的包)。
55
+
56
+ ---
57
+
14
58
  ## 触发场景(买家)
15
59
 
16
60
  - 用户说"我要一个交易大师"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soldnacloud",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "type": "module",
5
5
  "description": "DNAcloud CLI — install expert DNA capabilities into Claude Code",
6
6
  "bin": {