> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uselim.com/llms.txt
> Use this file to discover all available pages before exploring further.

# contracts, assets, scenarios, and accruals

> Handle recurring contracts, fixed assets, scenarios, and accrual schedules from the CLI.

# contracts, assets, scenarios, and accruals

These commands cover automation-heavy accounting workflows.

## contracts

```bash theme={null}
lim contracts list
lim contracts check
lim contracts deadlines
lim contracts generate --month 2026-03
lim contracts generate --month 2026-03 --dryRun
```

## assets

```bash theme={null}
lim assets list
lim assets add
lim assets depreciate --month 2026-03
lim assets dispose
lim assets sell
```

## scenarios

```bash theme={null}
lim scenarios list
lim scenarios show <id>
lim scenarios create --name "Growth plan" --baseDate 2026-04-01
lim scenarios generate <id>
lim scenarios apply <id>
lim scenarios discard <id>
lim scenarios diff <id> --from 2026-01-01 --to 2026-12-31
```

## accruals

```bash theme={null}
lim accruals list
lim accruals create --type prepaid_expense --totalAmount 120000 --startDate 2026-01-01 --endDate 2026-12-31 --expenseAccountId <id> --balanceAccountId <id>
lim accruals process --month 2026-03
lim accruals process --month 2026-03 --dryRun
```
