@meistrari/remy-cli 1.9.0 → 1.10.0
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 +2 -2
- package/dist/remy.js +33 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ The dashboard is the starting point for all interactive work. It refreshes the v
|
|
|
36
36
|
|
|
37
37
|
### Start work
|
|
38
38
|
|
|
39
|
-
Press `n` in the dashboard. The new-session flow asks what you want done, selects a GitHub installation when needed, suggests repositories based on your request, and lets you review those suggestions. Before creating the session, choose the agent model and reasoning effort.
|
|
39
|
+
Press `n` in the dashboard. The new-session flow asks what you want done, selects a GitHub installation when needed, suggests repositories based on your request, and lets you review those suggestions. Before creating the session, choose the agent model and reasoning effort. The wizard starts with `gpt-6-astra` and `medium` reasoning by default. Remy then opens the session and streams its activity.
|
|
40
40
|
|
|
41
41
|
Use `Tab` while writing the request to complete a local file path. Remy attaches selected paths when you confirm the request. On macOS, `Ctrl+V` adds a PNG from the system clipboard to the request; Remy attaches it on confirmation. Remy uploads files before creating the session.
|
|
42
42
|
|
|
@@ -76,7 +76,7 @@ The interactive dashboard is the recommended path. Use these commands when a scr
|
|
|
76
76
|
remy new --repository owner/repository "Add a health check endpoint"
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
Repeat `--repository` to select more repositories from the same GitHub installation. If you do not select a repository, supply `--installation <github-installation-id>`. Repeat `--attach <path>` to upload files. Direct creation uses `
|
|
79
|
+
Repeat `--repository` to select more repositories from the same GitHub installation. If you do not select a repository, supply `--installation <github-installation-id>`. Repeat `--attach <path>` to upload files. Direct creation uses `medium` reasoning unless `--reasoning-effort` overrides it; omit `--model` to use the server's `gpt-6-astra` default. `remy new` creates the session from the prompt and flags, then opens it when the terminal is interactive.
|
|
80
80
|
|
|
81
81
|
### Open a known session
|
|
82
82
|
|
package/dist/remy.js
CHANGED
|
@@ -32083,11 +32083,13 @@ var agentCommandSchema = zod_default2.union([
|
|
|
32083
32083
|
]);
|
|
32084
32084
|
// ../../packages/agents-protocol/src/agent-model.ts
|
|
32085
32085
|
var codexModelIds = [
|
|
32086
|
+
"gpt-6-astra",
|
|
32086
32087
|
"gpt-5.6-sol",
|
|
32088
|
+
"gpt-5.6-terra",
|
|
32089
|
+
"gpt-5.6-luna",
|
|
32087
32090
|
"gpt-5.5",
|
|
32088
32091
|
"gpt-5.4",
|
|
32089
32092
|
"gpt-5.4-mini",
|
|
32090
|
-
"gpt-5.3-codex",
|
|
32091
32093
|
"gpt-5.2"
|
|
32092
32094
|
];
|
|
32093
32095
|
var claudeModelIds = [
|
|
@@ -32553,41 +32555,55 @@ var agentEventSchema = zod_default2.discriminatedUnion("type", [
|
|
|
32553
32555
|
// ../../packages/agents-protocol/src/agent-presentation.ts
|
|
32554
32556
|
var CODEX_CONTEXT_WINDOW = 272000;
|
|
32555
32557
|
var codexModelPresentation = {
|
|
32558
|
+
"gpt-6-astra": {
|
|
32559
|
+
label: "GPT 6.0 Astra",
|
|
32560
|
+
description: "Our most capable model for complex, demanding work.",
|
|
32561
|
+
relativeCost: 5,
|
|
32562
|
+
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32563
|
+
isMultiModal: true
|
|
32564
|
+
},
|
|
32556
32565
|
"gpt-5.6-sol": {
|
|
32557
|
-
label: "GPT
|
|
32558
|
-
description: "
|
|
32566
|
+
label: "GPT 5.6 Sol",
|
|
32567
|
+
description: "Reliable agentic workhorse for everyday tasks.",
|
|
32559
32568
|
relativeCost: 5,
|
|
32560
32569
|
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32561
32570
|
isMultiModal: true
|
|
32562
32571
|
},
|
|
32572
|
+
"gpt-5.6-terra": {
|
|
32573
|
+
label: "GPT 5.6 Terra",
|
|
32574
|
+
description: "Balanced agentic coding model for everyday work.",
|
|
32575
|
+
relativeCost: 3,
|
|
32576
|
+
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32577
|
+
isMultiModal: true
|
|
32578
|
+
},
|
|
32579
|
+
"gpt-5.6-luna": {
|
|
32580
|
+
label: "GPT 5.6 Luna",
|
|
32581
|
+
description: "Fast and affordable agentic coding model.",
|
|
32582
|
+
relativeCost: 2,
|
|
32583
|
+
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32584
|
+
isMultiModal: true
|
|
32585
|
+
},
|
|
32563
32586
|
"gpt-5.5": {
|
|
32564
|
-
label: "GPT
|
|
32565
|
-
description: "
|
|
32587
|
+
label: "GPT 5.5",
|
|
32588
|
+
description: "Proven previous-generation model for coding and general work.",
|
|
32566
32589
|
relativeCost: 4,
|
|
32567
32590
|
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32568
32591
|
isMultiModal: true
|
|
32569
32592
|
},
|
|
32570
32593
|
"gpt-5.4": {
|
|
32571
|
-
label: "GPT
|
|
32594
|
+
label: "GPT 5.4",
|
|
32572
32595
|
description: "Strong model for everyday coding.",
|
|
32573
32596
|
relativeCost: 3,
|
|
32574
32597
|
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32575
32598
|
isMultiModal: true
|
|
32576
32599
|
},
|
|
32577
32600
|
"gpt-5.4-mini": {
|
|
32578
|
-
label: "GPT
|
|
32601
|
+
label: "GPT 5.4 Mini",
|
|
32579
32602
|
description: "Small, fast, and cost-efficient model for simpler coding tasks.",
|
|
32580
32603
|
relativeCost: 2,
|
|
32581
32604
|
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32582
32605
|
isMultiModal: true
|
|
32583
32606
|
},
|
|
32584
|
-
"gpt-5.3-codex": {
|
|
32585
|
-
label: "GPT-5.3-Codex",
|
|
32586
|
-
description: "Code-tuned model for focused engineering tasks.",
|
|
32587
|
-
relativeCost: 3,
|
|
32588
|
-
maxInputTokens: CODEX_CONTEXT_WINDOW,
|
|
32589
|
-
isMultiModal: true
|
|
32590
|
-
},
|
|
32591
32607
|
"gpt-5.2": {
|
|
32592
32608
|
label: "GPT-5.2",
|
|
32593
32609
|
description: "Optimized for professional work and long-running agents.",
|
|
@@ -33712,8 +33728,8 @@ function newSessionReasoningEffortLabel(effort) {
|
|
|
33712
33728
|
var newSessionModels = codexModelIds;
|
|
33713
33729
|
var newSessionReasoningEfforts = selectableAgentReasoningEfforts;
|
|
33714
33730
|
var defaultNewSessionAgent = {
|
|
33715
|
-
model:
|
|
33716
|
-
reasoningEffort: "
|
|
33731
|
+
model: "gpt-6-astra",
|
|
33732
|
+
reasoningEffort: "medium"
|
|
33717
33733
|
};
|
|
33718
33734
|
|
|
33719
33735
|
// src/sessions/session-controller.ts
|
|
@@ -37768,7 +37784,7 @@ var compactMarkRows = 9;
|
|
|
37768
37784
|
var compactMinWidth = 48;
|
|
37769
37785
|
var compactMinHeight = 20;
|
|
37770
37786
|
var markBrightnessGain = 4.2;
|
|
37771
|
-
var remyCliVersion = "1.
|
|
37787
|
+
var remyCliVersion = "1.10.0";
|
|
37772
37788
|
async function showRemySplash({
|
|
37773
37789
|
createRenderer = createRemyRenderer,
|
|
37774
37790
|
durationMs = splashDurationMs,
|