replicas-cli 0.2.146 → 0.2.148
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.
|
@@ -7544,6 +7544,27 @@ function getInitialChatId(chats, preferredProvider = "claude") {
|
|
|
7544
7544
|
const others = chats.filter((c) => c.provider !== preferredProvider);
|
|
7545
7545
|
return mostActive(preferred)?.id ?? mostActive(others)?.id ?? preferred.find(isDefault)?.id ?? others.find(isDefault)?.id ?? chats[0]?.id ?? null;
|
|
7546
7546
|
}
|
|
7547
|
+
var CLAUDE_OPUS_1M_MODEL = "opus[1m]";
|
|
7548
|
+
var LEGACY_CLAUDE_OPUS_1M_MODEL = "opus-1m";
|
|
7549
|
+
var MODEL_LABELS = {
|
|
7550
|
+
sonnet: "Sonnet 4.5",
|
|
7551
|
+
opus: "Opus 4.7",
|
|
7552
|
+
[CLAUDE_OPUS_1M_MODEL]: "Opus 4.7 (1M)",
|
|
7553
|
+
[LEGACY_CLAUDE_OPUS_1M_MODEL]: "Opus 4.7 (1M)",
|
|
7554
|
+
haiku: "Haiku 4.5",
|
|
7555
|
+
"gpt-5.5": "GPT-5.5",
|
|
7556
|
+
"gpt-5.4": "GPT-5.4",
|
|
7557
|
+
"gpt-5.4-mini": "GPT-5.4 Mini",
|
|
7558
|
+
"gpt-5.3-codex": "GPT-5.3 Codex",
|
|
7559
|
+
"gpt-5.3-codex-spark": "GPT-5.3 Codex Spark",
|
|
7560
|
+
"gpt-5.2-codex": "GPT-5.2 Codex",
|
|
7561
|
+
"gpt-5.2": "GPT-5.2",
|
|
7562
|
+
"gpt-5.1-codex-max": "GPT-5.1 Codex Max",
|
|
7563
|
+
"gpt-5.1-codex": "GPT-5.1 Codex",
|
|
7564
|
+
"gpt-5.1": "GPT-5.1",
|
|
7565
|
+
"gpt-5-codex": "GPT-5 Codex",
|
|
7566
|
+
"gpt-5": "GPT-5"
|
|
7567
|
+
};
|
|
7547
7568
|
|
|
7548
7569
|
// ../shared/src/automations/github/index.ts
|
|
7549
7570
|
var REPO_FILTER_PARAM = {
|
package/dist/index.mjs
CHANGED
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
setIdeCommand,
|
|
21
21
|
setOrganizationId,
|
|
22
22
|
writeConfig
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-GUVQ6J5E.mjs";
|
|
24
24
|
import "./chunk-FFDYI4OH.mjs";
|
|
25
25
|
|
|
26
26
|
// src/index.ts
|
|
@@ -2554,7 +2554,7 @@ async function interactiveCommand() {
|
|
|
2554
2554
|
);
|
|
2555
2555
|
}
|
|
2556
2556
|
console.log(chalk19.gray("Starting interactive mode..."));
|
|
2557
|
-
const { launchInteractive } = await import("./interactive-
|
|
2557
|
+
const { launchInteractive } = await import("./interactive-TO4C2LYF.mjs");
|
|
2558
2558
|
await launchInteractive();
|
|
2559
2559
|
}
|
|
2560
2560
|
|
|
@@ -2928,7 +2928,7 @@ Deleted file ${pathOrId}.
|
|
|
2928
2928
|
}
|
|
2929
2929
|
|
|
2930
2930
|
// src/index.ts
|
|
2931
|
-
var CLI_VERSION = "0.2.
|
|
2931
|
+
var CLI_VERSION = "0.2.148";
|
|
2932
2932
|
var program = new Command();
|
|
2933
2933
|
program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
|
|
2934
2934
|
program.command("login").description("Authenticate with your Replicas account").action(async () => {
|