Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ArabelaTso/Skills-4-SE --skill spring-mvc-to-boot-migratorgit clone --depth 1 https://github.com/ArabelaTso/Skills-4-SEWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/arabelatso/skills-4-se/spring-mvc-to-boot-migrator)<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/spring-mvc-to-boot-migrator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/spring-mvc-to-boot-migrator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/spring-mvc-to-boot-migrator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/spring-mvc-to-boot-migrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00101 | $0.02026 |
| Opus 5 | $0.00051 | $0.01013 |
| Sonnet 5 | $0.00020 | $0.00405 |
| Haiku 4.5 | $0.00010 | $0.00203 |
Grade A, and why
spring-mvc-to-boot-migrator scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://localhost:8080/users How it starts
The opening of the file, as written. The whole thing — 330 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Spring MVC to Spring Boot Migrator
Overview
This skill automatically migrates Spring MVC applications to Spring Boot, transforming build configuration, annotations, XML configuration, controllers, and tests while preserving existing functionality. It handles Maven and Gradle projects, creates incremental git commits, and generates detailed migration summaries.
Quick Start
Basic Usage
# Navigate to your Spring MVC project
cd /path/to/spring-mvc-project
# Run migration (auto-detects Maven or Gradle)
python scripts/migrate.py .
# Or specify build tool explicitly
python scripts/migrate.py . --build-tool maven
The migration process will:
- Create a migration branch
- Analyze your codebase
- Update build configuration
- Migrate annotations
- Convert configuration files
- Update tests
- Generate a summary report
Example Migration
# Migrate Spring MVC project
python scripts/migrate.py /path/to/project
# Output:
# ✓ Detected build tool: maven
# ✓ Detected Spring version: 5.3.20
# ✓ Created migration branch: migrate-spring-mvc-to-boot
# ✓ Analyzing codebase...
# ✓ Found 8 controllers
# ✓ Found 12 services
# ✓ Found 15 test files
# ✓ Migrating build configuration...
# ✓ Migrating annotations...
# ✓ Migrating configuration...
# ✓ Migrating tests...
# ✓ Migration completed successfully!
Supported Migration Paths
Spring MVC → Spring Boot
What gets migrated:
-
Build Configuration
- Maven: Add Spring Boot parent, update dependencies, add Spring Boot plugin
- Gradle: Add Spring Boot plugin, update dependencies
-
Annotations
@Controller+@ResponseBody→@RestController@RequestMapping(method = RequestMethod.GET)→@GetMapping- Similar for
@PostMapping,@PutMapping,@DeleteMapping - Update imports from
javax.*tojakarta.*
-
Configuration
- XML configuration → Java configuration + application.properties
- web.xml → Spring Boot auto-configuration
- Create Spring Boot main application class
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/UserController_After.java 1.1 KB
- assets/UserController_Before.java 1.4 KB
- references/framework_comparison.md 8.2 KB
- references/migration_guide.md 11 KB
- scripts/migrate_annotations.py 7.9 KB runs code
- scripts/migrate_build.py 8.8 KB runs code
- scripts/migrate_config.py 5.0 KB runs code
- scripts/migrate_tests.py 6.0 KB runs code
- scripts/migrate.py 13 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 330 lines · 101 tokens per session scan A 30b268f4efc6
spring-mvc-to-boot-migrator is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (252 stars, last pushed 21d ago), licensed Apache-2.0. It adds 101 tokens to every session and 2,026 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
spring-boot-engineer
Generates Spring Boot 3.x configurations, creates REST controllers, implements Spring Security 6 authentication flows, sets up Spring Data JPA repositories, and configures reactive WebFlux endpoints. Use when building Spring Boot 3.x applications, microservices, or reactive Java applications; invoke for Spring Data…
java-architect
Use when building, configuring, or debugging enterprise Java applications with Spring Boot 3.x, microservices, or reactive programming. Invoke to implement WebFlux endpoints, optimize JPA queries and database performance, configure Spring Security with OAuth2/JWT, or resolve authentication issues and async processing…
123-java-design-patterns
Use when you need to select, review, or implement Java design and integration patterns — including classic Java design patterns, REST API patterns, Kafka and event-driven patterns, database and persistence patterns, and cross-cutting integration patterns. This should trigger for requests such as Apply Java design…
125-java-concurrency
Use when you need to apply Java concurrency best practices — including thread safety fundamentals, ExecutorService thread pool management, concurrent design patterns like Producer-Consumer, asynchronous programming with CompletableFuture, immutability and safe publication, deadlock avoidance, virtual threads…
301-frameworks-spring-boot-core
Use when you need to review, improve, or build Spring Boot 4.0.x applications — including proper usage of @SpringBootApplication, component annotations (@Controller, @Service, @Repository), bean definition and scoping, configuration classes and @ConfigurationProperties (with @Validated), component scanning…
302-frameworks-spring-boot-rest
Use when you need to design, review, or improve REST APIs with Spring Boot — including HTTP methods, resource URIs, status codes, DTOs, versioning, deprecation and sunset headers, content negotiation (JSON and vendor media types), ISO-8601 instants in DTOs, pagination/sorting/filtering, Bean Validation at the…