@vornrun/mcp 0.7.0-beta.13 → 0.7.0-beta.14
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -980,7 +980,8 @@ function verifySchema(d) {
|
|
|
980
980
|
},
|
|
981
981
|
{ column: "worktree_name", ddl: "ALTER TABLE sessions ADD COLUMN worktree_name TEXT" },
|
|
982
982
|
{ column: "agent_session_id", ddl: "ALTER TABLE sessions ADD COLUMN agent_session_id TEXT" },
|
|
983
|
-
{ column: "shell_cwd", ddl: "ALTER TABLE sessions ADD COLUMN shell_cwd TEXT" }
|
|
983
|
+
{ column: "shell_cwd", ddl: "ALTER TABLE sessions ADD COLUMN shell_cwd TEXT" },
|
|
984
|
+
{ column: "head_commit", ddl: "ALTER TABLE sessions ADD COLUMN head_commit TEXT" }
|
|
984
985
|
],
|
|
985
986
|
agent_commands: [
|
|
986
987
|
{
|
|
@@ -1135,6 +1136,8 @@ function loadDefaults(d) {
|
|
|
1135
1136
|
// terminal drew and waits. There is nothing to ask, and leaving it off made
|
|
1136
1137
|
// the whole thing invisible unless somebody went looking for a toggle.
|
|
1137
1138
|
reopenSessions: map.reopenSessions ?? true,
|
|
1139
|
+
// Off by default: nothing starts itself because someone installed an app.
|
|
1140
|
+
startAtLogin: map.startAtLogin ?? false,
|
|
1138
1141
|
// Saving iterates over every key in defaults, but loading is this explicit
|
|
1139
1142
|
// list — so a key missing here round-trips to nothing and its feature is
|
|
1140
1143
|
// silently inert.
|
|
@@ -4529,7 +4532,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
4529
4532
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
4530
4533
|
async function main() {
|
|
4531
4534
|
configManager.init();
|
|
4532
|
-
const version = true ? "0.7.0-beta.
|
|
4535
|
+
const version = true ? "0.7.0-beta.14" : createRequire(import.meta.url)("../package.json").version;
|
|
4533
4536
|
const server = createMcpServer(version);
|
|
4534
4537
|
const transport = new StdioServerTransport();
|
|
4535
4538
|
await server.connect(transport);
|