Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

test-legacy-java测试 legacy Java

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andresnator/agents-orchestrator --skill test-legacy-java

简介

用于辅助 Java 项目开发、Spring 生态和后端工程实践。

  • 适合分析类结构、设计接口或生成测试代码。test-legacy-java 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需结合项目已有架构和依赖版本,避免通用教程式修改。
  • 涉及数据库或并发时应先确认运行环境再操作。
  • 安装方式:通过 npx 从指定 GitHub 仓库添加。

SKILL.md

Legacy Code Testing Skill (Java)

Battle-tested techniques for introducing tests into legacy Java code, based on Michael Feathers' "Working Effectively with Legacy Code." All examples use JUnit 4/5 and Mockito.

Core Philosophy

Legacy code = code without tests. The methodology is Cover and Modify — the opposite of "Edit and Pray."

  • Edit and Pray: Change the code carefully, test manually, hope nothing breaks. Slow, risky, fear-driven.
  • Cover and Modify: Build a safety net of tests first ("the Vise"), then change with confidence.

The golden rule: Cover → Modify → Refactor.

The Legacy Code Change Algorithm

Before any modification, follow these 5 steps:

  1. Identify change points — Where do I need to touch the code?
  2. Find test points — Where can I detect the behavior? (use Effect Sketches to trace impact)
  3. Break dependencies — Two reasons: Sensing (to observe effects) and Separation (to run code in isolation). See references/sensing-separation.md
  4. Write characterization tests — Document what the code does NOW, not what it should do. See references/characterization-tests.md
  5. Make changes and refactor — Now it's safe

The Seam Model

A Seam is a place where you can change the behavior of a program without editing the code at that place. Every seam has an Enabling Point — where you decide which behavior executes (production vs test).

TypeHow it worksEnabling PointWhen to use
Object SeamPolymorphism — override methods in subclassesWhere the object is created/injectedDefault choice in OO code
Link SeamClasspath/build config swaps implementationsBuild script, Maven scopeTest-scope dependencies
Preprocessing SeamMacros (#define)Compiler definitionsC/C++ only

For detailed examples, see references/seam-model.md.

Java and JUnit Version Selection

Before generating code, determine the project's Java and JUnit version:

AspectJava 8 + JUnit 4Java 11+ + JUnit 5Java 17+ + JUnit 5
Importsorg.junit.Testorg.junit.jupiter.api.TestSame + records, sealed
AssertionsAssert.assertEqualsAssertions.assertEqualsSame
Setup@Before/@After@BeforeEach/@AfterEachSame
Runner@RunWith@ExtendWithSame
Mockito@RunWith(MockitoJUnitRunner.class)@ExtendWith(MockitoExtension.class)Same
Static mockPowerMock requiredmockStatic() (mockito-inline)Same
LambdasYesYes + varYes + patterns

How to Use This Skill

  1. Detect the Java and JUnit version (table above)
  2. Apply the Legacy Code Change Algorithm (5 steps above)
  3. If stuck testing something → read references/quick-decision-flow.md for the "I can't test X" decision tree with technique-to-file routing
  4. Select technique from the reference files below based on your situation
  5. Apply incrementally: small steps, test after each change, commit frequently

Reference Files

Each reference file contains complete, compilable examples for each Java/JUnit combination:

FileContentChapters
references/characterization-tests.mdCharacterization tests, Golden Master, ApprovalTestsCh 13, 22
references/sensing-separation.mdSensing vs Separation, Fakes vs MocksCh 3
references/seam-model.mdObject Seams, Link Seams, Enabling PointsCh 4
references/dependency-breaking.mdParameterize Constructor, Extract Interface, Extract and Override, Adapt Parameter, Static Setter, Push Down DependencyCh 9, 25
references/pass-null-subclass-override.mdPass Null, Subclass and Override Method, Break Out Method ObjectCh 9, 25
references/method-object-skin-wrap.mdSupersede Instance Variable, Primitivize Parameter, Skin and Wrap the APICh 9, 14, 25
references/sprout-wrap-techniques.mdSprout Method/Class, Wrap Method/ClassCh 6
references/tdd-legacy.mdTDD in Legacy Code, Programming by Difference, Lean on the CompilerCh 8, 23
references/advanced-patterns.mdPinch Points, Effect Sketches, God Class clustering, Hot Spots, Scratch RefactoringCh 11, 12, 16-17, 20-21
references/mockito-patterns.mdMockito patterns: verify, captor, spy, static mock, InOrderCh 5
references/quick-decision-flow.md"I can't test X" decision tree with technique-to-file routingCh 9, 25

The Four Strategies for Breaking Dependencies

From Chapter 25. Organize your approach by choosing one of these four strategies:

StrategyTechniquesBest for
Accept & Adapt (don't change the signature)Adapt Parameter, Primitivize Parameter, Preserve SignaturesWhen you can't change callers
Subclass & Override (inheritance)Subclass and Override Method, Extract and Override Call/Factory/GetterFastest way to create seams
Inject & Delegate (composition)Parameterize Constructor/Method, Extract Interface/ImplementerArchitecturally cleanest
Brute Force (structural/global)Introduce Static Setter, Replace Global Reference, Supersede Instance VariableLast resort for Singletons

Rules for Generating Code

  1. Always ask or detect the Java and JUnit version before generating examples
  2. Use the compatible Mockito version (Mockito 4+ for JUnit 5, Mockito 2-3 for JUnit 4)
  3. In Java 11+, leverage var for local types in tests
  4. In Java 17+, use records for test DTOs and sealed interfaces where applicable
  5. Include comments explaining which Feathers technique is being applied and the chapter reference
  6. Each example must be complete and compilable (imports included)
  7. Name tests descriptively: testBehavior_whenCondition_thenResult
  8. When discovering bugs during characterization: document the bug as-is, do NOT fix it yet
  9. Prefer Object Seams over other seam types — they are the cleanest in Java
  10. Always mention whether you're applying Sensing or Separation when breaking a dependency

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.99%
按下载量换算29

Claude

30.04%
按下载量换算24

Cursor

18.5%
按下载量换算15

Gemini CLI

11.2%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills