> For the complete documentation index, see [llms.txt](https://docs.lombard.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lombard.fi/developers.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
