@rigstate/mcp 0.5.5 → 0.5.6

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 CHANGED
@@ -2876,7 +2876,6 @@ var watcherState = {
2876
2876
  async function startFrankWatcher(supabase, userId) {
2877
2877
  if (watcherState.isRunning) return;
2878
2878
  watcherState.isRunning = true;
2879
- console.error(`\u{1F916} Frank Watcher started for user ${userId}`);
2880
2879
  const checkTasks = async () => {
2881
2880
  try {
2882
2881
  watcherState.lastCheck = (/* @__PURE__ */ new Date()).toISOString();
@@ -2886,8 +2885,6 @@ async function startFrankWatcher(supabase, userId) {
2886
2885
  const task = tasks[0];
2887
2886
  watcherState.tasksFound++;
2888
2887
  if (task.proposal?.startsWith("ping") || task.task_id === null && !task.proposal?.startsWith("report")) {
2889
- console.error(`
2890
- \u26A1 HEARTBEAT: Frank received REAL-TIME PING for project ${task.project_id}. Response: PONG`);
2891
2888
  await supabase.from("agent_bridge").update({
2892
2889
  status: "COMPLETED",
2893
2890
  summary: "Pong! Frank is active and listening.",
@@ -2899,8 +2896,6 @@ async function startFrankWatcher(supabase, userId) {
2899
2896
  const parts = task.proposal.split(":");
2900
2897
  const signalType = parts[1];
2901
2898
  const reportType = signalType === "MANIFEST" ? "SYSTEM_MANIFEST" : "INVESTOR_REPORT";
2902
- console.error(`
2903
- \u{1F4C4} Frank is generating ${reportType} report...`);
2904
2899
  try {
2905
2900
  const result = await generateProfessionalPdf(supabase, userId, task.project_id, reportType);
2906
2901
  await supabase.from("agent_bridge").update({
@@ -2919,8 +2914,6 @@ async function startFrankWatcher(supabase, userId) {
2919
2914
  return;
2920
2915
  }
2921
2916
  if (task.status === "APPROVED") {
2922
- console.error(`
2923
- \u{1F3D7}\uFE0F Worker: EXECUTING approved task: [${task.id}]`);
2924
2917
  await supabase.from("agent_bridge").update({ status: "EXECUTING", updated_at: (/* @__PURE__ */ new Date()).toISOString() }).eq("id", task.id);
2925
2918
  await new Promise((resolve2) => setTimeout(resolve2, 2e3));
2926
2919
  const taskTitle2 = task.roadmap_chunks?.title || "manual objective";
@@ -3006,7 +2999,6 @@ async function main() {
3006
2999
  setupToolHandlers(server, { supabase, userId });
3007
3000
  const transport = new StdioServerTransport();
3008
3001
  await server.connect(transport);
3009
- console.error("\u{1F6F0}\uFE0F Rigstate MCP Server (Evolutionary) running on stdio");
3010
3002
  }
3011
3003
  main().catch((error) => {
3012
3004
  console.error("FATAL ERROR:", error);