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
Structured approach for AI agents to work effectively on complex projects spanning multiple context windows (hours/days). Based on Anthropic's research.
AI agents working across multiple context windows face challenges:
LRA workflow addresses this with:
/developer-kit:devkit.lra.init "Project description"Creates .lra/ directory with:
feature-list.json - All features with statusprogress.txt - Session loginit.sh - Environment setup/developer-kit:devkit.lra.start-sessionProtocol executed:
Implement ONE feature fully:
/developer-kit:devkit.lra.mark-feature [feature-id] passed
/developer-kit:devkit.lra.checkpoint "Session summary"/developer-kit:devkit.lra.initPurpose: Initialize LRA environment for multi-session development.
Usage:
/developer-kit:devkit.lra.init [project-description]Example:
/developer-kit:devkit.lra.init "Chat app with conversation history, user auth, and AI responses"Creates:
/developer-kit:devkit.lra.start-sessionPurpose: Start coding session with full context restoration.
Usage:
/developer-kit:devkit.lra.start-sessionStartup Protocol:
.lra/progress.txt.lra/feature-list.jsonOutput shows:
/developer-kit:devkit.lra.add-featurePurpose: Add discovered feature during development.
Usage:
/developer-kit:devkit.lra.add-feature [category] [priority] [description]Categories: core, ui, api, database, auth, testing, other
Priorities: critical, high, medium, low
Examples:
/developer-kit:devkit.lra.add-feature api high "Add user preferences endpoint"
/developer-kit:devkit.lra.add-feature auth critical "Implement 2FA"
/developer-kit:devkit.lra.add-feature testing high "Add E2E checkout tests"/developer-kit:devkit.lra.mark-featurePurpose: Mark feature as completed or failed.
Usage:
/developer-kit:devkit.lra.mark-feature [feature-id] [passed|failed]Example:
/developer-kit:devkit.lra.mark-feature F001 passed
/developer-kit:devkit.lra.mark-feature F002 failed/developer-kit:devkit.lra.checkpointPurpose: Create session checkpoint with git commit and progress update.
Usage:
/developer-kit:devkit.lra.checkpoint "[summary-message]"Example:
/developer-kit:devkit.lra.checkpoint "Implemented user auth and JWT tokens"What it does:
/developer-kit:devkit.lra.statusPurpose: Display current project status and progress.
Usage:
/developer-kit:devkit.lra.statusOutput shows:
/developer-kit:devkit.lra.recoverPurpose: Recover from broken state with diagnostics.
Usage:
/developer-kit:devkit.lra.recover [--diagnose|--revert]Options:
--diagnose: Analyze issues without changes--revert: Revert to last known good stateExample:
/developer-kit:devkit.lra.recover --diagnose
/developer-kit:devkit.lra.recover --revert# Initialize project
/developer-kit:devkit.lra.init "Build chat app with user auth and message history"
# Start first session
/developer-kit:devkit.lra.start-session
# → Selects: F001 - User registration endpoint
# Implement, test, verify
# ... code implementation ...
# Mark feature complete
/developer-kit:devkit.lra.mark-feature F001 passed
# End session
/developer-kit:devkit.lra.checkpoint "Implemented user registration with validation"# Start session 2
/developer-kit:devkit.lra.start-session
# → Reads progress from session 1
# → Selects: F002 - User login endpoint
# Implement, test
# ... code implementation ...
/developer-kit:devkit.lra.mark-feature F002 passed
/developer-kit:devkit.lra.checkpoint "Implemented login and JWT token generation"# Start session 3
/developer-kit:devkit.lra.start-session
# → Selects: F003 - Message creation endpoint
# During implementation, discover need for user rate limiting
/developer-kit:devkit.lra.add-feature api high "Rate limiting for message endpoints"
# Complete original feature
/developer-kit:devkit.lra.mark-feature F003 passed
/developer-kit:devkit.lra.checkpoint "Implemented message creation endpoint"
# New feature will be available in next session# Each subsequent session
/developer-kit:devkit.lra.start-session
# → Reads all previous progress
# → Verifies app is working
# → Selects next feature
# → Code → Test → Checkpoint.lra/feature-list.json{
"project": "Chat Application",
"description": "Real-time chat with AI responses",
"created_at": "2026-01-23T14:00:00Z",
"features": [
{
"id": "F001",
"category": "auth",
"priority": "critical",
"description": "User registration endpoint",
"acceptance_criteria": [
"POST /api/auth/register with email/password",
"Validate email format",
"Hash password before storage",
"Return JWT token on success"
],
"status": "completed",
"completed_at": "2026-01-23T16:30:00Z",
"session": 1,
"notes": "Added email validation, uses bcrypt"
},
{
"id": "F002",
"category": "auth",
"priority": "critical",
"description": "User login endpoint",
"acceptance_criteria": [
"POST /api/auth/login with email/password",
"Verify credentials",
"Return JWT token on success",
"Return 401 on invalid credentials"
],
"status": "in_progress",
"completed_at": null,
"session": 2,
"notes": ""
}
]
}.lra/progress.txt═══════════════════════════════════════════════════
LRA PROGRESS LOG
═══════════════════════════════════════════════════
Project: Chat Application
Created: 2026-01-23T14:00:00Z
Last Updated: 2026-01-23T17:45:00Z
SUMMARY
───────
Total Features: 42
Completed: 3 (7%)
In Progress: 1
Pending: 38
SESSION 1 (2026-01-23 14:00 - 16:30)
──────────────────────────────────────
Duration: 2h 30m
Features Completed: F001 (User registration)
Features Started: 1
Tests: 8 passed, 0 failed
Commits: 1
Notes: Initial auth setup complete
SESSION 2 (2026-01-23 16:30 - ongoing)
───────────────────────────────────────
Duration: 1h 15m+
Features Working: F002 (User login)
Tests: 5 passed, 0 failed
Notes: JWT integration in progressWrite small, testable features:
For each feature:
# Good checkpoint message
/developer-kit:devkit.lra.checkpoint "Implemented password reset: endpoint + email template + tests"
# Poor checkpoint message
/developer-kit:devkit.lra.checkpoint "Work"Always verify before checkpoint:
# Verify tests pass
npm test
# Verify app starts
npm run dev
# Verify git status
git statusAdd acceptance criteria during init or add-feature:
/developer-kit:devkit.lra.add-feature api critical "Get user profile"
# Generates with default criteria
# Update with actual acceptance criteria# Check health
/developer-kit:devkit.lra.status
# Diagnose issues
/developer-kit:devkit.lra.recover --diagnose
# View init script
cat .lra/init.sh
# Run it manually
bash .lra/init.sh# Check progress log
cat .lra/progress.txt
# View git history
git log --oneline
# Check feature list
cat .lra/feature-list.json# Option 1: Diagnose without changes
/developer-kit:devkit.lra.recover --diagnose
# Option 2: Revert to last checkpoint
/developer-kit:devkit.lra.recover --revert
# Option 3: Manual reset
git reset --hard HEAD~1
/developer-kit:devkit.lra.start-session# Break it down - Add smaller sub-features
/developer-kit:devkit.lra.add-feature [category] [priority] "Sub-feature 1"
/developer-kit:devkit.lra.add-feature [category] [priority] "Sub-feature 2"
# Mark current as failed
/developer-kit:devkit.lra.mark-feature [id] failed
# Checkpoint and note why
/developer-kit:devkit.lra.checkpoint "F001 split into F001a, F001b - too complex"# Save progress immediately
/developer-kit:devkit.lra.checkpoint "Partial: [describe what's done]"
# Note work in feature
# Update .lra/feature-list.json with current state
# Next session will have full contextKey Principle: Leave the codebase in a testable, working state at the end of each session.
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