Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/carrot-foundation/methodology-rules --skill rule-error-handling명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | rule-error-handling |
| description | Rule mapping for error-handling |
Apply this rule whenever work touches:
*.tsProper error handling ensures that failures are visible, diagnosable, and recoverable. In a Lambda-based architecture, error propagation also controls retry behavior and dead-letter queue routing.
Validate external data where it enters the system. Use Zod schemas:
const parseResult = RuleInputSchema.safeParse(event);
if (!parseResult.success) {
logger.error({ errors: parseResult.error.issues }, 'Invalid rule input');
throw new ValidationError('Rule input failed schema validation', {
cause: parseResult.error,
});
}
const ruleInput = parseResult.data;
Internal function-to-function calls within a trusted boundary do not need redundant validation; rely on TypeScript's type system there.
When catching an error to add context, preserve the original error as the cause:
try {
await fetchDocument(documentId);
} catch (error) {
throw new DocumentFetchError(
`Failed to fetch document ${documentId} during credit evaluation`,
{ cause: error },
);
}
This preserves the full error chain for debugging while adding the business context needed to understand what was happening.
Lambda handlers must not swallow errors for operations that should be retried. Let the error propagate to the Lambda runtime:
// Correct - error reaches Lambda runtime, triggers retry
export const handler = async (event: SQSEvent): Promise<void> => {
const input = parseAndValidate(event);
await processRule(input);
};
// Wrong - error is caught and swallowed, message is lost
export const handler = async (event: SQSEvent): Promise<void> => {
try {
const input = parseAndValidate(event);
await processRule(input);
} catch {
console.log('Something went wrong');
}
};
Use pino for all logging. Include structured fields that aid debugging:
logger.error(
{
documentId,
ruleId,
operation: 'evaluateResult',
err: error,
},
'Rule evaluation failed',
);
Never include credentials, tokens, full request/response bodies with PII, or other sensitive data in log output.
For failure modes that callers are expected to handle (e.g., a document that legitimately fails validation), consider using a Result-like return type instead of throwing:
type EvaluationResult =
| { success: true; output: RuleOutput }
| { success: false; reason: string };
Reserve thrown errors for unexpected failures (infrastructure errors, programming bugs, corrupted data).