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
You are helping a developer fix a bug or debug an issue. Follow a systematic approach: understand the problem, trace the root cause, design a minimal fix, then implement and verify.
/developer-kit:devkit.fix-debugging [--lang=java|spring|typescript|nestjs|react|python|general] [issue-description or error-message]| Argument | Description |
|---|---|
$ARGUMENTS | Combined arguments passed to the command |
The command will automatically gather context information when needed:
Agent Selection: Based on the --lang parameter, select the appropriate agents:
This command leverages specialized sub-agents using the Task tool.
Parse $ARGUMENTS to detect the optional --lang parameter:
--lang=spring or --lang=java: Use Java/Spring Boot specialized agents--lang=typescript or --lang=ts: Use TypeScript specialized agents--lang=nestjs: Use NestJS specialized agents--lang=react: Use React frontend specialized agents--lang=aws: Use AWS specialized agents (architecture, CloudFormation, IaC)--lang=python or --lang=py: Use Python specialized agents--lang=general or no flag: Use general-purpose agents (default)Agent Mapping by Language:
| Phase | General (default) | Java/Spring Boot (--lang=spring or --lang=java) | TypeScript (--lang=typescript or --lang=ts) | NestJS (--lang=nestjs) | React (--lang=react) | AWS (--lang=aws) | Python (--lang=python or --lang=py) |
|---|---|---|---|---|---|---|---|
| Debugger | developer-kit:general-debugger | developer-kit:general-debugger | developer-kit:general-debugger | developer-kit:general-debugger | developer-kit:general-debugger | developer-kit:general-debugger | developer-kit:general-debugger |
| Architect | developer-kit:general-software-architect | developer-kit-java:java-software-architect-review | developer-kit-typescript:typescript-software-architect-review | developer-kit-typescript:typescript-software-architect-review | developer-kit-typescript:react-software-architect-review | developer-kit-aws:aws-solution-architect-expert | developer-kit-python:python-software-architect-expert |
| Code Review | developer-kit:general-code-reviewer | developer-kit-java:spring-boot-code-review-expert | developer-kit-typescript:general-code-reviewer | developer-kit-typescript:nestjs-code-review-expert | developer-kit-typescript:general-code-reviewer | developer-kit-aws:aws-architecture-review-expert | developer-kit-python:python-code-review-expert |
Goal: Understand exactly what's wrong
Initial issue: $ARGUMENTS
Actions:
Goal: Gather all relevant information about the failure
Actions:
Use the Task tool to launch 2-3 general-debugger subagents in parallel with different focuses:
Example Task tool usage:
Task(
description: "Analyze error and trace execution path",
prompt: "Analyze this error: [error description]. Trace the execution path from entry point to failure. Identify the exact failure point and potential causes.",
subagent_type: "general-debugger"
)Example agent prompts:
Goal: Identify the exact root cause of the issue
CRITICAL: Do not proceed to fixing until root cause is confirmed.
Actions:
Use the Task tool to launch 2 general-debugger subagents with analysis focus:
Synthesize findings into root cause statement:
You MUST call the AskUserQuestion tool to confirm root cause with user before proceeding
[GATE] STOP: Wait for user confirmation. Do NOT proceed to Phase 4 until the user has responded.
Goal: Design the minimal, safest fix
DO NOT PROCEED WITHOUT ROOT CAUSE CONFIRMATION
Actions:
Use the Task tool to launch 2-3 general-software-architect subagents in parallel with different approaches:
Review approaches considering:
Present to user:
You MUST call the AskUserQuestion tool to ask user which approach they prefer
[GATE] STOP: Wait for the user's choice. Do NOT proceed to Phase 5 until the user has responded.
Goal: Implement the fix
DO NOT START WITHOUT USER APPROVAL
Actions:
Goal: Ensure the code compiles and all tests pass
Actions:
Compile/Build the project:
mvn compile or mvn package -DskipTests./gradlew build -x test or ./gradlew compileJavanpm run buildFix any compilation errors before proceeding
Run tests:
mvn test or mvn verify./gradlew testnpm testIf tests fail:
Confirm all green before proceeding to verification
Goal: Confirm the fix is correct and doesn't introduce regressions
Actions:
Use the Task tool to launch 2 general-code-reviewer subagents:
Use the AskUserQuestion tool to confirm with user:
Wait for user feedback before finalizing
If regression tests needed:
Goal: Document what was fixed and learned
Actions:
--lang=general)developer-kit:general-debuggerdeveloper-kit:general-software-architectdeveloper-kit:general-code-reviewer--lang=spring or --lang=java)developer-kit:general-debuggerdeveloper-kit-java:java-software-architect-reviewdeveloper-kit-java:spring-boot-code-review-expert--lang=typescript or --lang=ts)developer-kit:general-debuggerdeveloper-kit-typescript:typescript-software-architect-reviewdeveloper-kit:general-code-reviewer--lang=nestjs)developer-kit:general-debuggerdeveloper-kit-typescript:typescript-software-architect-reviewdeveloper-kit-typescript:nestjs-code-review-expert--lang=react)developer-kit:general-debuggerdeveloper-kit-typescript:react-software-architect-reviewdeveloper-kit-typescript:general-code-reviewer--lang=python or --lang=py)developer-kit:general-debuggerdeveloper-kit-python:python-software-architect-expertdeveloper-kit-python:python-code-review-expertdeveloper-kit-python:python-security-expert--lang=aws)developer-kit-aws:aws-architecture-review-expertdeveloper-kit-aws:aws-solution-architect-expertdeveloper-kit-aws:aws-architecture-review-expertdeveloper-kit-aws:aws-cloudformation-devops-expertFallback: If specialized agents are not available, fall back to general-purpose agent.
// General agents (default)
Task(
description: "Brief task description",
prompt: "Detailed prompt for the sub-agent",
subagent_type: "developer-kit:general-debugger"
)
// Java/Spring Boot agents (when --lang=spring or --lang=java)
Task(
description: "Brief task description",
prompt: "Detailed prompt for the sub-agent",
subagent_type: "developer-kit-java:java-software-architect-review"
)
// TypeScript agents (when --lang=typescript or --lang=ts)
Task(
description: "Brief task description",
prompt: "Detailed prompt for the sub-agent",
subagent_type: "developer-kit-typescript:typescript-software-architect-review"
)
// NestJS agents (when --lang=nestjs)
Task(
description: "Brief task description",
prompt: "Detailed prompt for the sub-agent",
subagent_type: "developer-kit-typescript:nestjs-code-review-expert"
)
// React agents (when --lang=react)
Task(
description: "Brief task description",
prompt: "Detailed prompt for the sub-agent",
subagent_type: "developer-kit-typescript:react-frontend-development-expert"
)
// Python agents (when --lang=python or --lang=py)
Task(
description: "Analyze Python error and trace execution",
prompt: "Analyze this Python error and identify the root cause",
subagent_type: "developer-kit:general-debugger"
)
Task(
description: "Review Python architecture",
prompt: "Review the Python architecture using Clean Architecture and DDD principles",
subagent_type: "developer-kit-python:python-software-architect-expert"
)
Task(
description: "Review Python code quality",
prompt: "Review Python code for quality, Pythonic patterns, and best practices",
subagent_type: "developer-kit-python:python-code-review-expert"
)
// AWS agents (when --lang=aws)
Task(
description: "Debug AWS infrastructure issue",
prompt: "Analyze CloudFormation template and AWS resources to identify the root cause",
subagent_type: "developer-kit-aws:aws-architecture-review-expert"
)
Task(
description: "Fix CloudFormation template",
prompt: "Review and fix the CloudFormation template issues",
subagent_type: "developer-kit-aws:aws-cloudformation-devops-expert"
)
Task(
description: "Redesign AWS architecture",
prompt: "Propose architectural fixes following AWS best practices",
subagent_type: "developer-kit-aws:aws-solution-architect-expert"
)Throughout the process, maintain a todo list like:
[ ] Phase 1: Problem Capture
[ ] Phase 2: Evidence Collection
[ ] Phase 3: Root Cause Analysis
[ ] Phase 4: Fix Design
[ ] Phase 5: Implementation
[ ] Phase 6: Build & Test
[ ] Phase 7: Verification & Review
[ ] Phase 8: SummaryUpdate the status as you progress through each phase.
For simple issues, you can skip some phases:
When to use quick mode:
Quick mode flow:
Tell the user: "This appears to be a straightforward issue. Would you like to proceed with quick debug mode?"
Note: This command follows a systematic debugging approach to ensure bugs are fixed correctly the first time, with minimal risk of regression.
# With error message (general agents)
/developer-kit:devkit.fix-debugging NullPointerException in UserService.getUserProfile()
# With bug description
/developer-kit:devkit.fix-debugging Users are seeing stale data after profile update
# Java/Spring Boot debugging
/developer-kit:devkit.fix-debugging --lang=spring Bean injection failing in OrderService
# TypeScript debugging
/developer-kit:devkit.fix-debugging --lang=typescript Type error in async handler
# NestJS debugging
/developer-kit:devkit.fix-debugging --lang=nestjs Dependency injection circular reference in AuthModule
# React debugging
/developer-kit:devkit.fix-debugging --lang=react Component not re-rendering after state update
# Python debugging
/developer-kit:devkit.fix-debugging --lang=python TypeError in async FastAPI endpoint handler
# Python debugging
/developer-kit:devkit.fix-debugging --lang=py Import circular dependency in Django models
# AWS infrastructure debugging
/developer-kit:devkit.fix-debugging --lang=aws CloudFormation stack creation failing with IAM error
# AWS architecture issues
/developer-kit:devkit.fix-debugging --lang=aws Lambda function timeout causing API Gateway 504 errors
# With test failure
/developer-kit:devkit.fix-debugging Test UserServiceTest.testGetProfile is failing intermittently
# With performance issue
/developer-kit:devkit.fix-debugging API response time increased from 50ms to 2s after last deploy
# With production issue
/developer-kit:devkit.fix-debugging Production errors: "Connection pool exhausted" every 2 hoursdocs
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