Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.
90
90%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Risky
Do not use without reviewing
Verifies that implemented tasks meet specifications and pass code quality standards. This is the bridge between implementation and verification.
This command reviews a completed task to ensure:
Input: docs/specs/[id]/tasks/TASK-XXX.md (from devkit.spec-to-tasks)
Output: Review report with pass/fail status and findings
Idea → Functional Specification → Tasks → Implementation → Review → Code Cleanup → Done
(brainstorm) (spec-to-tasks) (task-implementation) (task-review) (code-cleanup)# Review a specific task
/specs:task-review docs/specs/001-user-auth/tasks/TASK-001.md
# With language specification for code review
/specs:task-review --lang=spring docs/specs/001-user-auth/tasks/TASK-001.md
/specs:task-review --lang=typescript docs/specs/001-user-auth/tasks/TASK-001.md
/specs:task-review --lang=nestjs docs/specs/001-user-auth/tasks/TASK-001.md
/specs:task-review --lang=react docs/specs/001-user-auth/tasks/TASK-001.md
/specs:task-review --lang=python docs/specs/001-user-auth/tasks/TASK-001.md
/specs:task-review --lang=general docs/specs/001-user-auth/tasks/TASK-001.md| Argument | Required | Description |
|---|---|---|
--lang | No | Target language/framework: java, spring, typescript, nestjs, react, python, general |
--no-confirm | No | Skip user confirmation and auto-callback. Use when running inside automated loops (e.g., Ralph Loop). |
task-file-path | Yes | Path to the task file (e.g., docs/specs/001-user-auth/tasks/TASK-001.md) |
The command will automatically gather context information when needed:
You are reviewing an implemented task to verify it meets specifications and passes code review. Follow a systematic approach: analyze the task, verify implementation, check spec compliance, and perform code review.
Goal: Read and understand the task and its specifications
Input: $ARGUMENTS (task file path or --spec and --task parameters)
Actions:
Create todo list with all phases
Parse $ARGUMENTS to extract:
--lang parameter (language/framework for code review)task-file-path (path to task file) OR --spec and --task parametersSupport two argument formats:
/specs:task-review docs/specs/001-feature/tasks/TASK-001.md/specs:task-review --spec=docs/specs/001-feature --task=TASK-001If --spec and --task are provided, construct the task file path as: {spec}/tasks/{task}.md
Read the task file (docs/specs/[id]/tasks/TASK-XXX.md)
Extract:
Read the functional specification file (from task's spec reference)
Verify both files exist and are valid
If files not found, ask user for correct path via AskUserQuestion
Goal: Verify the task was implemented according to specifications
Actions:
Identify what files/components were created for this task:
Verify implementation matches task description:
Document findings:
Read decision-log.md if exists:
decision-log.md in the spec folder (extract from task frontmatter spec: field)Goal: Verify all acceptance criteria and DoD items are met
Actions:
List all acceptance criteria from the task file
List all DoD items from the task file
For each acceptance criterion and DoD item:
Mark each item as:
review_statusUpdate traceability-matrix.md:
docs/specs/[id]/traceability-matrix.md (extract from task frontmatter spec: field)docs/specs/[id]/traceability-matrix.mdGoal: Ensure implementation aligns with functional specification
Actions:
Goal: Verify code passes quality standards
Actions:
--lang parameter, select appropriate code review agent:| Language | Code Review Agent |
|---|---|
java | developer-kit-java:spring-boot-code-review-expert |
spring | developer-kit-java:spring-boot-code-review-expert |
typescript | developer-kit:general-code-reviewer |
nestjs | developer-kit-typescript:nestjs-code-review-expert |
react | developer-kit:general-code-reviewer |
python | developer-kit-python:python-code-review-expert |
php | developer-kit-php:php-code-review-expert |
general | developer-kit:general-code-reviewer |
Goal: Create comprehensive review report
Actions:
review_status using this rule:
---
review_status: PASSED # or FAILED
task_id: TASK-XXX
task_title: [Task Title]
spec_file: [spec-file.md]
review_date: [ISO date]
language: [language]
summary:
implementation: COMPLETE|INCOMPLETE
acceptance_criteria: ALL_MET|FAILED
definition_of_done: ALL_MET|FAILED
spec_compliance: COMPLIANT|DEVIATIONS|NON_COMPLIANT
code_review: PASSED|ISSUES|FAILED
critical_issues: N # required if FAILED
major_issues: N # required if FAILED
minor_issues: N
---
# Task Review Report: TASK-XXX
**Task**: [Task Title]
**Specification**: [spec-file.md]
**Reviewed**: [date]
**Language**: [language]
## Summary
| Category | Status |
|----------|--------|
| Implementation | ✅ Complete / ⚠️ Partial / ❌ Incomplete |
| Acceptance Criteria | ✅ All Met / ⚠️ Partial / ❌ Failed |
| Definition of Done | ✅ All Met / ⚠️ Partial / ❌ Failed |
| Spec Compliance | ✅ Compliant / ⚠️ Deviations / ❌ Non-compliant |
| Code Review | ✅ Passed / ⚠️ Issues Found / ❌ Failed |
**Overall Result**: ✅ PASSED / ❌ FAILED
## Implementation Verification
- **Implemented**: [description]
- **Deviations**: [list if any]
## Acceptance Criteria
| Criterion | Status | Evidence |
|-----------|--------|----------|
| Criterion 1 | ✅/⚠️/❌ | [evidence] |
| Criterion 2 | ✅/⚠️/❌ | [evidence] |
## Definition of Done
| DoD Item | Status | Evidence |
|----------|--------|----------|
| DoD item 1 | ✅/⚠️/❌ | [evidence] |
| DoD item 2 | ✅/⚠️/❌ | [evidence] |
## Specification Compliance
- **Compliant**: Yes/No
- **Deviations**: [list]
## Traceability
-- **Traceability Coverage**: N/N requirements covered (X%)
-- **REQ-IDs**: [List of REQ-IDs covered by this task]
## Code Review Findings
### Critical
- [list]
### Major
- [list]
### Minor
- [list]
### Info
- [list]
## Recommendations
- [actionable recommendations]
## Decisions Referenced
- [List any DEC-ID entries from decision-log.md that explain deviations]
3. **If decision-log.md exists, include decisions referenced**:
- Search for DEC entries mentioning this task (TASK-XXX)
- Summarize key decisions that affected implementation
- Reference specific decision IDs (e.g., See DEC-003)docs/specs/[id]/tasks/TASK-XXX--review.mdGoal: Present review results to user
Actions:
If --no-confirm was passed: SKIP this phase entirely. Do NOT use AskUserQuestion. Do NOT invoke task-implementation automatically. Simply save the review report and terminate so the caller (e.g., Ralph Loop) can read the report and decide the next step.
Present the review report to the user
Ask for confirmation via AskUserQuestion:
If issues found:
docs/specs/[id]/tasks/TASK-XXX--review.md/specs:task-implementation --lang=[language] --task="docs/specs/[id]/tasks/TASK-XXX.md"/devkit.spec-review [spec-folder] to verify the spec is still accurate if issues suggest spec-level problemsIf review approved (no issues or all issues fixed):
reviewed when all checkboxes are checked/specs:code-cleanup --lang=[language] --task="docs/specs/[id]/tasks/TASK-XXX.md"Goal: Document what was accomplished
Actions:
docs/specs/[id]/tasks/TASK-XXX--review.md/specs:code-cleanup to finalize the task/specs:task-implementation to fix issuesThis command completes the verification loop:
/specs:brainstorm
↓
[Creates: docs/specs/[id]/YYYY-MM-DD--feature-name.md]
↓
/specs:spec-to-tasks --lang=[language] docs/specs/[id]/
↓
[Creates: docs/specs/[id]/tasks/TASK-XXX.md]
↓
/specs:task-implementation--lang=[language] --task="docs/specs/[id]/tasks/TASK-XXX.md"
↓
[Implements task]
↓
/specs:task-review --lang=[language] "docs/specs/[id]/tasks/TASK-XXX.md"
↓
[Verifies implementation, generates review report]
↓
[If issues: back to implementation]
[If approved: proceed to next task]# Review a completed task
/specs:task-review --lang=spring docs/specs/001-user-auth/tasks/TASK-001.md/specs:task-review --lang=typescript docs/specs/005-checkout/tasks/TASK-003.md/specs:task-review --lang=python docs/specs/010-payment/tasks/TASK-002.mdThroughout the process, maintain a todo list like:
[ ] Phase 1: Task Analysis
[ ] Phase 2: Implementation Verification
[ ] Phase 3: Acceptance Criteria Validation
[ ] Phase 4: Specification Compliance Check
[ ] Phase 5: Code Review
[ ] Phase 6: Review Report Generation
[ ] Phase 7: Review Confirmation
[ ] Phase 8: SummaryUpdate the status as you progress through each phase.
Note: This command ensures quality control in the development workflow by verifying that implemented tasks meet specifications and pass code review standards before proceeding to the next task.
docs
plugins
developer-kit-ai
developer-kit-aws
agents
docs
skills
aws
aws-cli-beast
aws-cost-optimization
aws-drawio-architecture-diagrams
aws-sam-bootstrap
aws-cloudformation
aws-cloudformation-auto-scaling
aws-cloudformation-bedrock
aws-cloudformation-cloudfront
aws-cloudformation-cloudwatch
aws-cloudformation-dynamodb
aws-cloudformation-ec2
aws-cloudformation-ecs
aws-cloudformation-elasticache
references
aws-cloudformation-iam
references
aws-cloudformation-lambda
aws-cloudformation-rds
aws-cloudformation-s3
aws-cloudformation-security
aws-cloudformation-task-ecs-deploy-gh
aws-cloudformation-vpc
references
developer-kit-core
agents
commands
skills
developer-kit-devops
developer-kit-java
agents
commands
docs
skills
aws-lambda-java-integration
aws-rds-spring-boot-integration
aws-sdk-java-v2-bedrock
aws-sdk-java-v2-core
aws-sdk-java-v2-dynamodb
aws-sdk-java-v2-kms
aws-sdk-java-v2-lambda
aws-sdk-java-v2-messaging
aws-sdk-java-v2-rds
aws-sdk-java-v2-s3
aws-sdk-java-v2-secrets-manager
clean-architecture
graalvm-native-image
langchain4j-ai-services-patterns
references
langchain4j-mcp-server-patterns
references
langchain4j-rag-implementation-patterns
references
langchain4j-spring-boot-integration
langchain4j-testing-strategies
langchain4j-tool-function-calling-patterns
langchain4j-vector-stores-configuration
references
qdrant
references
spring-ai-mcp-server-patterns
spring-boot-actuator
spring-boot-cache
spring-boot-crud-patterns
spring-boot-dependency-injection
spring-boot-event-driven-patterns
spring-boot-openapi-documentation
spring-boot-project-creator
spring-boot-resilience4j
spring-boot-rest-api-standards
spring-boot-saga-pattern
spring-boot-security-jwt
assets
references
scripts
spring-boot-test-patterns
spring-data-jpa
references
spring-data-neo4j
references
unit-test-application-events
unit-test-bean-validation
unit-test-boundary-conditions
unit-test-caching
unit-test-config-properties
references
unit-test-controller-layer
unit-test-exception-handler
references
unit-test-json-serialization
unit-test-mapper-converter
references
unit-test-parameterized
unit-test-scheduled-async
references
unit-test-service-layer
references
unit-test-utility-methods
unit-test-wiremock-rest-api
references
developer-kit-php
developer-kit-project-management
developer-kit-python
developer-kit-specs
commands
docs
hooks
test-templates
tests
skills
developer-kit-tools
developer-kit-typescript
agents
docs
hooks
rules
skills
aws-cdk
aws-lambda-typescript-integration
better-auth
clean-architecture
drizzle-orm-patterns
dynamodb-toolbox-patterns
references
nestjs
nestjs-best-practices
nestjs-code-review
nestjs-drizzle-crud-generator
nextjs-app-router
nextjs-authentication
nextjs-code-review
nextjs-data-fetching
nextjs-deployment
nextjs-performance
nx-monorepo
react-code-review
react-patterns
shadcn-ui
tailwind-css-patterns
tailwind-design-system
references
turborepo-monorepo
typescript-docs
typescript-security-review
zod-validation-utilities
references
github-spec-kit