按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。
Debug Meteor applications
Find the first failing boundary before changing behavior. Produce a stable reproduction, evidence for one cause, and a verification target. Then use the skill that owns the repair.
Diagnosis loop
- Record the exact symptom, complete error and stack, command or user action,
Meteor release, resolved Atmosphere and npm versions, environment, and last known working state.
- Reproduce with the narrowest stable command or action before editing.
- Classify the first uncertain boundary with the table below.
- Read existing evidence before adding instrumentation. Compare client and
server output, recent changes, and passing versus failing environments.
- Add one targeted observation only when current evidence cannot answer the
question. Do not combine a diagnostic change with a speculative fix.
- State one falsifiable hypothesis and the observation that would reject it.
- Change one variable, reproduce, and trace a bad value or event backward to
its origin.
- Fix the confirmed cause through the owning skill. Add a regression at the
lowest reliable layer when the failure can recur.
- Re-run the focused reproduction, then the affected suite or
production-like check. Remove temporary diagnostics and artifacts.
If several evidence-backed hypotheses fail, revisit the boundary map and assumptions before stacking mitigations or widening the change.
Select the boundary
| Symptom | First evidence | Read |
|---|---|---|
| Build stalls, compilation error, rebuild regression, Rspack or SWC failure | Full build output, --verbose, exact release and build-package versions | Build debugging |
| Server crashes before startup or fails in a method, publication, job, or hook | Earliest server stack, startup order, request-correlated evidence | Runtime and inspector |
| Client stack, stale render, reactive loop, or client/server disagreement | Browser stack, rendered state, reactive invalidation, server comparison | Runtime and inspector, then the React or Blaze skill |
| Missing documents, stuck subscription, reconnect, or proxy/WebSocket symptom | Server query, publication output, DDP state, subscription readiness, Minimongo | DDP and data |
| Current output cannot distinguish an entry, guard, branch, state change, or event order | A small set of redacted boundary observations | Logs and instrumentation |
| Meteor Mocha failure, suite-only failure, async flake, or browser E2E failure | Full hook output, client/server test counts, existing report and trace | Tests and browser |
| Cordova or HCP problem, device-only failure, or live incident | Device logs and versions; deployment logs, health, metrics, release diff | Mobile and production |
A syntax error needs its stack, not browser tracing. A browser-only hydration race needs client evidence, not a server inspector. Use the smallest tool that can reject the current hypothesis.
Evidence rules
- Label runtime side and operation in temporary logs. Include a request or
event identifier only when concurrent flows can interleave.
- Record selected, redacted fields. Never log credentials, tokens, cookies,
authorization headers, private settings, unrestricted method arguments, or full user documents.
- Treat
console.logas temporary instrumentation. Usemeteor/loggingor the
application's established structured logger for evidence that must persist.
- Use
.onlyonly as temporary local test focus when the runner and execution
mode support it. Remove it and run the broader suite before handoff.
- Prefer observable readiness over sleeps: subscription ready, settled method,
expected document, visible UI, or a specific browser event.
- Inspect existing Playwright reports and traces before starting an interactive
browser. For a playwright-cli request, first check whether the executable is available. If it is unavailable, obtain authority before installation or browser downloads. Explicitly report that availability result and request the authority rather than only asking for the application URL. Use it only for a real browser boundary.
- For an authorized ad hoc
playwright-clireproduction: MUST run
snapshot, console, and requests, start tracing before the failing action, stop tracing immediately after it, and close the browser session. Do not substitute source inspection for this browser evidence or omit the trace because the console or network already suggests a cause.
- Use only an application path or URL the user placed in scope. If the current
workspace has no app and the prompt gives no URL, ask for one. Do not scan unrelated directories, processes, or ports to discover an application.
- Read through
meteor shellandmeteor mongobefore mutating. Never use
meteor reset --db as a diagnostic shortcut.
- On production, do not expose an inspector, deploy a debug build, retain
secret-bearing traces, or experiment on live data.
Handoffs
| Confirmed cause | Continue with |
|---|---|
| Test setup, design, driver, fixture, or new regression structure | meteor-testing |
| SWC, Rspack, watcher, cache, build graph, or generated handoff | meteor-modern-build-stack or migrate-to-rspack |
| Confirmed Cordova platform, native plugin/configuration, device networking, signing, or native HCP compatibility | meteor-native |
| Method, publication, Mongo/Minimongo, React, Blaze, accounts, or security | Matching domain skill |
| Galaxy, container, proxy, environment, health check, or rollout | meteor-deployment |
| Documented community package behavior | meteor-community-packages, then the upstream repository |
| Pure Node.js, browser, database, or runner failure with no Meteor boundary | General debugging guidance |
Cleanup
Before handoff:
- Remove only the logs,
debuggerstatements,.onlymarkers, pauses,
temporary routes, and debug settings added for this investigation.
- Delete or protect screenshots, traces, profiles, saved browser state, and
dumps according to their data sensitivity.
- Re-run the original reproduction and the affected suite.
- Report the confirmed cause, evidence, fix, verification, and any remaining
uncertainty.
Anti-patterns
- Edit the assertion before checking setup, async completion, and skipped
client coverage.
- Add logs across the application without a hypothesis.
- Serialize every runtime object indiscriminately. Circular values, reactive
wrappers, getters, binary data, and large documents need selected snapshots.
- Treat a focused passing test as success when the suite still fails.
- Add arbitrary sleeps, broad selectors, retries, or heap increases until the
symptom disappears.
- Install browser tooling or scaffold tests for a server, build, or database
failure.

