Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/alkoleft/platform-context-exporter/115-java-concurrencygit clone --depth 1 https://github.com/alkoleft/platform-context-exporterWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.06604 |
| Opus 5 | $0.00000 | $0.03302 |
| Sonnet 5 | $0.00000 | $0.01321 |
| Haiku 4.5 | $0.00000 | $0.00660 |
Grade A, and why
115-java-concurrency scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 766 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Java rules for Concurrency objects
Effective Java concurrency relies on understanding thread safety fundamentals, using java.util.concurrent utilities, and managing thread pools with ExecutorService. Key practices include implementing concurrent design patterns like Producer-Consumer, leveraging CompletableFuture for asynchronous tasks, and ensuring thread safety through immutability and safe publication. Performance aspects like lock contention and memory consistency must be considered. Thorough testing, including stress tests and thread dump analysis, is crucial. Modern Java offers virtual threads for enhanced scalability, structured concurrency for simplified task management, and scoped values for safer thread-shared data as alternatives to thread-locals.
Implementing These Principles
These guidelines are built upon the following core principles:
- Master Thread Safety Fundamentals: Understand and correctly apply core concepts such as synchronization (locks, conditions), atomic operations (
java.util.concurrent.atomic), thread-safe collections (java.util.concurrent), immutability, and the Java Memory Model to ensure data integrity and prevent race conditions or deadlocks. - Efficient Thread Pool Management: Utilize
ExecutorServicefor robust thread management. Choose appropriate thread pool implementations and configure them with suitable sizing, keep-alive times, queue capacities, and rejection policies based on the application's workload. Implement graceful shutdown procedures. - Leverage Concurrent Design Patterns: Implement established patterns like Producer-Consumer (using
BlockingQueue) and Publish-Subscribe to structure concurrent applications effectively, promoting decoupling, scalability, and maintainability. - Embrace Asynchronous Programming with
CompletableFuture: EmployCompletableFutureto compose and manage asynchronous computations in a non-blocking way. Chain dependent tasks, combine results from multiple futures, and handle exceptions gracefully to build responsive and efficient applications. - Prioritize Immutability and Safe Publication: Design classes to be immutable whenever feasible to inherently achieve thread safety. Ensure that shared mutable objects are safely published (e.g., via
volatile, static initializers, or proper synchronization) so that their state is consistently visible to all threads. - Optimize for Performance, Considering Concurrency overheads: Be mindful of performance implications such as lock contention (minimize scope, use finer-grained locks), memory consistency (understand happens-before, use
volatilewhere appropriate), context switching overhead (size thread pools carefully), and potential issues like false sharing. - Thorough Testing and Debugging: Rigorously test concurrent code. This includes unit tests for thread-safe components, integration tests for interactions, and stress tests to reveal race conditions or deadlocks. Utilize thread dump analysis, proper logging, and concurrency testing tools.
- Adopt Modern Java Concurrency Features for Enhanced Development:
- Virtual Threads (Project Loom): Embrace virtual threads via
Executors.newVirtualThreadPerTaskExecutor()for I/O-bound tasks to dramatically increase scalability with minimal resource overhead. Avoid pooling virtual threads. - Structured Concurrency: Use
StructuredTaskScopeto simplify the management of multiple related concurrent tasks as a single unit of work, improving error handling, cancellation, and resource management. - Scoped Values: Prefer
ScopedValueoverThreadLocalfor sharing immutable data robustly and efficiently across tasks within a dynamically bounded scope, especially when working with virtual threads.
- Virtual Threads (Project Loom): Embrace virtual threads via
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 766 lines · 6,604 tokens per session scan A 31b8a5ea390a
115-java-concurrency is a cursor rule published in the GitHub repository alkoleft/platform-context-exporter (48 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 6,604 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
1c-coding-standards
Стандарты кода BSL: именование, запросы, коллекции.
anti_patterns
Критические антипаттерны 1С: запрос в цикле, реквизиты через точку.
bsl-ssl
Переиспользование БСП, разметка правок типовых модулей, устаревшие объекты.
edt-form-xml-requirements
Требования EDT к XML-формам (Form.form): extInfo, дефолты полей.
sdd-workflow
Specification-Driven Development: 9-фазный workflow разработки.
1c-report-direct-query
Прямой запрос в отчётах 1С (СКД) без схемы компоновки.