What problem does it solve? It standardizes the creation of reusable AI agent skills so that new skills are portable across any Spring Boot project instead of being hardcoded to one codebase. ## Core Features & Use Cases - Skill Scaffolding: Generates a properly structured .agents/skills/<name>/SKILL.md with valid YAML frontmatter (name and description) for automatic discovery and triggering. - Portability Rules: Enforces placeholder-based code examples ({basePackage}, {entityName}) and self-contained DTOs so skills never depend on a specific project. - Benchmarking & Evaluation Tooling: Includes scripts to aggregate benchmark results, generate HTML optimization reports, and serve an eval review viewer, plus grader, comparator, and analyzer agent definitions. - Use Case: When a developer wants to document a reusable pattern (e.g., custom exception handling) as an agent skill, this skill produces a compliant, project-agnostic SKILL.md ready for automatic triggering. ## Quick Start Ask the agent to create a new skill for a reusable pattern, for example: create a skill for global exception handling in Spring Boot.