agentsclimarketplace

Convert spring cloud gateway yaml rate limiter to java dsl

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/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.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill convert-spring-cloud-gateway-yaml-rate-limiter-to-java-dsl

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.3 KB, 407 tokens by cl100k_base, as published. Nobody here has run it

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. Structure: Ensure the route path (path()) and URI (uri()) from the YAML are preserved in the Java DSL.

Anti-Patterns

  • Do not invent values for replenishRate, burstCapacity, or requestedTokens; use the values provided in the YAML.
  • Do not use XML configuration.
  • Do not assume the use of Bucket4j unless explicitly requested.

Triggers

  • convert spring cloud gateway yaml to java
  • configure request rate limiter in java
  • route locator builder rate limiter
  • spring cloud gateway java configuration

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.