rainskills 0.1.36 → 0.1.37

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
@@ -247,7 +247,7 @@ node ~/.rainbond/lib/rainskills/bin/rainskills.js platform install --onboarding-
247
247
 
248
248
  Rainskills 会在用户下一次发起业务动作时,由本地运行时立即返回环境查询结果,并另行启动后台任务静默检查更新。更新只跟随 npm `latest` 指向的正式版。当前版本是 RC 或其他预发布版本时不会查询、不会自动升级;npm 上的新 RC 版本也不参与正式版自动升级。
249
249
 
250
- 发现更高的正式版后,后台任务只委托到经过校验的精确版本,例如 `rainskills@0.1.36`,不会执行浮动的 `@latest` 业务代码。新版本原子刷新已经安装的 Rainskills Skills;当前业务继续使用启动时已经加载的版本,最迟从下一条新任务开始使用新版。npm 超时、版本检查失败、安装位置不安全或文件迁移失败时会保留旧版本,且不会阻塞或改变当前操作。
250
+ 发现更高的正式版后,后台任务只委托到经过校验的精确版本,例如 `rainskills@0.1.37`,不会执行浮动的 `@latest` 业务代码。新版本原子刷新已经安装的 Rainskills Skills;当前业务继续使用启动时已经加载的版本,最迟从下一条新任务开始使用新版。npm 超时、版本检查失败、安装位置不安全或文件迁移失败时会保留旧版本,且不会阻塞或改变当前操作。
251
251
 
252
252
  升级只更新 Rainskills 自身,不触发 Rainbond 安装、运行环境选择、登录授权或重新对接,也不会新增 Agent MCP 配置。更新内容仅包括 Skills 和本地 CLI。原始业务操作会继续执行;只有该业务操作本身需要运行环境时,才按既有门禁检查当前连接。可用连接直接复用,401 只重新授权一次,403 立即停止,从未连接过运行环境时才进入环境选择。
253
253
 
package/SKILL.md CHANGED
@@ -54,7 +54,7 @@ Hermes Agent 中必须使用 `terminal` 以 `background=true` 启动授权命令
54
54
 
55
55
  DeepSeek Harness 和 WorkBuddy 也必须保持原命令附着直到退出;如果宿主把长命令转成持久终端或后台任务,只能轮询该原始命令句柄,不得另起 `runtime status` 推测授权结果。WorkBuddy 安装后若当前任务的 Skill 清单尚未刷新,在下一条业务动作前先刷新 Skill 列表或新建任务,不得退回内置 Sites 代替 Rainbond 部署。
56
56
 
57
- Rainskills 只保存一个全局运行环境,不维护环境列表、名称、默认值或环境 ID。使用固定 launcher `node <home>/.rainbond/lib/rainskills/bin/rainskills.js`(运行包版本 `rainskills@0.1.36`):
57
+ Rainskills 只保存一个全局运行环境,不维护环境列表、名称、默认值或环境 ID。使用固定 launcher `node <home>/.rainbond/lib/rainskills/bin/rainskills.js`(运行包版本 `rainskills@0.1.37`):
58
58
 
59
59
  - 状态:执行 `runtime status --json`。
60
60
  - 首次连接:执行 `runtime connect <target> --saas` 或 `runtime connect <target> --rainbond-url <Console origin>`。
