用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/carrot-foundation/methodology-rules --skill rule-lambda命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | rule-lambda |
| description | Rule mapping for lambda |
Apply this rule whenever work touches:
**/*.lambda.tsLambda handlers are the entry points for AWS Lambda invocations. They must remain thin wrappers that connect the Lambda runtime to the processor.
A typical Lambda handler file:
import { wrapHandler } from '@carrot-fndn/shared/lambda';
import { VehicleValidationProcessor } from './vehicle-validation.processor';
const processor = new VehicleValidationProcessor();
export const handler = wrapHandler(processor);
The handler should contain no business logic. All evaluation, validation, and transformation happens in the processor.
Let errors propagate naturally to the Lambda runtime:
// Correct - errors propagate for retry
export const handler = wrapHandler(processor);
// Wrong - swallowing errors prevents retries
export const handler = async (event: unknown) => {
try {
return await processor.execute(event);
} catch {
return { statusCode: 500, body: 'Error' };
}
};
AWS Lambda has built-in retry mechanisms for asynchronous invocations. Swallowing errors defeats this reliability mechanism.
E2E tests exercise the full handler path including event deserialization:
import { handler } from './vehicle-validation.lambda';
import { validInput, invalidInput } from './vehicle-validation.test-cases';
describe('VehicleValidation Lambda E2E', () => {
it('should return approved for valid input', async () => {
const result = await handler(validInput);
expect(result.resultStatus).toBe('APPROVED');
});
});
These tests complement the processor unit tests by verifying the integration between the handler and processor layers.