@rallycry/conveyor-mcp 5.0.0 → 5.0.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.
@@ -473,27 +473,45 @@ var ConveyorConnection = class {
473
473
  // credential and cannot reach outside that subtree.
474
474
  listProjectDriveFiles(params) {
475
475
  const { projectId, ...rest } = params;
476
- return this.call("listProjectDriveFiles", { projectId: this.resolveProjectId(projectId), ...rest });
476
+ return this.call("listProjectDriveFiles", {
477
+ projectId: this.resolveProjectId(projectId),
478
+ ...rest
479
+ });
477
480
  }
478
481
  readProjectDriveFile(params) {
479
482
  const { projectId, ...rest } = params;
480
- return this.call("readProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
483
+ return this.call("readProjectDriveFile", {
484
+ projectId: this.resolveProjectId(projectId),
485
+ ...rest
486
+ });
481
487
  }
482
488
  createProjectDriveFile(params) {
483
489
  const { projectId, ...rest } = params;
484
- return this.call("createProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
490
+ return this.call("createProjectDriveFile", {
491
+ projectId: this.resolveProjectId(projectId),
492
+ ...rest
493
+ });
485
494
  }
486
495
  updateProjectDriveFile(params) {
487
496
  const { projectId, ...rest } = params;
488
- return this.call("updateProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
497
+ return this.call("updateProjectDriveFile", {
498
+ projectId: this.resolveProjectId(projectId),
499
+ ...rest
500
+ });
489
501
  }
490
502
  deleteProjectDriveFile(params) {
491
503
  const { projectId, ...rest } = params;
492
- return this.call("deleteProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
504
+ return this.call("deleteProjectDriveFile", {
505
+ projectId: this.resolveProjectId(projectId),
506
+ ...rest
507
+ });
493
508
  }
494
509
  createProjectDriveFolder(params) {
495
510
  const { projectId, ...rest } = params;
496
- return this.call("createProjectDriveFolder", { projectId: this.resolveProjectId(projectId), ...rest });
511
+ return this.call("createProjectDriveFolder", {
512
+ projectId: this.resolveProjectId(projectId),
513
+ ...rest
514
+ });
497
515
  }
498
516
  /**
499
517
  * What this project is connected to, plus its registered work channels.
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConveyorConnection
4
- } from "./chunk-2TVN7F5E.js";
4
+ } from "./chunk-7VH3ULLT.js";
5
5
 
6
6
  // src/cli.ts
7
7
  import { createRequire } from "module";
@@ -1283,7 +1283,9 @@ var driveListFilesContract = defineToolContract({
1283
1283
  fields: {
1284
1284
  folderId: f.optional(f.string({ desc: `Folder to list. ${ROOT_DEFAULT}` })),
1285
1285
  search: f.optional(f.string({ desc: "Only return names containing this text", max: 200 })),
1286
- limit: f.optional(f.number({ desc: "Max entries (default 100)", int: true, min: 1, max: 200 }))
1286
+ limit: f.optional(
1287
+ f.number({ desc: "Max entries (default 100)", int: true, min: 1, max: 200 })
1288
+ )
1287
1289
  }
1288
1290
  },
1289
1291
  mcp: {
@@ -1292,7 +1294,9 @@ var driveListFilesContract = defineToolContract({
1292
1294
  projectId: mcpProjectId,
1293
1295
  folderId: f.optional(f.string({ desc: `Folder to list. ${ROOT_DEFAULT}` })),
1294
1296
  search: f.optional(f.string({ desc: "Only return names containing this text", max: 200 })),
1295
- limit: f.optional(f.number({ desc: "Max entries (default 100)", int: true, min: 1, max: 200 }))
1297
+ limit: f.optional(
1298
+ f.number({ desc: "Max entries (default 100)", int: true, min: 1, max: 200 })
1299
+ )
1296
1300
  }
1297
1301
  }
1298
1302
  });
@@ -1395,7 +1399,12 @@ var listMeetingsContract = defineToolContract({
1395
1399
  description: `List this project's meetings, newest first \u2014 each with its title, date, source, status, participants, and a short summary preview. Start here when you are asked about "the meeting", "what did we decide", or "what came out of that call". ${SUMMARY_NOTE}`,
1396
1400
  fields: {
1397
1401
  limit: f.optional(
1398
- f.number({ desc: "How many to return (default 20, maximum 50).", int: true, min: 1, max: 50 })
1402
+ f.number({
1403
+ desc: "How many to return (default 20, maximum 50).",
1404
+ int: true,
1405
+ min: 1,
1406
+ max: 50
1407
+ })
1399
1408
  ),
1400
1409
  search: f.optional(
1401
1410
  f.string({ desc: "Case-insensitive match on the meeting title.", max: 200 })
@@ -1407,7 +1416,12 @@ var listMeetingsContract = defineToolContract({
1407
1416
  fields: {
1408
1417
  projectId: mcpProjectId,
1409
1418
  limit: f.optional(
1410
- f.number({ desc: "How many to return (default 20, maximum 50).", int: true, min: 1, max: 50 })
1419
+ f.number({
1420
+ desc: "How many to return (default 20, maximum 50).",
1421
+ int: true,
1422
+ min: 1,
1423
+ max: 50
1424
+ })
1411
1425
  ),
1412
1426
  search: f.optional(
1413
1427
  f.string({ desc: "Case-insensitive match on the meeting title.", max: 200 })
@@ -1461,9 +1475,7 @@ var SINCE_MINUTES = f.optional(
1461
1475
  max: 10080
1462
1476
  })
1463
1477
  );
1464
- var START_TIME = f.optional(
1465
- f.string({ desc: "ISO 8601 lower bound (overrides sinceMinutes)" })
1466
- );
1478
+ var START_TIME = f.optional(f.string({ desc: "ISO 8601 lower bound (overrides sinceMinutes)" }));
1467
1479
  var END_TIME = f.optional(f.string({ desc: "ISO 8601 upper bound (default now)" }));
1468
1480
  var LIMIT = f.optional(
1469
1481
  f.number({ desc: "Max entries per page (default 50)", int: true, min: 1, max: 200 })
@@ -1497,7 +1509,10 @@ var gcpFields = {
1497
1509
  })
1498
1510
  ),
1499
1511
  search: f.optional(
1500
- f.string({ desc: "Free-text search across all log fields (exact substring, not regex)", max: 256 })
1512
+ f.string({
1513
+ desc: "Free-text search across all log fields (exact substring, not regex)",
1514
+ max: 256
1515
+ })
1501
1516
  ),
1502
1517
  filter: f.optional(
1503
1518
  f.string({
@@ -1725,7 +1740,9 @@ var contextPathSchema = z4.object({
1725
1740
  locator: z4.string().min(1).max(CONTEXT_LINK_LOCATOR_MAX).regex(/^[^\r\n]*$/, "Locator cannot contain line breaks").optional().describe(
1726
1741
  'Verified-link tether: text that must keep existing in the file for the link to stay live. With locatorType "test" it must appear inside a real it/test/describe TITLE (a renamed test flags the link stale even if its words survive in a comment); with "code" anywhere in the file. Conveyor re-validates links periodically and exposes per-link status in get_tag / manage_tags list. Locators containing <> are documentation placeholders and stay unchecked.'
1727
1742
  ),
1728
- locatorType: z4.enum(["test", "code"]).optional().describe("How the locator must match \u2014 required iff locator is set; not valid on folder links")
1743
+ locatorType: z4.enum(["test", "code"]).optional().describe(
1744
+ "How the locator must match \u2014 required iff locator is set; not valid on folder links"
1745
+ )
1729
1746
  }).refine((link) => link.locator === void 0 === (link.locatorType === void 0), {
1730
1747
  message: "locator and locatorType must be provided together"
1731
1748
  }).refine((link) => link.locator === void 0 || link.type !== "folder", {
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  } from "./chunk-HIVOGGE3.js";
6
6
  import {
7
7
  ConveyorConnection
8
- } from "./chunk-2TVN7F5E.js";
8
+ } from "./chunk-7VH3ULLT.js";
9
9
  export {
10
10
  ConveyorConnection,
11
11
  attachTunnel,
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-HIVOGGE3.js";
5
5
  import {
6
6
  ConveyorConnection
7
- } from "./chunk-2TVN7F5E.js";
7
+ } from "./chunk-7VH3ULLT.js";
8
8
 
9
9
  // src/tunnel-cli.ts
10
10
  var HELP = `conveyor-tunnel \u2014 attach your local terminal to a cloud Claude Code session.
package/dist/wait-cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConveyorConnection
4
- } from "./chunk-2TVN7F5E.js";
4
+ } from "./chunk-7VH3ULLT.js";
5
5
  import {
6
6
  runWait
7
7
  } from "./chunk-OPZL4NDT.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rallycry/conveyor-mcp",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Conveyor MCP server for Claude Code PM integration",
5
5
  "keywords": [
6
6
  "claude",