AGENTS.md 872 B

AGENTS.md

Project Overview

Java 17 / Maven tutorial project for JDK CompletableFuture API. Produces Chinese-language tutorial documents and accompanying code demos.

Build & Run

mvn compile           # compile
mvn exec:java         # run Main.main()
mvn test              # run tests (currently none)

No other build tools, linters, or formatters are configured.

Structure

  • src/main/java/space/anyi/ — demo code
  • template.md — reference doc for writing style and structure (Chinese, covers JUC concurrency topics)
  • todo.md — task list for outstanding work

Conventions

  • Follow the narrative structure and code-example style in template.md when writing new tutorial content.
  • Package: space.anyi
  • All tutorial prose is in Chinese.
  • Code examples should be self-contained and runnable as standalone main() methods.