.cursor/skills/task-exec/SKILL.md
Autonomously implement a task following project conventions with iterative verification.
npx skillsauth add carrot-foundation/methodology-rules Execute TaskInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Understand the task: Read the task description or plan carefully. Identify what needs to change, which projects are affected, and any constraints.
Identify affected files: Use search tools to find relevant files. Understand the existing code structure before making changes. Check module boundaries — processors can only import from shared libraries.
Implement changes:
@carrot-fndn/shared/...) for cross-library importsz.infer@faker-js/faker and zocker for test data, never real data.processor.ts, .lambda.ts, .processor.spec.ts, .lambda.e2e.spec.ts, .test-cases.tsVerify after each significant change: Run quality checks incrementally to catch issues early.
pnpm lint:affected
pnpm ts:affected
pnpm test:affected
Debug and fix: If tests or checks fail, read the error output carefully, identify the root cause, and fix it. Do not blindly retry — understand why it failed.
Summarize: When finished, provide a concise summary of:
databases
Create and modify Zod schemas for runtime validation with proper type inference.
testing
Write Vitest unit tests following project conventions with proper stubs and assertions.
testing
Analyze a pull request diff and provide structured feedback on correctness, conventions, and quality.
testing
Run quality gates, commit changes, push branch, and create a pull request.