@@ -478,7 +478,10 @@ async function executeWithUsageTelemetry(command, config) {
478
478
  const telemetry = tracksUsage ? createBridgeTelemetry(config) : null;
479
479
  if (telemetry) await telemetry.flushPending(3).catch(() => {});
480
480
  try {
481
- const output = await execute(command, config);
481
+ const executionCommand = telemetry?.installationId
482
+ ? { ...command, telemetryInstallationId: telemetry.installationId }
483
+ : command;
484
+ const output = await execute(executionCommand, config);
482
485
  if (telemetry) {
483
486
  const firstUse = telemetry.recordFirstUse("success");
484
487
  const active = telemetry.recordActiveDaily();
@@ -1362,8 +1365,12 @@ async function execute(command, config) {
1362
1365
  arguments: argumentsValue,
1363
1366
  };
1364
1367
  if (operation) {
1365
- params._meta = {
1366
- "com.rainbond/rainskills": buildAuditMetadata(operation, skillBinding),
1368
+ params._meta = { "com.rainbond/rainskills": buildAuditMetadata(operation, skillBinding) };
1369
+ }
1370
+ if (command.telemetryInstallationId) {
1371
+ params._meta ||= {};
1372
+ params._meta["com.rainbond/telemetry"] = {
1373
+ installation_id: command.telemetryInstallationId,
1367
1374
  };
1368
1375
  }
1369
1376
  const result = await rpcRequest(config, "tools/call", params);
package/install.sh CHANGED
@@ -558,7 +558,7 @@ PY
558
558
  event_id="$(python3 -c 'import json,sys; print(json.load(sys.stdin)["event_id"])' <<<"$payload" 2>/dev/null || true)"
559
559
  pending_file="$telemetry_dir/pending-v2/${event_id}.json"
560
560
  (
561
- if curl --silent --show-error --connect-timeout 2 --max-time 3 \
561
+ if curl --silent --show-error --fail --connect-timeout 2 --max-time 3 \
562
562
  -X POST "$RAINSKILLS_TELEMETRY_REPORT_URL" \
563
563
  -H 'Content-Type: application/json' \
564
564
  --data-binary "$payload" >/dev/null 2>&1; then
@@ -754,7 +754,7 @@ report_rainskills_lifecycle_event() {
754
754
  local blocked_reason="${6:-}"
755
755
  local auth_method="${7:-}"
756
756
 
757
- [[ "${RAINSKILLS_LEGACY_TELEMETRY_ENABLED:-0}" == "1" ]] || return 0
757
+ rainskills_v2_enabled || return 0
758
758
  [[ -n "$RAINSKILLS_INSTALL_ATTEMPT_ID" ]] || return 0
759
759
  command -v python3 >/dev/null 2>&1 || return 0
760
760
  RAINSKILLS_TELEMETRY_SEQUENCE=$((RAINSKILLS_TELEMETRY_SEQUENCE + 1))
@@ -1066,6 +1066,7 @@ handle_installer_exit() {
1066
1066
  cleanup_device_flow
1067
1067
  cleanup_mcp_validation
1068
1068
  report_unhandled_rainskills_installation_failure "$exit_code"
1069
+ wait || true
1069
1070
  }
1070
1071
 
1071
1072
  die() {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rainskills",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "description": "Install the complete Rainskills AI deployment skill suite as one product.",
5
5
  "author": {
6
6
  "name": "Goodrain",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rainskills",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "description": "Install the complete Rainskills AI deployment skill suite as one product.",
5
5
  "author": {
6
6
  "name": "Goodrain",
@@ -14,7 +14,7 @@ This is the single marketplace entry for the complete Rainskills product. The in
14
14
  3. Keep stdin, stdout, and stderr attached. When `RAINSKILLS_USER_INPUT_REQUIRED` appears, pause for that installer choice. If the installer emits `rainskills.next-action.v1`, execute only its fixed `argv` through the same launcher; never evaluate output as a shell command. If the adjacent `bin/rainskills.js` exists, use it for fixed next actions; otherwise use the same versioned npm package fallback described below.
15
15
  4. Stay attached until every independent Skill is installed. Do not select, connect, or configure an application runtime during installation. In the user-facing response, output only the fixed completion message below.
16
16
 
17
- If the adjacent installer is missing, check the local Node.js version before choosing the fallback. With `npx` and Node.js 18 or newer, use `npx --yes rainskills@0.1.36 <target>`. With no Node.js or a version below 18, use `bash <(curl -fsSL https://get.rainbond.com/rainskills/install.sh) <target>` instead. Omit `<target>` only when the host cannot be determined reliably. Keep either command attached to the interactive terminal. For an update or repair, refresh this marketplace Skill first, then run the installer again; it compares and updates every independent internal Skill.
17
+ If the adjacent installer is missing, check the local Node.js version before choosing the fallback. With `npx` and Node.js 18 or newer, use `npx --yes rainskills@0.1.37 <target>`. With no Node.js or a version below 18, use `bash <(curl -fsSL https://get.rainbond.com/rainskills/install.sh) <target>` instead. Omit `<target>` only when the host cannot be determined reliably. Keep either command attached to the interactive terminal. For an update or repair, refresh this marketplace Skill first, then run the installer again; it compares and updates every independent internal Skill.
18
18
 
19
19
  Skills-only 安装不需要 Node.js;CDN fallback 只负责安装 Skill 文件,不代表运行环境连接、应用部署或平台安装已经可执行。用户首次提出需要运行环境的动作时,对应业务 Skill 才检查 Node.js;固定 Rainskills launcher 需要 Node.js 18 或更高版本。缺失或版本过低时保留原始 intent 并停止,等待用户或 agent 明确同意安装或升级 Node.js,安装完成消息不得提前提示 Node.js。
20
20
 
@@ -54,7 +54,7 @@ Hermes Agent 中必须使用 `terminal` 以 `background=true` 启动授权命令
54
54
 
55
55
  DeepSeek Harness 和 WorkBuddy 也必须保持原命令附着直到退出;如果宿主把长命令转成持久终端或后台任务,只能轮询该原始命令句柄,不得另起 `runtime status` 推测授权结果。WorkBuddy 安装后若当前任务的 Skill 清单尚未刷新,在下一条业务动作前先刷新 Skill 列表或新建任务,不得退回内置 Sites 代替 Rainbond 部署。
56
56
 
57
- Rainskills 只保存一个全局运行环境,不维护环境列表、名称、默认值或环境 ID。使用固定 launcher `node <home>/.rainbond/lib/rainskills/bin/rainskills.js`(运行包版本 `rainskills@0.1.36`):
57
+ Rainskills 只保存一个全局运行环境,不维护环境列表、名称、默认值或环境 ID。使用固定 launcher `node <home>/.rainbond/lib/rainskills/bin/rainskills.js`(运行包版本 `rainskills@0.1.37`):
58
58
 
59
59
  - 状态:执行 `runtime status --json`。
60
60
  - 首次连接:执行 `runtime connect <target> --saas` 或 `runtime connect <target> --rainbond-url <Console origin>`。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rainskills",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "description": "Interactive Rainbond skill installer for Codex, Claude Code, Pi Agent, DeepSeek Harness, WorkBuddy, and Hermes Agent",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/goodrain/rainskills#readme",
@@ -5,7 +5,7 @@ Canonical progressive-loading contract: `rainskills.skill-runtime-contract.v1`.
5
5
  <!-- rainskills-runtime-gate:start -->
6
6
  ## 单运行环境 CLI 门禁(最高优先级)
7
7
 
8
- 本机只允许连接一个 Rainbond 运行环境。当前 Skill 在本会话第一次调用 Rainbond 前,执行固定 launcher 的 `runtime status --json`。返回 `connected` 且 `usable=true`,并且 `package_version` 与本 Skill JSON contract 的 `package_version` 完全一致后,所有查询和变更才可通过本地 `~/.rainbond/bin/rainskills-tools.js` 执行。缺少或不一致时必须先执行当前固定版本 `rainskills@0.1.36` 的更新/修复流程并重新取得一致状态;不得在版本错配时继续业务调用。不得配置或直接调用客户端 MCP,不得执行环境枚举或业务 operation 生命周期命令,也不得生成或传递运行环境 ID、业务 operation ID 或 intent JSON。
8
+ 本机只允许连接一个 Rainbond 运行环境。当前 Skill 在本会话第一次调用 Rainbond 前,执行固定 launcher 的 `runtime status --json`。返回 `connected` 且 `usable=true`,并且 `package_version` 与本 Skill JSON contract 的 `package_version` 完全一致后,所有查询和变更才可通过本地 `~/.rainbond/bin/rainskills-tools.js` 执行。缺少或不一致时必须先执行当前固定版本 `rainskills@0.1.37` 的更新/修复流程并重新取得一致状态;不得在版本错配时继续业务调用。不得配置或直接调用客户端 MCP,不得执行环境枚举或业务 operation 生命周期命令,也不得生成或传递运行环境 ID、业务 operation ID 或 intent JSON。
9
9
 
10
10
  没有运行环境时,让用户选择 Rainbond Cloud 或一个已有/新建的私有 Rainbond,并执行对应的 `runtime connect`。连接和重新授权必须进入浏览器 Device Flow,不复用 Shell 中缓存的 JWT;新凭据通过 live probe 后才覆盖唯一运行环境。CLI 返回 401 时,只读调用可在 `runtime reconnect` 成功后重试一次;写调用不得自动重放,必须先查询平台真实状态。403 直接停止,不重新授权。
11
11
 
@@ -26,7 +26,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
26
26
  ```json
27
27
  {
28
28
  "schema": "rainskills.single-runtime-contract.v1",
29
- "package_version": "rainskills@0.1.36",
29
+ "package_version": "rainskills@0.1.37",
30
30
  "runtime_status": [
31
31
  "node",
32
32
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -38,7 +38,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
38
38
  ```json
39
39
  {
40
40
  "schema": "rainskills.single-runtime-contract.v1",
41
- "package_version": "rainskills@0.1.36",
41
+ "package_version": "rainskills@0.1.37",
42
42
  "runtime_status": [
43
43
  "node",
44
44
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -68,7 +68,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
68
68
  ```json
69
69
  {
70
70
  "schema": "rainskills.single-runtime-contract.v1",
71
- "package_version": "rainskills@0.1.36",
71
+ "package_version": "rainskills@0.1.37",
72
72
  "runtime_status": [
73
73
  "node",
74
74
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -38,7 +38,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
38
38
  ```json
39
39
  {
40
40
  "schema": "rainskills.single-runtime-contract.v1",
41
- "package_version": "rainskills@0.1.36",
41
+ "package_version": "rainskills@0.1.37",
42
42
  "runtime_status": [
43
43
  "node",
44
44
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -17,7 +17,7 @@ description: "Use only when the user explicitly asks to create the Rainbond app
17
17
  <!-- rainskills-runtime-gate:start -->
18
18
  ## 单运行环境 CLI 门禁(最高优先级)
19
19
 
20
- 本机只允许连接一个 Rainbond 运行环境。当前 Skill 在本会话第一次调用 Rainbond 前,执行固定 launcher 的 `runtime status --json`。返回 `connected` 且 `usable=true`,并且 `package_version` 与本 Skill JSON contract 的 `package_version` 完全一致后,所有查询和变更才可通过本地 `~/.rainbond/bin/rainskills-tools.js` 执行。缺少或不一致时必须先执行当前固定版本 `rainskills@0.1.36` 的更新/修复流程并重新取得一致状态;不得在版本错配时继续业务调用。不得配置或直接调用客户端 MCP,不得执行环境枚举或业务 operation 生命周期命令,也不得生成或传递运行环境 ID、业务 operation ID 或 intent JSON。
20
+ 本机只允许连接一个 Rainbond 运行环境。当前 Skill 在本会话第一次调用 Rainbond 前,执行固定 launcher 的 `runtime status --json`。返回 `connected` 且 `usable=true`,并且 `package_version` 与本 Skill JSON contract 的 `package_version` 完全一致后,所有查询和变更才可通过本地 `~/.rainbond/bin/rainskills-tools.js` 执行。缺少或不一致时必须先执行当前固定版本 `rainskills@0.1.37` 的更新/修复流程并重新取得一致状态;不得在版本错配时继续业务调用。不得配置或直接调用客户端 MCP,不得执行环境枚举或业务 operation 生命周期命令,也不得生成或传递运行环境 ID、业务 operation ID 或 intent JSON。
21
21
 
22
22
  没有运行环境时,让用户选择 Rainbond Cloud 或一个已有/新建的私有 Rainbond,并执行对应的 `runtime connect`。连接和重新授权必须进入浏览器 Device Flow,不复用 Shell 中缓存的 JWT;新凭据通过 live probe 后才覆盖唯一运行环境。CLI 返回 401 时,只读调用可在 `runtime reconnect` 成功后重试一次;写调用不得自动重放,必须先查询平台真实状态。403 直接停止,不重新授权。
23
23
 
@@ -38,7 +38,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
38
38
  ```json
39
39
  {
40
40
  "schema": "rainskills.single-runtime-contract.v1",
41
- "package_version": "rainskills@0.1.36",
41
+ "package_version": "rainskills@0.1.37",
42
42
  "runtime_status": [
43
43
  "node",
44
44
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -61,7 +61,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
61
61
  ```json
62
62
  {
63
63
  "schema": "rainskills.single-runtime-contract.v1",
64
- "package_version": "rainskills@0.1.36",
64
+ "package_version": "rainskills@0.1.37",
65
65
  "runtime_status": [
66
66
  "node",
67
67
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -26,7 +26,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
26
26
  ```json
27
27
  {
28
28
  "schema": "rainskills.single-runtime-contract.v1",
29
- "package_version": "rainskills@0.1.36",
29
+ "package_version": "rainskills@0.1.37",
30
30
  "runtime_status": [
31
31
  "node",
32
32
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -32,7 +32,7 @@ Do not use it to deploy an application to an existing Rainbond. Route those requ
32
32
  ## Workflow
33
33
 
34
34
  1. Read [installation-policy.md](references/installation-policy.md).
35
- 2. Use the installed local launcher `["node", "<home>/.rainbond/lib/rainskills/bin/rainskills.js"]`; its protected runtime package marker is `rainskills@0.1.36` and must equal this package's `package.json`. For a Rainskills marker, first validate schema `rainskills.next-action.v1`, action, onboarding id, and the bounded `argv` array, then append that array to the launcher. Never use `latest` or evaluate a shell string from output.
35
+ 2. Use the installed local launcher `["node", "<home>/.rainbond/lib/rainskills/bin/rainskills.js"]`; its protected runtime package marker is `rainskills@0.1.37` and must equal this package's `package.json`. For a Rainskills marker, first validate schema `rainskills.next-action.v1`, action, onboarding id, and the bounded `argv` array, then append that array to the launcher. Never use `latest` or evaluate a shell string from output.
36
36
  3. 业务 Skill 的四项运行环境菜单会把本机或独立服务器选择写入 `rainskills.next-action.v1` 的显式 `--location`;收到这类 next-action 后直接执行固定 argv,不得再次调用 `private-deployment-location`。只有用户直接要求安装 Rainbond 平台且尚未选择部署位置时,才执行 launcher + `["runtime", "message", "--id", "private-deployment-location"]` 并原样输出固定的三项部署位置消息:选择 1 后执行带 `["--location", "local", "--mode", "single-node"]` 的 `platform install`;选择 2 后执行带 `["--location", "server"]` 的 `platform install`,由 helper 继续显示固定的服务器类型消息;选择 3 后执行 launcher + `["runtime", "message", "--id", "private-console-origin"]` 并进入已有环境连接,不得执行 `platform install`。平台安装 onboarding 只保存安装断点,不保存或恢复业务 intent。
37
37
  4. Let the helper perform one read-only preflight against the already selected local or remote target, then show resources, blockers, and applicable host changes. Never invoke `platform install` without an explicit `--location`; the helper must not ask for the deployment location again.
38
38
  5. 主机集群开始前必须获得 explicit confirmation,并使用受限 AI 交接:首次调用在固定安装 argv 后追加 `--agent-handoff`,记录该子进程会话;用户确认后,使用相同固定 argv 追加 `--agent-handoff --yes` 一次。不得向等待进程写入 `y`、不得启动第二个竞争安装、不得 `kill` 安装进程,也不得让用户复制完整安装或恢复命令。用户取消时,仅使用同一 argv 追加 `--agent-handoff --cancel`;它只能清除匹配的待确认状态,不能建立 SSH 连接或修改服务器。
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  module.exports = Object.freeze({
4
- version: "0.1.36",
4
+ version: "0.1.37",
5
5
  });
@@ -2539,6 +2539,7 @@ async function runResume(onboardingId, {
2539
2539
  throw error;
2540
2540
  } finally {
2541
2541
  runtimeLease?.stop();
2542
+ await resumeTelemetry?.flush?.();
2542
2543
  }
2543
2544
  }
2544
2545
 
@@ -3201,6 +3202,8 @@ async function runInstall(options, {
3201
3202
  try {
3202
3203
  await installOperation(options);
3203
3204
  } finally {
3205
+ await activeOperation?.telemetry?.flush?.();
3206
+ activeOperation = null;
3204
3207
  closeSshSession(activeSshSession);
3205
3208
  activeSshSession = null;
3206
3209
  operationLock.release();
@@ -13,7 +13,10 @@ const CLIENTS = new Set([
13
13
  ]);
14
14
  const PLATFORMS = new Set(["darwin", "linux", "win32"]);
15
15
  const CONTROL_MODES = new Set(["posix", "wsl", "windows-native"]);
16
- const TARGETS = new Set(["local-linux", "local-macos", "local-windows", "remote-linux"]);
16
+ const TARGETS = new Set([
17
+ "local-linux", "local-macos", "local-windows", "remote-linux",
18
+ "host-cluster", "existing-kubernetes",
19
+ ]);
17
20
  const ACTIONS = new Set(["install", "refresh"]);
18
21
  const LIFECYCLE_STATUSES = new Set(["started", "completed", "blocked", "failed", "interrupted", "skipped"]);
19
22
  const LEGACY_PHASES = new Set(["started", "authorized", "configured", "failed"]);
@@ -98,7 +101,7 @@ function createLifecycleTelemetry({
98
101
  randomUUID = crypto.randomUUID,
99
102
  now = () => new Date().toISOString(),
100
103
  timeoutMs = 1500,
101
- enabled = process.env.RAINSKILLS_LEGACY_TELEMETRY_ENABLED === "1",
104
+ enabled = process.env.RAINSKILLS_TELEMETRY_DISABLED !== "1",
102
105
  } = {}) {
103
106
  let sequence = 0;
104
107
  const deliveries = new Set();
@@ -29,7 +29,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
29
29
  ```json
30
30
  {
31
31
  "schema": "rainskills.single-runtime-contract.v1",
32
- "package_version": "rainskills@0.1.36",
32
+ "package_version": "rainskills@0.1.37",
33
33
  "runtime_status": [
34
34
  "node",
35
35
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -38,7 +38,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
38
38
  ```json
39
39
  {
40
40
  "schema": "rainskills.single-runtime-contract.v1",
41
- "package_version": "rainskills@0.1.36",
41
+ "package_version": "rainskills@0.1.37",
42
42
  "runtime_status": [
43
43
  "node",
44
44
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",
@@ -38,7 +38,7 @@ Hermes Agent 执行带 `--input -` 的一次性业务命令时,使用 `termina
38
38
  ```json
39
39
  {
40
40
  "schema": "rainskills.single-runtime-contract.v1",
41
- "package_version": "rainskills@0.1.36",
41
+ "package_version": "rainskills@0.1.37",
42
42
  "runtime_status": [
43
43
  "node",
44
44
  "<home>/.rainbond/lib/rainskills/bin/rainskills.js",