@realtimex/sdk 2.0.13 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realtimex/sdk",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "description": "SDK for building Local Apps that integrate with RealtimeX",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: realtimex-moderator-sdk
3
- description: "Use the RealTimeX API through the generated CLI for workspace, thread, terminal-agent sessions, channel (Telegram, Zalo, Discord), skills, plugins and send messages, setup personality, heartbeat tasks operations."
3
+ description: "Use the RealTimeX API through the generated CLI for workspace, thread, terminal-agent sessions, channel (Telegram, Zalo, Discord), skills, plugins and send messages, setup personality, heartbeat tasks operations, run tour guide to setup working dir."
4
4
  author: ""
5
5
  license: "Apache-2.0"
6
6
  argument-hint: "<command> [args] | install cli"
@@ -20,15 +20,15 @@ This skill drives the `realtimex-pp-cli` binary. Verify the CLI is installed and
20
20
 
21
21
  1. Install or reinstall the pinned version via npm:
22
22
  ```bash
23
- npm install -g @realtimex/pp-cli@2.0.13
23
+ npm install -g @realtimex/pp-cli@2.0.14
24
24
  ```
25
25
  2. Verify the exact version:
26
26
  ```bash
27
27
  realtimex-pp-cli --version
28
28
  ```
29
- The output must be `realtimex-pp-cli 2.0.13`.
29
+ The output must be `realtimex-pp-cli 2.0.14`.
30
30
 
31
- If `--version` reports "command not found" after install, the npm global bin directory is not on `$PATH`. If it reports any version other than `2.0.13`, reinstall with the pinned npm command above. Do not proceed with skill commands until exact-version verification succeeds.
31
+ If `--version` reports "command not found" after install, the npm global bin directory is not on `$PATH`. If it reports any version other than `2.0.14`, reinstall with the pinned npm command above. Do not proceed with skill commands until exact-version verification succeeds.
32
32
 
33
33
  * Always run first:
34
34
 
@@ -206,6 +206,10 @@ If `--version` reports "command not found" after install, the npm global bin dir
206
206
 
207
207
  - `realtimex-pp-cli setup-personality` — Set up AGENTS.md and CLAUDE.md personality files for a workspace or global ambient agent.
208
208
 
209
+ **setup-working-dir** — Manage setup working dir
210
+
211
+ - `realtimex-pp-cli setup-working-dir` — Add or edit an agent working directory from the desktop settings UI.
212
+
209
213
  **start-channel** — Manage start channel
210
214
 
211
215
  - `realtimex-pp-cli start-channel <channelId>` — Start one chat channel by exact channel id.
@@ -214,6 +218,10 @@ If `--version` reports "command not found" after install, the npm global bin dir
214
218
 
215
219
  - `realtimex-pp-cli stop-channel <channelId>` — Stop one chat channel by exact channel id.
216
220
 
221
+ **stop-thread-terminal-session** — Manage stop thread terminal session
222
+
223
+ - `realtimex-pp-cli stop-thread-terminal-session` — Interrupt the selected or current chat-linked terminal session for one exact thread without closing the underlying
224
+
217
225
  **terminate-terminal-session** — Manage terminate terminal session
218
226
 
219
227
  - `realtimex-pp-cli terminate-terminal-session <sessionId>` — Terminate a terminal runtime session by detaching any controller and closing the underlying PTY session.
@@ -230,6 +238,10 @@ If `--version` reports "command not found" after install, the npm global bin dir
230
238
 
231
239
  - `realtimex-pp-cli update-channel <channelId>` — Update one chat channel by exact channel id. Only channel writable fields are changed.
232
240
 
241
+ **workspace-message** — Manage workspace message
242
+
243
+ - `realtimex-pp-cli workspace-message` — Send a message in a workspace/thread through the desktop UI.
244
+
233
245
 
234
246
  ### Finding the right command
235
247
 
@@ -356,9 +368,9 @@ Verify: `claude mcp list`
356
368
  ```bash
357
369
  realtimex-pp-cli --version
358
370
  ```
359
- If the command is missing or the output is not exactly `realtimex-pp-cli 2.0.13`, reinstall the pinned version:
371
+ If the command is missing or the output is not exactly `realtimex-pp-cli 2.0.14`, reinstall the pinned version:
360
372
  ```bash
361
- npm install -g @realtimex/pp-cli@2.0.13
373
+ npm install -g @realtimex/pp-cli@2.0.14
362
374
  ```
363
375
  Then run `realtimex-pp-cli --version` again and proceed only after exact-version verification succeeds.
364
376
  2. Match the user query to the best command from the Unique Capabilities and Command Reference above.