error-mom 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/dist/cli.js +4 -29
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  // src/cli.ts
4
4
  import { execFileSync } from "child_process";
5
- import { chmod, mkdir, readFile, writeFile, appendFile } from "fs/promises";
5
+ import { chmod, mkdir, readFile, writeFile } from "fs/promises";
6
6
  import { existsSync } from "fs";
7
7
  import { homedir } from "os";
8
8
  import { basename, join } from "path";
@@ -10,7 +10,7 @@ import { Command } from "commander";
10
10
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
11
11
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
12
12
  import { z } from "zod";
13
- var VERSION = "0.4.0";
13
+ var VERSION = "0.4.1";
14
14
  var CONFIG_DIR = join(homedir(), ".error-mom");
15
15
  var CONFIG_FILE = join(CONFIG_DIR, "config.json");
16
16
  var program = new Command().name("error-mom").description("Query and operate a self-hosted Error Mom incident desk").version(VERSION);
@@ -121,20 +121,15 @@ program.command("init").description("Create/select a project, install the SDK, a
121
121
  const framework = detectFramework(packageJson);
122
122
  if (!options.skipInstall) installSdk(detectPackageManager(process.cwd()));
123
123
  const setupPath = await writeSetup(framework, config.server, project.ingestKey);
124
- await writeFile(
125
- join(process.cwd(), ".error-mom.json"),
126
- `${JSON.stringify({ server: config.server, projectId: project.id, projectName: project.name, framework: framework.id }, null, 2)}
127
- `
128
- );
129
- await appendEnvironment(framework, config.server, project.ingestKey);
130
124
  print({
131
125
  installed: !options.skipInstall,
132
126
  project: { id: project.id, name: project.name, slug: project.slug },
133
127
  framework: framework.id,
134
128
  setupFile: setupPath,
129
+ projectKey: project.ingestKey,
135
130
  verified: false,
136
131
  wiring: framework.wiring,
137
- nextAction: `Wire it up: ${framework.wiring} If the app routes caught errors through a central handler or error-broadcast function, call errorMom.captureError(err) inside it \u2014 that is where framework-caught and LLM errors surface. For handlers where a framework catches errors itself (queue/cron jobs, webhooks, MCP tools), wrap each with errorMom.wrap(fn, { culprit: "<name>" }). The setup file has the write-only project key baked in so production builds report without any CI configuration. Then run error-mom doctor --project-key <key>.`
132
+ nextAction: `Wire it up: ${framework.wiring} If the app routes caught errors through a central handler or error-broadcast function, call errorMom.captureError(err) inside it \u2014 that is where framework-caught and LLM errors surface. For handlers where a framework catches errors itself (queue/cron jobs, webhooks, MCP tools), wrap each with errorMom.wrap(fn, { culprit: "<name>" }). The setup file has the write-only project key baked in (safe to commit; ERROR_MOM_* env vars override when set), so production builds report without any configuration. Then run error-mom doctor --project-key ${project.ingestKey}.`
138
133
  });
139
134
  });
140
135
  program.command("mcp").description("Run Error Mom tools over MCP stdio for coding agents").action(async () => {
@@ -459,26 +454,6 @@ export const onRequestError: Instrumentation.onRequestError = async (
459
454
  `;
460
455
  await writeFile(file, contents);
461
456
  }
462
- async function appendEnvironment(framework, server, key) {
463
- const prefix = framework.envStyle === "next" ? "NEXT_PUBLIC_" : framework.envStyle === "vite" ? "VITE_" : "";
464
- const file = join(process.cwd(), ".env.local");
465
- const existing = existsSync(file) ? await readFile(file, "utf8") : "";
466
- const lines = [
467
- [`${prefix}ERROR_MOM_SERVER`, server],
468
- [`${prefix}ERROR_MOM_PROJECT_KEY`, key],
469
- [`${prefix}ERROR_MOM_ENVIRONMENT`, "production"]
470
- ].filter(([name]) => !existing.includes(`${name}=`));
471
- if (lines.length) {
472
- await appendFile(
473
- file,
474
- `${existing && !existing.endsWith("\n") ? "\n" : ""}${lines.map(([name, value]) => `${name}=${value}`).join("\n")}
475
- `,
476
- {
477
- mode: 384
478
- }
479
- );
480
- }
481
- }
482
457
  function syntheticEvent() {
483
458
  return {
484
459
  eventId: crypto.randomUUID(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "error-mom",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Agent-first CLI and MCP tools for self-hosted Error Mom",
5
5
  "type": "module",
6
6
  "bin": {