replicas-cli 0.2.84 → 0.2.86
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.
|
@@ -8462,7 +8462,7 @@ function parseSlackTask(content) {
|
|
|
8462
8462
|
if (!content.startsWith("# Task from Slack")) return null;
|
|
8463
8463
|
const targetMatch = content.match(/## Workspace Target\nWorking in: (.+?)(?=\n\*\*(?:Thread|Target) URL:\*\*|\n\n)/);
|
|
8464
8464
|
const threadMatch = content.match(
|
|
8465
|
-
/## Thread Context\n([\s\S]*?)(?=\n## Latest Message)/
|
|
8465
|
+
/## (?:Thread Context|New Messages in Thread)\n([\s\S]*?)(?=\n## Latest Message)/
|
|
8466
8466
|
);
|
|
8467
8467
|
const latestMatch = content.match(
|
|
8468
8468
|
/## Latest Message \(mentions you\)\n@(.+?): ([\s\S]*?)(?=\n## Response Instructions)/
|
package/dist/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
setIdeCommand,
|
|
16
16
|
setOrganizationId,
|
|
17
17
|
writeConfig
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-JD5S6ZRL.mjs";
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
import "dotenv/config";
|
|
@@ -2509,12 +2509,12 @@ async function interactiveCommand() {
|
|
|
2509
2509
|
);
|
|
2510
2510
|
}
|
|
2511
2511
|
console.log(chalk18.gray("Starting interactive mode..."));
|
|
2512
|
-
const { launchInteractive } = await import("./interactive-
|
|
2512
|
+
const { launchInteractive } = await import("./interactive-5V3VZUZE.mjs");
|
|
2513
2513
|
await launchInteractive();
|
|
2514
2514
|
}
|
|
2515
2515
|
|
|
2516
2516
|
// src/index.ts
|
|
2517
|
-
var CLI_VERSION = "0.2.
|
|
2517
|
+
var CLI_VERSION = "0.2.86";
|
|
2518
2518
|
var program = new Command();
|
|
2519
2519
|
program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
|
|
2520
2520
|
program.command("login").description("Authenticate with your Replicas account").action(async () => {
|