> ## 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.

# 財務レポート

> 試算表、損益計算書、貸借対照表などのレポート生成コマンド。

# lim reports

財務レポートを生成するコマンドです。すべてのレポートは仕訳データからリアルタイムに算出されます。

## サブコマンド一覧

| コマンド                 | レポート名       | 説明            |
| -------------------- | ----------- | ------------- |
| `lim reports tb`     | 試算表         | 全勘定科目の借方・貸方残高 |
| `lim reports pl`     | 損益計算書       | 収益と費用の一覧      |
| `lim reports bs`     | 貸借対照表       | 資産・負債・純資産の状況  |
| `lim reports cf`     | キャッシュフロー計算書 | 資金の流れ         |
| `lim reports runway` | 資金繰り予測      | 月次バーンレートと残存月数 |
| `lim reports tax`    | 消費税集計       | 課税売上・課税仕入の集計  |

## 試算表

```bash theme={null}
lim reports tb --from 2026-04-01 --to 2027-03-31
```

```
試算表 (2026-04-01 ~ 2027-03-31)
────────────────────────────────────────────────
勘定科目             借方        貸方
────────────────────────────────────────────────
現金                150,000
普通預金          2,400,000
売掛金              550,000
...
────────────────────────────────────────────────
合計              7,420,000    7,420,000  ✓
```

## 損益計算書

```bash theme={null}
lim reports pl --from 2026-04-01 --to 2027-03-31
```

### 月次推移

```bash theme={null}
lim reports pl --monthly --from 2026-04-01 --to 2027-03-31
```

### 前年比較

```bash theme={null}
lim reports pl --compare previous-year
```

## 貸借対照表

```bash theme={null}
lim reports bs --date 2027-03-31
```

## 共通オプション

| オプション            | 説明                                  |
| ---------------- | ----------------------------------- |
| `--from`, `--to` | 期間の指定                               |
| `--date`         | 基準日の指定（BS向け）                        |
| `--format`       | 出力形式: `table`, `csv`, `json`, `pdf` |
| `--output`       | ファイル出力先                             |
| `--label`        | ラベルで絞り込み                            |
| `--compare`      | 比較対象: `previous-year`, `budget`     |
| `--monthly`      | 月次推移表示                              |

## 出力フォーマット

```bash theme={null}
# テーブル（デフォルト）
lim reports pl

# CSV
lim reports pl --format csv > pl.csv

# JSON（AI Agent連携向け）
lim reports pl --format json

# PDF
lim reports pl --format pdf --output pl.pdf
```

<Tip>
  `--format json` はAI
  Agentや外部ツールとの連携に最適です。MCPサーバー経由でも同じデータにアクセスできます。
</Tip>

## 資金繰り予測

```bash theme={null}
lim reports runway
```

```
Cash Runway Analysis
────────────────────────────────────────
Current cash:        ¥2,550,000
Monthly burn rate:   ¥360,000
Runway:              7.1 months
Runway (w/ revenue): 14.2 months
```

## 次のステップ

<CardGroup cols={2}>
  <Card title="統計" icon="chart-pie" href="/ja/cli/stats">
    ダッシュボードと統計情報。
  </Card>

  <Card title="財務諸表ガイド" icon="book-open" href="/ja/guides/financial-reports">
    レポートの読み方と活用法。
  </Card>
</CardGroup>
