@meistrari/remy-cli 1.4.2 → 1.4.3

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
@@ -82,6 +82,8 @@ remy --session <session-id>
82
82
 
83
83
  `remy new` and `remy --session` use JSON Lines output automatically when standard input or output is not a terminal. Pass `--no-tui` to choose that mode explicitly; `--json` also selects it.
84
84
 
85
+ Opaque session and message metadata returned by the API is accepted for compatibility but is not displayed in the terminal view or emitted in JSON Lines output.
86
+
85
87
  ```bash
86
88
  remy new --no-tui --repository owner/repository "Add a health check endpoint"
87
89
  remy --session <session-id> --json
package/dist/remy.js CHANGED
@@ -32581,6 +32581,7 @@ var sessionMessageSchema = exports_external2.strictObject({
32581
32581
  sequence: exports_external2.number().int().positive(),
32582
32582
  text: exports_external2.string(),
32583
32583
  file_ids: exports_external2.array(exports_external2.string()),
32584
+ metadata: jsonObjectSchema,
32584
32585
  created_at: exports_external2.iso.datetime()
32585
32586
  });
32586
32587
  var sessionConnectionSchema = exports_external2.discriminatedUnion("status", [
@@ -32623,7 +32624,8 @@ var createCodexSessionInputSchema = exports_external2.strictObject({
32623
32624
  var createSessionResponseSchema = exports_external2.strictObject({
32624
32625
  session: exports_external2.strictObject({
32625
32626
  id: exports_external2.string(),
32626
- status: sessionStatusSchema
32627
+ status: sessionStatusSchema,
32628
+ metadata: jsonObjectSchema
32627
32629
  }),
32628
32630
  messages: exports_external2.tuple([sessionMessageSchema]),
32629
32631
  connections: exports_external2.array(sessionConnectionSchema).max(1)
@@ -33787,7 +33789,7 @@ var sessionWorkspaceGitRevisionEventSchema = exports_external2.object({
33787
33789
  repository: exports_external2.object({ full_name: exports_external2.string().min(1) }).passthrough(),
33788
33790
  branch: exports_external2.string().min(1),
33789
33791
  sha: exports_external2.string().min(1),
33790
- turnId: exports_external2.string().min(1),
33792
+ turn_id: exports_external2.string().min(1),
33791
33793
  trigger: exports_external2.enum(["turn-ended", "boot-reconcile"])
33792
33794
  }).passthrough()
33793
33795
  }).passthrough();
@@ -37292,7 +37294,7 @@ var compactMarkRows = 9;
37292
37294
  var compactMinWidth = 48;
37293
37295
  var compactMinHeight = 20;
37294
37296
  var markBrightnessGain = 4.2;
37295
- var remyCliVersion = "1.4.2";
37297
+ var remyCliVersion = "1.4.3";
37296
37298
  async function showRemySplash({
37297
37299
  createRenderer = createRemyRenderer,
37298
37300
  durationMs = splashDurationMs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/remy-cli",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Remy, the Coding Agent terminal client.",
5
5
  "type": "module",
6
6
  "bin": {