Agent skill
Execute Task
Autonomously implement a task following project conventions with iterative verification.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/task-exec-carrot-foundation-methodology-rules-2
SKILL.md
-
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
sharedlibraries. -
Implement changes:
- Follow existing patterns in the codebase (look at similar files for reference)
- Use path aliases (
@carrot-fndn/shared/...) for cross-library imports - Use Zod schemas for runtime validation, derive types with
z.infer - Use
@faker-js/fakerandzockerfor test data, never real data - For rule processors, follow the standard structure:
.processor.ts,.lambda.ts,.processor.spec.ts,.lambda.e2e.spec.ts,.test-cases.ts
-
Verify after each significant change: Run quality checks incrementally to catch issues early.
bashpnpm 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:
- What was changed and why
- Any design decisions made
- Any open questions or follow-up items
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?