@vemdev/cli 0.1.55 → 0.1.56
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/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1163,7 +1163,7 @@ var syncParsedTaskUpdatesToRemote = async (configService, update, result, active
|
|
|
1163
1163
|
const changelogEntry = Array.isArray(update.changelog_append) ? update.changelog_append.join("\n").trim() || null : update.changelog_append?.trim() ?? null;
|
|
1164
1164
|
await updateTaskMetaRemote(configService, activeTask, {
|
|
1165
1165
|
raw_vem_update: JSON.parse(JSON.stringify(update)),
|
|
1166
|
-
cli_version: "0.1.
|
|
1166
|
+
cli_version: "0.1.56",
|
|
1167
1167
|
...changelogEntry ? { changelog_entry: changelogEntry } : {}
|
|
1168
1168
|
});
|
|
1169
1169
|
}
|
|
@@ -1220,7 +1220,7 @@ var syncParsedTaskUpdatesToRemote = async (configService, update, result, active
|
|
|
1220
1220
|
...patch.subtask_order !== void 0 ? { subtask_order: patch.subtask_order } : {},
|
|
1221
1221
|
...patch.due_at !== void 0 ? { due_at: patch.due_at } : {},
|
|
1222
1222
|
raw_vem_update: JSON.parse(JSON.stringify(update)),
|
|
1223
|
-
cli_version: "0.1.
|
|
1223
|
+
cli_version: "0.1.56",
|
|
1224
1224
|
// Task memory fields — stored in task_memory_entries on the API side.
|
|
1225
1225
|
...buildRemoteTaskContextPatch(patch, updatedTask) ?? {},
|
|
1226
1226
|
changelog_entry: changelogReasoning ?? null
|
|
@@ -4654,6 +4654,7 @@ async function executeClaimedRunInSandbox(input) {
|
|
|
4654
4654
|
let containerName = null;
|
|
4655
4655
|
let cancellationRequested = false;
|
|
4656
4656
|
let timedOut = false;
|
|
4657
|
+
let fullDockerLogLines = [];
|
|
4657
4658
|
const baseBranch = run.agent_base_branch || "main";
|
|
4658
4659
|
const remote = await resolveGitRemote(configService);
|
|
4659
4660
|
worktreePath = `/tmp/vem-run-${run.id}-${Date.now().toString(36)}`;
|
|
@@ -4832,7 +4833,7 @@ async function executeClaimedRunInSandbox(input) {
|
|
|
4832
4833
|
} else if (!cancellationRequested && !timedOut) {
|
|
4833
4834
|
completionStatus = "failed";
|
|
4834
4835
|
}
|
|
4835
|
-
|
|
4836
|
+
fullDockerLogLines = stdoutChunks.join("").split("\n").filter(Boolean).slice(-1e3);
|
|
4836
4837
|
if (completionStatus === "completed" && commitHashes.length > 0) {
|
|
4837
4838
|
try {
|
|
4838
4839
|
runGitIn(worktreePath, ["push", "-u", "origin", branchName], {
|
|
@@ -8968,11 +8969,11 @@ async function initServerMonitoring(config) {
|
|
|
8968
8969
|
await initServerMonitoring({
|
|
8969
8970
|
dsn: "https://ed007f2c213d0aa07c1be256ca51750c@o4510863861612544.ingest.de.sentry.io/4510863921774672",
|
|
8970
8971
|
environment: process.env.NODE_ENV || "production",
|
|
8971
|
-
release: "0.1.
|
|
8972
|
+
release: "0.1.56",
|
|
8972
8973
|
serviceName: "cli"
|
|
8973
8974
|
});
|
|
8974
8975
|
var program = new Command();
|
|
8975
|
-
program.name("vem").description("vem Project Memory CLI").version("0.1.
|
|
8976
|
+
program.name("vem").description("vem Project Memory CLI").version("0.1.56").addHelpText(
|
|
8976
8977
|
"after",
|
|
8977
8978
|
`
|
|
8978
8979
|
${chalk19.bold("\n\u26A1 Power Workflows:")}
|