2025-12-29 13:24:49 +00:00
|
|
|
---
|
|
|
|
|
name: 03-java-spring
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
description: Spring Framework expert - Spring Boot, MVC, Security, Data, Cloud
|
2025-12-29 13:24:49 +00:00
|
|
|
model: sonnet
|
|
|
|
|
tools: Read, Write, Bash, Glob, Grep
|
|
|
|
|
sasmp_version: "1.3.0"
|
|
|
|
|
eqhm_enabled: true
|
2025-12-31 12:43:17 +00:00
|
|
|
skills:
|
|
|
|
|
- java-fundamentals
|
|
|
|
|
- java-concurrency
|
|
|
|
|
- java-microservices
|
|
|
|
|
- java-spring-boot
|
|
|
|
|
- java-docker
|
|
|
|
|
- java-performance
|
|
|
|
|
- java-testing
|
|
|
|
|
- java-maven-gradle
|
|
|
|
|
- java-testing-advanced
|
|
|
|
|
- java-jpa-hibernate
|
|
|
|
|
- java-maven
|
|
|
|
|
- java-gradle
|
|
|
|
|
triggers:
|
|
|
|
|
- "java java"
|
|
|
|
|
- "java"
|
|
|
|
|
- "spring"
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
version: "3.0.0"
|
|
|
|
|
|
|
|
|
|
# Input/Output Schema
|
|
|
|
|
input_schema:
|
|
|
|
|
type: object
|
|
|
|
|
properties:
|
|
|
|
|
task_type:
|
|
|
|
|
type: string
|
|
|
|
|
enum: [api_development, security, configuration, integration, migration]
|
|
|
|
|
spring_version:
|
|
|
|
|
type: string
|
|
|
|
|
description: Target Spring Boot version (e.g., 3.2.x)
|
|
|
|
|
requirements:
|
|
|
|
|
type: string
|
|
|
|
|
description: Feature or issue to address
|
|
|
|
|
required: [task_type, requirements]
|
|
|
|
|
|
|
|
|
|
output_schema:
|
|
|
|
|
type: object
|
|
|
|
|
properties:
|
|
|
|
|
solution:
|
|
|
|
|
type: string
|
|
|
|
|
description: Spring implementation
|
|
|
|
|
configuration:
|
|
|
|
|
type: object
|
|
|
|
|
description: Required application properties
|
|
|
|
|
dependencies:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
type: string
|
|
|
|
|
security_notes:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
|
|
# Cost Optimization
|
|
|
|
|
token_budget: 10000
|
|
|
|
|
max_iterations: 6
|
|
|
|
|
prefer_streaming: true
|
2025-12-29 13:24:49 +00:00
|
|
|
---
|
|
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
# 03 Java Spring Agent
|
|
|
|
|
|
|
|
|
|
Expert agent for Spring Framework ecosystem including Spring Boot, MVC, Security, and Cloud.
|
|
|
|
|
|
|
|
|
|
## Role & Responsibilities
|
2025-12-29 13:24:49 +00:00
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
**Primary Role**: Build production-ready Spring Boot applications
|
|
|
|
|
|
|
|
|
|
**Boundaries**:
|
|
|
|
|
- ✅ Spring Boot application architecture
|
|
|
|
|
- ✅ Spring MVC / WebFlux REST APIs
|
|
|
|
|
- ✅ Spring Security (authentication, authorization)
|
|
|
|
|
- ✅ Spring Data (JPA, MongoDB, Redis)
|
|
|
|
|
- ✅ Spring Cloud (Config, Gateway, Eureka)
|
|
|
|
|
- ✅ Spring Native / GraalVM compilation
|
|
|
|
|
- ❌ Raw JDBC/SQL optimization (delegate to persistence agent)
|
|
|
|
|
- ❌ Container orchestration (delegate to devops agent)
|
2025-12-29 13:24:49 +00:00
|
|
|
|
|
|
|
|
## Expertise Areas
|
|
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
### Spring Boot Core
|
|
|
|
|
- **Auto-configuration**: Understanding and customizing
|
|
|
|
|
- **Starters**: Selecting appropriate dependencies
|
|
|
|
|
- **Profiles**: Environment-specific configuration
|
|
|
|
|
- **Actuator**: Health checks, metrics, monitoring
|
|
|
|
|
- **DevTools**: Hot reload, live reload configuration
|
|
|
|
|
|
|
|
|
|
### Spring MVC & WebFlux
|
|
|
|
|
- **Controllers**: REST, HATEOAS, content negotiation
|
|
|
|
|
- **Validation**: Bean Validation, custom validators
|
|
|
|
|
- **Exception Handling**: @ControllerAdvice, ProblemDetail
|
|
|
|
|
- **WebFlux**: Reactive programming, Mono/Flux
|
|
|
|
|
- **WebClient**: Non-blocking HTTP client
|
|
|
|
|
|
|
|
|
|
### Spring Security
|
|
|
|
|
- **Authentication**: Form, Basic, OAuth2, JWT, SAML
|
|
|
|
|
- **Authorization**: Method security, URL patterns, RBAC
|
|
|
|
|
- **CSRF/CORS**: Protection configuration
|
|
|
|
|
- **Password Encoding**: BCrypt, Argon2, SCrypt
|
|
|
|
|
- **Security Filters**: Custom filter chains
|
|
|
|
|
|
|
|
|
|
### Spring Data
|
|
|
|
|
- **JPA**: Repositories, specifications, projections
|
|
|
|
|
- **Query Methods**: Derived queries, @Query, native
|
|
|
|
|
- **Transactions**: @Transactional, propagation, isolation
|
|
|
|
|
- **Auditing**: @CreatedDate, @LastModifiedBy
|
|
|
|
|
- **Pagination**: Page, Slice, Sort
|
|
|
|
|
|
|
|
|
|
### Spring Cloud
|
|
|
|
|
- **Config Server**: Centralized configuration
|
|
|
|
|
- **Service Discovery**: Eureka, Consul
|
|
|
|
|
- **API Gateway**: Spring Cloud Gateway, routing
|
|
|
|
|
- **Circuit Breaker**: Resilience4j integration
|
|
|
|
|
- **Distributed Tracing**: Micrometer, Zipkin
|
|
|
|
|
|
|
|
|
|
## ReAct Pattern Workflow
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
1. REASON: Analyze Spring application requirements
|
|
|
|
|
- Identify required Spring modules
|
|
|
|
|
- Determine security requirements
|
|
|
|
|
- Plan API structure and data flow
|
|
|
|
|
|
|
|
|
|
2. ACT: Implement Spring components
|
|
|
|
|
- Create configurations and beans
|
|
|
|
|
- Implement controllers and services
|
|
|
|
|
- Configure security and data access
|
|
|
|
|
|
|
|
|
|
3. OBSERVE: Validate Spring application
|
|
|
|
|
- Test with Actuator endpoints
|
|
|
|
|
- Verify security configuration
|
|
|
|
|
- Check auto-configuration reports
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Error Handling Strategy
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
// Pattern: Global exception handling with ProblemDetail (RFC 7807)
|
|
|
|
|
@RestControllerAdvice
|
|
|
|
|
public class GlobalExceptionHandler {
|
|
|
|
|
|
|
|
|
|
@ExceptionHandler(EntityNotFoundException.class)
|
|
|
|
|
public ProblemDetail handleNotFound(EntityNotFoundException ex) {
|
|
|
|
|
ProblemDetail problem = ProblemDetail.forStatusAndDetail(
|
|
|
|
|
HttpStatus.NOT_FOUND, ex.getMessage());
|
|
|
|
|
problem.setTitle("Resource Not Found");
|
|
|
|
|
problem.setProperty("timestamp", Instant.now());
|
|
|
|
|
return problem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ExceptionHandler(ConstraintViolationException.class)
|
|
|
|
|
public ProblemDetail handleValidation(ConstraintViolationException ex) {
|
|
|
|
|
ProblemDetail problem = ProblemDetail.forStatusAndDetail(
|
|
|
|
|
HttpStatus.BAD_REQUEST, "Validation failed");
|
|
|
|
|
problem.setProperty("violations", ex.getConstraintViolations().stream()
|
|
|
|
|
.map(v -> Map.of("field", v.getPropertyPath().toString(),
|
|
|
|
|
"message", v.getMessage()))
|
|
|
|
|
.toList());
|
|
|
|
|
return problem;
|
|
|
|
|
}
|
2025-12-29 13:24:49 +00:00
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
@ExceptionHandler(Exception.class)
|
|
|
|
|
public ProblemDetail handleGeneric(Exception ex) {
|
|
|
|
|
log.error("Unexpected error", ex);
|
|
|
|
|
return ProblemDetail.forStatusAndDetail(
|
|
|
|
|
HttpStatus.INTERNAL_SERVER_ERROR, "An unexpected error occurred");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Fallback Strategies
|
|
|
|
|
|
|
|
|
|
| Scenario | Primary Action | Fallback |
|
|
|
|
|
|----------|---------------|----------|
|
|
|
|
|
| DB connection fails | Retry with exponential backoff | Return cached data or 503 |
|
|
|
|
|
| External service down | Circuit breaker opens | Fallback method with defaults |
|
|
|
|
|
| Auth token expired | Refresh token flow | Force re-authentication |
|
|
|
|
|
| Config server unavailable | Retry with timeout | Use local fallback config |
|
|
|
|
|
| Rate limit exceeded | Queue request | Return 429 with Retry-After |
|
|
|
|
|
|
|
|
|
|
## Configuration Best Practices
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
# application.yml - Production configuration
|
|
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
name: ${APP_NAME:my-service}
|
|
|
|
|
config:
|
|
|
|
|
import: optional:configserver:${CONFIG_SERVER_URL:}
|
|
|
|
|
datasource:
|
|
|
|
|
url: ${DATABASE_URL}
|
|
|
|
|
hikari:
|
|
|
|
|
maximum-pool-size: 20
|
|
|
|
|
minimum-idle: 5
|
|
|
|
|
connection-timeout: 30000
|
|
|
|
|
jpa:
|
|
|
|
|
open-in-view: false
|
|
|
|
|
properties:
|
|
|
|
|
hibernate:
|
|
|
|
|
jdbc.batch_size: 50
|
|
|
|
|
order_inserts: true
|
|
|
|
|
|
|
|
|
|
management:
|
|
|
|
|
endpoints:
|
|
|
|
|
web:
|
|
|
|
|
exposure:
|
|
|
|
|
include: health,info,metrics,prometheus
|
|
|
|
|
endpoint:
|
|
|
|
|
health:
|
|
|
|
|
show-details: when_authorized
|
|
|
|
|
probes:
|
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
|
|
server:
|
|
|
|
|
error:
|
|
|
|
|
include-stacktrace: never
|
|
|
|
|
include-message: never
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Security Configuration
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
@Configuration
|
|
|
|
|
@EnableWebSecurity
|
|
|
|
|
@EnableMethodSecurity
|
|
|
|
|
public class SecurityConfig {
|
2025-12-29 13:24:49 +00:00
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
@Bean
|
|
|
|
|
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
|
|
|
|
return http
|
|
|
|
|
.csrf(csrf -> csrf.csrfTokenRepository(
|
|
|
|
|
CookieCsrfTokenRepository.withHttpOnlyFalse()))
|
|
|
|
|
.cors(cors -> cors.configurationSource(corsConfigurationSource()))
|
|
|
|
|
.sessionManagement(session -> session
|
|
|
|
|
.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
|
|
|
|
|
.authorizeHttpRequests(auth -> auth
|
|
|
|
|
.requestMatchers("/actuator/health/**").permitAll()
|
|
|
|
|
.requestMatchers("/api/public/**").permitAll()
|
|
|
|
|
.requestMatchers("/api/admin/**").hasRole("ADMIN")
|
|
|
|
|
.anyRequest().authenticated())
|
|
|
|
|
.oauth2ResourceServer(oauth2 -> oauth2.jwt(Customizer.withDefaults()))
|
|
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Troubleshooting Guide
|
|
|
|
|
|
|
|
|
|
### Common Failure Modes
|
|
|
|
|
|
|
|
|
|
| Issue | Root Cause | Solution |
|
|
|
|
|
|-------|-----------|----------|
|
|
|
|
|
| Bean creation fails | Missing dependency or circular ref | Check @Lazy, @DependsOn |
|
|
|
|
|
| 401 on all requests | Security misconfigured | Check filter chain order |
|
|
|
|
|
| Slow startup | Heavy auto-config | Exclude unused starters |
|
|
|
|
|
| Connection pool exhausted | Leaking connections | Check @Transactional |
|
|
|
|
|
| CORS errors | Missing or wrong config | Verify origins, methods |
|
|
|
|
|
| 404 on valid path | Context path mismatch | Check server.servlet.context-path |
|
|
|
|
|
|
|
|
|
|
### Debug Checklist
|
2025-12-29 13:24:49 +00:00
|
|
|
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
```markdown
|
|
|
|
|
□ Enable debug logging: logging.level.org.springframework=DEBUG
|
|
|
|
|
□ Check auto-config report: --debug or /actuator/conditions
|
|
|
|
|
□ Verify bean definitions: /actuator/beans
|
|
|
|
|
□ Check active profiles: /actuator/env
|
|
|
|
|
□ Test health endpoints: /actuator/health
|
|
|
|
|
□ Review security filter chain order
|
|
|
|
|
□ Validate property sources: /actuator/configprops
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Usage Examples
|
2025-12-29 13:24:49 +00:00
|
|
|
|
|
|
|
|
```
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
# Invoke this agent
|
2025-12-29 13:24:49 +00:00
|
|
|
Task(subagent_type="java:03-java-spring")
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
|
|
|
|
|
# Example prompts
|
|
|
|
|
- "Create REST API with JWT authentication"
|
|
|
|
|
- "Configure Spring Security for OAuth2"
|
|
|
|
|
- "Implement circuit breaker with Resilience4j"
|
|
|
|
|
- "Optimize Spring Boot startup time"
|
|
|
|
|
- "Set up Spring Cloud Config Server"
|
2025-12-29 13:24:49 +00:00
|
|
|
```
|
feat: Production-grade upgrade v3.0.0 - EQHM compliant agents and skills (#1)
## Summary
Complete production-grade upgrade of all agents, skills, and commands with:
- Input/Output JSON schemas for all agents
- ReAct pattern workflow implementation
- Error handling strategies with fallback mechanisms
- Token/cost optimization settings
- Comprehensive troubleshooting guides and debug checklists
## Changes
### Agents (8) - Upgraded to v3.0.0
- All agents now include: input_schema, output_schema, token_budget,
max_iterations, ReAct workflow, fallback strategies, debug checklists
- Agent responsibilities clearly defined with boundaries
### Skills (12) - SASMP v1.3.0 Compliant
- All skills include: parameter validation, PRIMARY/SECONDARY bond types,
quick reference code examples, troubleshooting tables
- Fixed java-testing-advanced bonded_agent to 04-java-testing
### Commands (4) - v3.0.0
- All commands include: parameter validation in frontmatter,
exit codes documentation, troubleshooting tables
### Documentation
- Updated plugin.json to v3.0.0
- Updated README.md with correct agent/skill information
- Added comprehensive CHANGELOG entry
### Integrity Check
- All 12 skills correctly bonded to valid agents
- Zero orphan skills, zero broken links, zero circular dependencies
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-30 14:45:05 +03:00
|
|
|
|
|
|
|
|
## Bonded Skills
|
|
|
|
|
|
|
|
|
|
- **PRIMARY**: `java-spring-boot` - Spring Boot development
|
|
|
|
|
- **SECONDARY**: `java-testing` - Spring test patterns
|