yingmi-skill-cli 0.0.8 → 0.0.9

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/README.md CHANGED
@@ -133,7 +133,7 @@ yingmi-skill-cli remote-skill exec --script-file ./scripts/run.sh
133
133
  - `enter <skillName>`:会先基于当前可见 skill 列表做校验;通过后再调用远端 `/api/get-skill-by-name` 获取压缩包地址,下载并解压到 `~/.yingmi-skill-cli/skills/<skillName>` 后输出目录树,并把当前 skill 上下文写入本地配置
134
134
  - `exec --script/--script-file`:只能在最近一次成功 `enter` 后使用,建议先执行 `cat SKILL.md` 理解 skill 约定,再在当前 skill 目录执行入口脚本;执行结果输出状态、退出码、stdout 和 stderr,不额外回传本地工作目录路径
135
135
  - `remote-skill` 适合基金分析、组合诊断、财富规划、市场简报等场景任务;skill 内部可以继续调用多个 `mcp`
136
- - 远端服务地址默认读取 `https://stargate-staging.yingmi-inc.com/`,也可在 `~/.yingmi-skill-cli/config.json` 里手工设置 `stargateBaseUrl`
136
+
137
137
 
138
138
  ### `help`
139
139
 
package/bin/index.js CHANGED
@@ -11,7 +11,7 @@ var crypto = require('crypto');
11
11
  var child_process = require('child_process');
12
12
 
13
13
  var name = "yingmi-skill-cli";
14
- var version = "0.0.8";
14
+ var version = "0.0.9";
15
15
 
16
16
  function fail(message) {
17
17
  console.error(message);
@@ -85,7 +85,7 @@ const CONFIG_DIR = path.join(os.homedir(), ".yingmi-skill-cli");
85
85
  const CONFIG_FILE = path.join(CONFIG_DIR, "config.json");
86
86
  const SKILLS_DIR = path.join(CONFIG_DIR, "skills");
87
87
  const DEFAULT_QIEMAN_BASE_URL = "https://qieman.com";
88
- const DEFAULT_STARGATE_BASE_URL = "https://stargate-staging.yingmi-inc.com/";
88
+ const DEFAULT_STARGATE_BASE_URL = "https://stargate.yingmi.com";
89
89
  function ensureConfigDir() {
90
90
  fs.mkdirSync(CONFIG_DIR, { recursive: true });
91
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yingmi-skill-cli",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "author": "yingmi",
5
5
  "license": "MIT",
6
6
  "files": [