@meistrari/remy-cli 1.4.1 → 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
@@ -58,7 +58,7 @@ Drag to select visible text in any Remy view; Remy copies it to the local clipbo
58
58
  | `/exit` | Leave Remy. |
59
59
  | `Ctrl+O` | Expand or collapse activity details. |
60
60
 
61
- After a session becomes terminal, press `Esc` to return to the dashboard or `n` to start new work. From the dashboard, press `q` to quit. `Shift+L` in the dashboard and `/logout` in a session ask for confirmation; press `y` to sign out or `Esc` to cancel. `Ctrl+C` exits Remy from the dashboard, wizard, or session view.
61
+ After a session becomes terminal, press `Esc` to return to the dashboard or `n` to start new work. From the dashboard, press `q` to quit; in an open session, `q` is ordinary composer text. `Shift+L` in the dashboard and `/logout` in a session ask for confirmation; press `y` to sign out or `Esc` to cancel. `Ctrl+C` exits Remy from the dashboard, wizard, or session view.
62
62
 
63
63
  ## Commands for direct or scripted use
64
64
 
@@ -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();
@@ -36498,11 +36500,6 @@ async function createSessionTui({
36498
36500
  finish({ kind: "new", composer: { text: "", attachments: [] } });
36499
36501
  return;
36500
36502
  }
36501
- if (key.name === "q" && (latestState.aggregateStatus !== "open" || composer.plainText.length === 0)) {
36502
- key.preventDefault();
36503
- finish({ kind: "exit" });
36504
- return;
36505
- }
36506
36503
  if (key.name === "o" && key.ctrl) {
36507
36504
  key.preventDefault();
36508
36505
  activityExpanded = !activityExpanded;
@@ -37297,7 +37294,7 @@ var compactMarkRows = 9;
37297
37294
  var compactMinWidth = 48;
37298
37295
  var compactMinHeight = 20;
37299
37296
  var markBrightnessGain = 4.2;
37300
- var remyCliVersion = "1.4.1";
37297
+ var remyCliVersion = "1.4.3";
37301
37298
  async function showRemySplash({
37302
37299
  createRenderer = createRemyRenderer,
37303
37300
  durationMs = splashDurationMs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/remy-cli",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "description": "Remy, the Coding Agent terminal client.",
5
5
  "type": "module",
6
6
  "bin": {