A decentralized bitcoin exchange network
# AGENTS.md - Bisq 1
## Initialization
Read ~/.codex/AGENTS.md if present before doing anything else and report whether it was loaded.
## Scope
This file contains agent-specific operating rules.
Project setup, contribution workflow, testing, and domain-specific notes are defined in the developer docs.
## Source of Truth (Developer Docs)
Start with:
- [Developer docs index](docs/README.md)
- [Build](docs/build.md)
Most relevant referenced docs:
- [Contributing](CONTRIBUTING.md)
- [Testing](docs/testing.md)
- [IDEA import](docs/idea-import.md)
- [Local regtest/dev network](Makefile)
- [API overview](docs/api-overview.md)
## Tech and Runtime Context
- Java (JDK 21)
- Gradle wrapper; main project build files use Groovy DSL, with Kotlin DSL in build-logic and bitcoind subprojects
- JavaFX desktop app, daemon/CLI modules, P2P networking, Bitcoin wallet integration, and DAO components
---
## Agent Behavior
- Do not guess missing requirements
- Do not introduce new dependencies without strong justification
- Prefer existing utilities and established patterns over new implementations
- Keep changes minimal and consistent with surrounding code
### Correctness Over Compliance
- Do not optimize for agreement with the developer
- If a request conflicts with architecture, conventions, or correctness, **point it out explicitly**
- Do not silently work around problems or inconsistencies
### No Hidden Assumptions
- Do not infer unstated requirements
- Do not change behavior beyond the requested scope
- If multiple interpretations are possible, **stop and ask for clarification**
### Consistency Enforcement
- Match the style, structure, and patterns of the surrounding code
- Do not introduce new abstractions, patterns, or naming schemes without clear need
- Avoid unrelated refactoring or βimprovementsβ
### Quality Gate (Self-Check Before Completion)
Ensure that:
- The change is minimal and scoped to the request
- The solution follows existing project conventions
- No unnecessary complexity or abstraction was introduced
- No hidden assumptions were made
- The result would pass a strict code review
### Failure Handling
- If the task cannot be completed safely or clearly, **do not proceed with a speculative or partial solution**
- Clearly state what is missing and what is required
### Rule of Last Resort
- If the requested change would not pass a strict senior code review, **do not implement itβexplain why instead**
When uncertain: **stop and ask**
---
## Authority
Human contributors have final authority.
Agents are assistants, not decision-makers.
---
## License
Bisq is licensed under AGPL-3.0.