error-mom 0.3.1 → 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 +21 -47
  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.3.1";
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);
@@ -120,21 +120,16 @@ program.command("init").description("Create/select a project, install the SDK, a
120
120
  }
121
121
  const framework = detectFramework(packageJson);
122
122
  if (!options.skipInstall) installSdk(detectPackageManager(process.cwd()));
123
- const setupPath = await writeSetup(framework);
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);
123
+ const setupPath = await writeSetup(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} For handlers where a framework catches errors itself (queue/cron jobs, webhooks, MCP tools), wrap each with errorMom.wrap(fn, { culprit: "<name>" }). 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 () => {
@@ -406,47 +401,46 @@ function installSdk(packageManager) {
406
401
  stdio: "inherit"
407
402
  });
408
403
  }
409
- async function writeSetup(framework) {
404
+ async function writeSetup(framework, server, ingestKey) {
410
405
  const sourceDirectory = existsSync(join(process.cwd(), "src")) ? "src" : ".";
411
406
  const relativePath = join(sourceDirectory, "error-mom.ts");
412
- if (framework.id === "next") await writeNextInstrumentation(sourceDirectory);
407
+ if (framework.id === "next") await writeNextInstrumentation(sourceDirectory, server, ingestKey);
413
408
  const environment = framework.envStyle === "next" ? "process.env.NEXT_PUBLIC_" : framework.envStyle === "vite" ? "import.meta.env.VITE_" : "process.env.";
414
409
  const moduleName = framework.envStyle === "node" ? "@kenkaiiii/error-mom/node" : "@kenkaiiii/error-mom";
415
410
  const contents = `${framework.id === "next" ? '"use client";\n\n' : ""}import { initErrorMom } from "${moduleName}";
416
411
 
417
- const server = ${environment}ERROR_MOM_SERVER;
418
- const projectKey = ${environment}ERROR_MOM_PROJECT_KEY;
412
+ // The project key is write-only (submit errors, read nothing), so committing
413
+ // it is safe \u2014 same model as a Sentry DSN. Env vars override when present.
414
+ const server = ${environment}ERROR_MOM_SERVER ?? ${JSON.stringify(server)};
415
+ const projectKey = ${environment}ERROR_MOM_PROJECT_KEY ?? ${JSON.stringify(ingestKey)};
419
416
  const release = ${environment}ERROR_MOM_RELEASE;
420
417
 
421
- export const errorMom =
422
- server && projectKey
423
- ? initErrorMom({
424
- server,
425
- projectKey,
426
- environment: ${environment}ERROR_MOM_ENVIRONMENT ?? "production",
427
- ...(release ? { release } : {}),
428
- })
429
- : undefined;
418
+ export const errorMom = initErrorMom({
419
+ server,
420
+ projectKey,
421
+ environment: ${environment}ERROR_MOM_ENVIRONMENT ?? "production",
422
+ ...(release ? { release } : {}),
423
+ });
430
424
  `;
431
425
  await writeFile(join(process.cwd(), relativePath), contents);
432
426
  return relativePath;
433
427
  }
434
- async function writeNextInstrumentation(sourceDirectory) {
428
+ async function writeNextInstrumentation(sourceDirectory, configuredServer, ingestKey) {
435
429
  const file = join(process.cwd(), sourceDirectory, "instrumentation.ts");
436
430
  if (existsSync(file)) return;
437
431
  const contents = `import type { Instrumentation } from "next";
438
432
 
439
433
  // Reports server-side errors (API routes, SSR, server actions, middleware)
440
434
  // that Next.js catches before they can become uncaught exceptions.
435
+ // The baked-in project key is write-only, so committing it is safe.
441
436
  export const onRequestError: Instrumentation.onRequestError = async (
442
437
  error,
443
438
  request,
444
439
  context,
445
440
  ) => {
446
441
  if (process.env.NEXT_RUNTIME !== "nodejs") return;
447
- const server = process.env.NEXT_PUBLIC_ERROR_MOM_SERVER;
448
- const projectKey = process.env.NEXT_PUBLIC_ERROR_MOM_PROJECT_KEY;
449
- if (!server || !projectKey) return;
442
+ const server = process.env.NEXT_PUBLIC_ERROR_MOM_SERVER ?? ${JSON.stringify(configuredServer)};
443
+ const projectKey = process.env.NEXT_PUBLIC_ERROR_MOM_PROJECT_KEY ?? ${JSON.stringify(ingestKey)};
450
444
  const { initErrorMom } = await import("@kenkaiiii/error-mom/node");
451
445
  initErrorMom({
452
446
  server,
@@ -460,26 +454,6 @@ export const onRequestError: Instrumentation.onRequestError = async (
460
454
  `;
461
455
  await writeFile(file, contents);
462
456
  }
463
- async function appendEnvironment(framework, server, key) {
464
- const prefix = framework.envStyle === "next" ? "NEXT_PUBLIC_" : framework.envStyle === "vite" ? "VITE_" : "";
465
- const file = join(process.cwd(), ".env.local");
466
- const existing = existsSync(file) ? await readFile(file, "utf8") : "";
467
- const lines = [
468
- [`${prefix}ERROR_MOM_SERVER`, server],
469
- [`${prefix}ERROR_MOM_PROJECT_KEY`, key],
470
- [`${prefix}ERROR_MOM_ENVIRONMENT`, "production"]
471
- ].filter(([name]) => !existing.includes(`${name}=`));
472
- if (lines.length) {
473
- await appendFile(
474
- file,
475
- `${existing && !existing.endsWith("\n") ? "\n" : ""}${lines.map(([name, value]) => `${name}=${value}`).join("\n")}
476
- `,
477
- {
478
- mode: 384
479
- }
480
- );
481
- }
482
- }
483
457
  function syntheticEvent() {
484
458
  return {
485
459
  eventId: crypto.randomUUID(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "error-mom",
3
- "version": "0.3.1",
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": {