yapout 0.15.0 → 0.15.1
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 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -296,10 +296,10 @@ function requireAuth() {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
// src/commands/serve.ts
|
|
299
|
-
var CLI_VERSION = "0.15.
|
|
299
|
+
var CLI_VERSION = "0.15.1";
|
|
300
300
|
var DEFAULT_PORT = 7777;
|
|
301
301
|
var PORT_RANGE = 10;
|
|
302
|
-
var HEARTBEAT_MS =
|
|
302
|
+
var HEARTBEAT_MS = 12e4;
|
|
303
303
|
var PID_FILE = join2(getYapoutDir(), "serve.pid");
|
|
304
304
|
var PORT_FILE = join2(getYapoutDir(), "serve.port");
|
|
305
305
|
var LOG_FILE = join2(getYapoutDir(), "serve.log");
|
|
@@ -519,7 +519,7 @@ var serveCommand = new Command("serve").description(
|
|
|
519
519
|
});
|
|
520
520
|
|
|
521
521
|
// src/commands/login.ts
|
|
522
|
-
var CLI_VERSION2 = "0.15.
|
|
522
|
+
var CLI_VERSION2 = "0.15.1";
|
|
523
523
|
function safeReturnTo(raw) {
|
|
524
524
|
if (!raw) return null;
|
|
525
525
|
try {
|
|
@@ -5472,7 +5472,7 @@ async function startMcpServer() {
|
|
|
5472
5472
|
};
|
|
5473
5473
|
const server = new McpServer({
|
|
5474
5474
|
name: "yapout",
|
|
5475
|
-
version: "0.15.
|
|
5475
|
+
version: "0.15.1"
|
|
5476
5476
|
});
|
|
5477
5477
|
registerInitTool(server, ctx);
|
|
5478
5478
|
registerCompactTool(server, ctx);
|
|
@@ -6194,7 +6194,7 @@ var pillarCommand = new Command15("pillar").description("Manage per-project pill
|
|
|
6194
6194
|
|
|
6195
6195
|
// src/index.ts
|
|
6196
6196
|
var program = new Command16();
|
|
6197
|
-
program.name("yapout").description("yapout \u2014 the PM tool for agents").version("0.15.
|
|
6197
|
+
program.name("yapout").description("yapout \u2014 the PM tool for agents").version("0.15.1");
|
|
6198
6198
|
program.addCommand(loginCommand);
|
|
6199
6199
|
program.addCommand(logoutCommand);
|
|
6200
6200
|
program.addCommand(initCommand);
|