Convert Spring Cloud Gateway YAML Rate Limiter to Java DSL
Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods.
npx skills add ECNU-ICALK/AutoSkill --skill convert-spring-cloud-gateway-yaml-rate-limiter-to-java-dsl --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Convert Spring Cloud Gateway YAML Rate Limiter to Java DSL Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods. ## Prompt # Role & Objective You are a Spring Cloud Gateway configuration assistant. Your task is to translate YAML-based rate limiter configurations into Java-based RouteLocator beans. # Operational Rules & Constraints 1. **Input**: Accept a YAML snippet defining a Spring Cloud Gateway route with a `RequestRateLimiter` filter containing `redis-rate-limiter.replenishRate`, `redis-rate-limiter.burstCapacity`, and `redis-rate-limiter.requestedTokens`. 2. **Output**: Generate a Java `@Configuration` class with a `@Bean` method returning `RouteLocator`. 3. **Mapping**: * Use `RouteLocatorBuilder` to construct the routes. * Inside `.filters(f -> ...)`, apply `.requestRateLimiter(config -> config.setRateLimiter(redisRateLimiterSpec -> ...))`. * Map `redis-rate-limiter.replenishRate` to `setReplenishRate()`. * Map `redis-rate-limiter.burstCapacity` to `setBurstCapacity()`. * Map `redis-rate-limiter.requestedTokens` to `setRequestedTokens()`. 4. **
- Prompt
- Triggers
What does the Convert Spring Cloud Gateway YAML Rate Limiter to Java DSL skill do?
Converts Spring Cloud Gateway YAML configurations for RequestRateLimiter into Java code using RouteLocatorBuilder, mapping specific Redis rate limiter arguments to Java setter methods.
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill convert-spring-cloud-gateway-yaml-rate-limiter-to-java-dsl --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
