# Developers

- [System Overview](https://docs.lombard.fi/developers/system-overview.md)
- [Pool Factory](https://docs.lombard.fi/developers/pool-factory.md): The PoolFactory contract acts as a deploye and registry for new Pool contracts. It also provides certain functions for changing the properties of the deployed pools, such as the origination fee.
- [Pool](https://docs.lombard.fi/developers/pool.md): The Pool contract is a core element of the LombardFi protocol that contains assets and governs their accounting logic.
- [Router](https://docs.lombard.fi/developers/router.md): The Router contract is an entry point for interacting with the LombardFi system, with much of the verification logic done in the contract to compress the size of the Pool contract.
- [Oracle Manager](https://docs.lombard.fi/developers/oracle-manager.md): The OracleManager contract aggregates answers by oracle systems such as Chainlink. Fetching a price involves querying oracles one-by-one until a satisfactory answer is obtained.
- [Chainlink Oracle Adapter](https://docs.lombard.fi/developers/chainlink-oracle-adapter.md): The ChainlinkOracleAdapter is a contract that uses Chainlink to retrieve price data for various assets. It supports all X / ETH feeds as well as WBTC and WETH.
- [Contract Reference](https://docs.lombard.fi/developers/contract-reference.md)
- [Router.sol](https://docs.lombard.fi/developers/contract-reference/router.sol.md)
- [Pool.sol](https://docs.lombard.fi/developers/contract-reference/pool.sol.md)
- [PoolFactory.sol](https://docs.lombard.fi/developers/contract-reference/poolfactory.sol.md)
- [OracleManager.sol](https://docs.lombard.fi/developers/contract-reference/oraclemanager.sol.md)
- [ChainlinkOracleAdapter.sol](https://docs.lombard.fi/developers/contract-reference/chainlinkoracleadapter.sol.md)
- [Audits](https://docs.lombard.fi/developers/audits.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lombard.fi/developers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
