@remcp/runtime 0.2.15 → 0.2.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.16
4
+
5
+ - Mark cursor-consuming `read_process_output` as non-idempotent so clients do not assume retries
6
+ replay the same output.
7
+
3
8
  ## 0.2.11
4
9
 
5
10
  - Version lockstep with the client.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remcp/runtime",
3
- "version": "0.2.15",
3
+ "version": "0.2.19",
4
4
  "description": "First-party ReMCP local device runtime: file, search, terminal and process tools over MCP for computers paired with ReMCP.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/catalog.mjs CHANGED
@@ -622,7 +622,9 @@ export const toolDefinitions = [
622
622
  required: ['pid'],
623
623
  additionalProperties: false,
624
624
  },
625
- annotations: readOnly,
625
+ // Reading without an explicit offset advances the session cursor, so retries can return
626
+ // different output even after the process exits. It never modifies user files.
627
+ annotations: readOnlyNonIdempotent,
626
628
  handler: terminalToolHandlers.read_process_output,
627
629
  },
628
630
  {