magic-web-error-logging
GitHub规范 Magic Web 前端结构化错误日志,确保 logger.error 调用符合协议,正确映射 eventKey、errorKind 等字段,保留诊断信息并防止数据泄露。
Trigger Scenarios
Install
npx skills add dtyq/magic --skill magic-web-error-logging -g -y
SKILL.md
Frontmatter
{
"name": "magic-web-error-logging",
"description": "Enforce Magic Web structured business error logging when adding, changing, migrating, or reviewing `logger.error` calls in `src`, `enterprise\/src`, or `customer\/src`, including catch blocks, callbacks, ErrorBoundaries, workers, WebSocket\/storage flows, and logger adapters. Use to choose `eventKey\/errorKind\/error\/message\/context`, preserve historical diagnostics, prevent unsafe payloads, and verify the JS probe plus `\/log-report` behavior."
}
Magic Web Error Logging
Apply the current structured error protocol without changing the business workflow or losing diagnostic evidence.
Source Of Truth
Read the current implementation before changing logging behavior:
src/utils/log/errorReport.tssrc/utils/log/Logger.tssrc/utils/log/plugins/builtin/ReporterPlugin/ReporterPlugin.tspackages/logger/src/providers/volcengine/error.ts- the callback, wrapper, or adapter type at the actual call site
When source layers are involved, inspect src, enterprise/src, and customer/src; follow the active overlay instead of assuming src is the only implementation.
Read references/contract.md when deciding field behavior, Provider visibility, serialization, or sensitive-data boundaries. Read references/examples.md when migrating legacy calls, handling callbacks, or reviewing a proposed log change.
Required Workflow
- Identify the logger before editing.
- Confirm it is the unified Logger created by
src/utils/log, notconsole, a third-party callback logger, Bridge logger, test double, or unrelated object with anerrormethod. - Do not convert unsupported logger APIs to the structured contract.
- Confirm it is the unified Logger created by
- Inspect the complete business context.
- Read the catch/callback signature and its type definition.
- Read wrapper methods such as
createLogContext, PPT/recording adapters, and message-context builders. - Compare the historical call and all its arguments before changing anything.
- Map the data into the structured fields.
- Put the stable failure scenario in
eventKey. - Choose the narrowest existing
errorKindsupported by evidence. - Put the original thrown/rejected/callback error value in top-level
error. - Preserve the historical readable description in
message. - Move remaining bounded diagnostic values into
contextwith meaningful keys.
- Put the stable failure scenario in
- Audit information preservation.
- Verify every historical argument is still represented unless it is explicitly unsafe, duplicated by top-level
error, or an unbounded object. - Do not simplify merely because the new structure looks cleaner.
- Verify every historical argument is still represented unless it is explicitly unsafe, duplicated by top-level
- Add a short comment only when the mapping is not self-evident.
- Explain callback argument mapping, retained raw evidence with a size limit, or why sensitive/unbounded data is excluded.
- Do not narrate obvious assignments.
- Run focused verification and review the diff specifically for diagnostic loss.
Required Shape
Use one structured object:
logger.error({
eventKey: "stable_failure_event",
errorKind: "network",
error,
message: "Historical or stable business error description",
context: {
operation: "load",
},
})
eventKey and errorKind are required non-empty strings. error, message, and context are optional only when the business scenario genuinely has no corresponding value.
Never pass namespace, eventId, release, or captureSource; the Logger supplies them. Do not add a new business logging method or change POST /log-report.
Field Rules
eventKey
- Use lowercase
snake_case. - Describe one stable failure scenario, normally ending in
_failed,_timeout,_unsupported,_missing,_exhausted, or_anomaly. - Keep dynamic IDs, messages, status values, and retry counts out of the key.
- Reuse an existing key only when the failures should form the same problem family.
- Avoid mechanical duplication such as
upload_batch_batch_upload_failed.
errorKind
Prefer the current vocabulary:
network storage render permission worker lifecycle timeout
invalid_state quota parse database unknown
Use unknown when evidence does not support a narrower category. Do not infer categories from arbitrary error text.
error
- Preserve the original
Errorobject whenever available. - Preserve non-Error rejection/callback values at top level instead of converting them to a generic string.
- Do not construct a new
Errorin business code only for logging. - Do not pass only
error.messagewhen the original object exists. - Do not duplicate
messageandstackincontext; the bottom layer handles a realError.
message
- Preserve the historical message unless a deliberate, reviewed wording change is required.
- Use it for the stable business description, not for dynamic object serialization.
- Do not remove dynamic diagnostic text unless the same information remains in
erroror namedcontextfields. - Remember that a real
Errorcontrols the fire-probe exception message; the self-hosted record preserves both fields independently.
context
- Preserve bounded diagnostic fields with semantic names.
- Preserve common context builders such as recording/session state; call them without re-inserting the top-level
errorormessagewhen those fields are already separate. - Preserve raw evidence when it is necessary to reproduce parsing or protocol failures, using an explicit existing or justified size limit.
- Keep callback classifications such as
errorTypein context while placing the actual error value in top-levelerror. - Do not place credentials, tokens, secrets, policies, signatures, complete business bodies, full attachment collections, circular objects, DOM/SDK instances, or other unbounded values in context.
- Do not remove URLs, hrefs, filenames, or business fields merely because they might be sensitive; first determine their diagnostic value and actual sensitivity. Apply the narrowest justified masking or bound.
Scope Discipline
- Change only the logging call and the smallest required adapter type.
- Do not introduce unrelated sanitizers, data transforms, helper rewrites, or business behavior changes.
- Preserve established wrapper formatting, prefixes, operation data, slide/message/session fields, and other historical diagnostics.
- For a callback, use its declared parameter order. Do not guess with
args.find(...)when a typedErrorparameter exists. - For an adapter, accept and forward
StructuredErrorInput; enrich only the adapter-owned context and do not rewrite caller fields.
Review Mode
When reviewing logging changes, prioritize findings in this order:
- Original
Erroror non-Error failure value was dropped or replaced. - Historical message/context/href/raw evidence was removed without a justified boundary.
- Callback parameters were mapped incorrectly.
- Credentials, complete bodies, or unbounded objects were introduced.
eventKeyis dynamic, ambiguous, duplicated, or semantically misleading.errorKindis unsupported by the actual failure.- Unrelated business code changed during a logging-only task.
- Required explanatory comments or focused tests are missing.
Treat wording-only changes as acceptable when no diagnostic information is lost.
Verification
Perform checks proportional to the change:
rg -n "logger\.error" <touched-files>
corepack pnpm exec vitest run --config ./vitest.config.ts <focused-tests>
git diff --check
Also verify manually:
- the call is a single valid structured object;
- historical arguments are accounted for;
- real Error values remain top-level;
- context is bounded and serializable;
- no business code changed unintentionally;
- source and enterprise overlays remain consistent where applicable.
Done Criteria
Complete only when the new call is structurally valid, preserves all justified historical diagnostics, excludes only clearly unsafe or unbounded data, keeps business behavior unchanged, and passes focused verification.
Version History
- f9973c5 Current 2026-08-20 03:38


