Token导航 LogoToken导航TokenDH.com
图像处理需要联网github未标认证来源可访问许可证需确认审计通过

webflux-reactive-patternswebflux React 模式

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

396

周安装

17

GitHub Stars

4

下载量

139
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:webflux-reactive-patterns(webflux React 模式)
来源仓库:https://github.com/jheisonmb/skills
仓库路径:skills/webflux-reactive-patterns
安装命令:
npx skills add https://github.com/jheisonmb/skills --skill webflux-reactive-patterns
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jheisonmb/skills --skill webflux-reactive-patterns

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的命令执行。

SKILL.md

WebFlux Reactive Patterns

This skill provides comprehensive guidance for writing idiomatic, production-ready reactive code with Spring WebFlux in Java. It enforces pure reactive programming patterns and eliminates common anti-patterns that break reactive streams.

When to Use This Skill

Activate this skill when:

  • Developing or refactoring Spring WebFlux applications
  • Working with Mono and Flux reactive types
  • Implementing reactive REST APIs or microservices
  • Converting imperative code to reactive patterns
  • Reviewing reactive code for anti-patterns
  • Handling asynchronous operations in Java

Core Principles

1. Analysis Before Implementation

Before writing any code, analyze existing code, define an implementation plan, ask clarifying questions, and make explicit design decisions. See references/BEFORE_CODING.md for the complete workflow.

2. Pure Reactive Flow

Never use imperative constructs (if, throw, nested operations). Replace with reactive operators (filter, flatMap, switchIfEmpty, Mono.error()). All errors must be lazy using Mono.defer(). See references/REACTIVE_PATTERNS.md for detailed patterns.

3. No Literals

Never use string or number literals in code. Use constants for all values and enums for error messages. This ensures maintainability and type safety.

4. Helper Methods

Extract complex operations into single-responsibility helper methods. Main methods should read as high-level reactive flows. Includes builders, validations, and collection searches.

5. Parallel Operations

Use Mono.zip() for independent parallel validations. Use Flux.merge() for independent parallel operations. Never serialize what can run in parallel.

6. Clean Imports and Types

Always use short imported names, never fully qualified class names. Organize imports: Java standard library → external libraries → project classes. Let the compiler infer types when obvious.

Quick Reference

Common Anti-Patterns to Avoid:

  • if (condition) {...} else {...} → ✅ Use filter(), switchIfEmpty()
  • throw new Exception() → ✅ Use Mono.defer(() -> Mono.error())
  • .then(Mono.just(x)) mid-flow → ✅ Breaks fail-fast, restructure flow
  • ❌ Nested flatMap chains → ✅ Extract to helper methods
  • Mono<Void> mid-flow → ✅ Only at final return
  • ❌ String literals → ✅ Use constants or enums

Essential Patterns:

// Lazy error handling (mandatory pattern)
return Optional.ofNullable(data)
    .filter(d -> !d.isEmpty())
    .map(Mono::just)
    .orElse(Mono.defer(() -> Mono.error(BusinessType.EMPTY_DATA.build())));

// Repository with fallback
return repository.findById(id)
    .switchIfEmpty(Mono.defer(() -> Mono.error(BusinessType.NOT_FOUND.build(id))));

// Parallel validations
return Mono.zip(
    validateField1(data),
    validateField2(data),
    validateField3(data)
).then(Mono.just(data));

Detailed Documentation

For comprehensive guidance, refer to these resources:

Operator Selection Guide

Use this decision tree to select the right operator:

Is the operation synchronous (no I/O, no async calls)?

  • Yes → Use map()
  • No → Continue

Does it return Mono/Flux?

  • Yes → Use flatMap()
  • No → Use map()

Need to filter elements?

  • Use filter() + switchIfEmpty()

Need to handle empty streams?

  • Use switchIfEmpty()

Need to run operations in parallel?

  • Independent Monos → Mono.zip()
  • Independent Fluxes → Flux.merge()

Need to aggregate Flux to collection?

  • Use collect() or collectList()

Need lazy evaluation (especially errors)?

  • Use Mono.defer()

Quick Reference

  • map() - Synchronous transformations (1:1)
  • flatMap() - Asynchronous operations returning Mono/Flux (1:1)
  • filter() - Conditional filtering based on predicates
  • switchIfEmpty() - Fallback when stream is empty
  • zip() - Combine multiple independent Monos in parallel
  • merge() - Combine multiple Fluxes, emitting as they arrive
  • collect() - Aggregate Flux elements into collections
  • defer() - Lazy evaluation (critical for error handling)

Error Handling Philosophy

All errors must be lazy to maintain reactive semantics. Never use throw directly in reactive chains. Always wrap errors in Mono.defer() to ensure they're only evaluated when subscribed.

Why lazy errors matter:

  • Preserves fail-fast behavior in reactive chains
  • Allows proper error propagation through operators
  • Enables retry and fallback strategies
  • Maintains backpressure semantics

Quick Troubleshooting

For common reactive programming issues and solutions, refer to the Troubleshooting Guide.

If you need to extend this skill with additional patterns or examples, please maintain the workflow-based organization and ensure all code examples are minimal and focused on demonstrating specific patterns.

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.75%
按下载量换算52

Claude

28.68%
按下载量换算40

Cursor

17.33%
按下载量换算24

Gemini CLI

8.92%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills