Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions claude.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ API Key(クエリパラメータ)と OAuth 2.0(Bearer トークン)の
2. `BACKLOG_SPACE` 環境変数
3. 設定ファイルの `defaultSpace`

プロジェクト解決の優先順位:
1. コマンドローカルの `--project` / `-p` フラグ
2. `BACKLOG_PROJECT` 環境変数
3. インタラクティブプロンプト(`issue create` 等の一部コマンド)

## 設計原則

### 名前解決
Expand Down Expand Up @@ -168,8 +173,15 @@ const name = await promptRequired("Project name:", args.name);
プロジェクトが必要だが指定されていない場合の解決順:

1. コマンドローカルの `--project` / `-p` フラグ
2. Git リモート URL からの推測(Backlog Git のリモートが設定されている場合)
3. インタラクティブ選択(TTY 接続時)
2. `BACKLOG_PROJECT` 環境変数
3. インタラクティブ選択(`issue create` 等の一部コマンド、TTY 接続時)

プロジェクト解決のユーティリティ:

- `resolveProjectArg(argValue?)` — 必須プロジェクトの解決(引数 → 環境変数 → エラー終了)
- 37 の必須プロジェクトコマンドで使用
- 任意プロジェクトのコマンド(`issue list`, `issue create`, `browse`)では
`args.project || process.env.BACKLOG_PROJECT` で個別にフォールバック

### エラーハンドリング

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/browse.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Backlog のページをデフォルトブラウザで開きます。

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--issues` | | boolean | 課題一覧を開く |
| `--wiki` | | boolean | Wiki を開く |
| `--git` | | boolean | Git リポジトリページを開く |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/category/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog category create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | カテゴリ名 |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/category/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog category delete <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--confirm` | | boolean | 確認プロンプトをスキップ |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/category/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog category edit <id> [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | カテゴリ名 |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/category/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog category list [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue-type/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog issue-type create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | 種別名 |
| `--color` | | string | Yes | 表示色(`#hex` 形式) |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue-type/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog issue-type delete <id> [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--substitute-issue-type-id` | | number | Yes | 代替種別 ID |
| `--confirm` | | boolean | No | 確認プロンプトをスキップ |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue-type/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog issue-type edit <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | 種別名 |
| `--color` | | string | 表示色(`#hex` 形式) |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue-type/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog issue-type list [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog issue create [flags]

| フラグ | 短縮 | 型 | 必須 | デフォルト | 説明 |
|--------|------|------|------|------------|------|
| `--project` | `-p` | string | Yes* | — | プロジェクトキー |
| `--project` | `-p` | string | Yes* | — | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--title` | `-t` | string | Yes* | — | 課題の件名 |
| `--type` | `-T` | string | Yes* | — | 課題種別名 |
| `--priority` | `-P` | string | Yes* | — | 優先度名 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/issue/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog issue list [flags]

| フラグ | 短縮 | 型 | デフォルト | 説明 |
|--------|------|------|------------|------|
| `--project` | `-p` | string | — | プロジェクトキー(カンマ区切りで複数可) |
| `--project` | `-p` | string | — | プロジェクトキー(カンマ区切りで複数可)(env: `BACKLOG_PROJECT`) |
| `--assignee` | `-a` | string | — | 担当者(ユーザー名 or `@me`) |
| `--status` | `-S` | string | — | ステータス名(カンマ区切りで複数可) |
| `--type` | `-T` | string | — | 課題種別名(カンマ区切りで複数可) |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/milestone/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog milestone create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | マイルストーン名 |
| `--description` | `-d` | string | No | 説明 |
| `--start-date` | | string | No | 開始日(`yyyy-MM-dd`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/milestone/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog milestone delete <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--confirm` | | boolean | 確認プロンプトをスキップ |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/milestone/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog milestone edit <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | マイルストーン名 |
| `--description` | `-d` | string | 説明 |
| `--start-date` | | string | 開始日(`yyyy-MM-dd`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/milestone/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog milestone list [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/close.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr close <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |
| `--comment` | `-c` | string | クローズコメント |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/comment.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr comment <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |
| `--body` | `-b` | string | コメント本文(`-` で標準入力) |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr comments <number> [flags]

| フラグ | 短縮 | 型 | デフォルト | 説明 |
|--------|------|------|------------|------|
| `--project` | `-p` | string | — | プロジェクトキー |
| `--project` | `-p` | string | — | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | — | リポジトリ名 |
| `--limit` | `-L` | number | `20` | 取得件数 |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog pr create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | Yes | リポジトリ名 |
| `--title` | `-t` | string | Yes* | PR タイトル |
| `--body` | `-b` | string | Yes* | PR 説明 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr edit <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |
| `--title` | `-t` | string | タイトル |
| `--body` | `-b` | string | 説明 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog pr list [flags]

| フラグ | 短縮 | 型 | デフォルト | 説明 |
|--------|------|------|------------|------|
| `--project` | `-p` | string | — | プロジェクトキー |
| `--project` | `-p` | string | — | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | — | リポジトリ名 |
| `--status` | `-S` | string | `open` | ステータス(`open` / `closed` / `merged`、カンマ区切り) |
| `--assignee` | `-a` | string | — | 担当者(ユーザー名 or `@me`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr merge <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |
| `--comment` | `-c` | string | マージコメント |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/reopen.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr reopen <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/status.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog pr status [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/pr/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog pr view <number> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--repo` | `-R` | string | リポジトリ名 |
| `--comments` | | boolean | コメントも表示する |
| `--web` | | boolean | ブラウザで開く |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/repo/clone.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Backlog Git リポジトリをローカルにクローンします。

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--directory` | `-d` | string | クローン先ディレクトリ |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/repo/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Git リポジトリの詳細情報を表示します。

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--web` | | boolean | ブラウザで開く |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/status-type/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog status-type create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | ステータス名 |
| `--color` | | string | Yes | 表示色(`#hex` 形式) |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/status-type/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ backlog status-type delete <id> [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--substitute-status-id` | | number | Yes | 代替ステータス ID |
| `--confirm` | | boolean | No | 確認プロンプトをスキップ |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/status-type/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog status-type edit <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | ステータス名 |
| `--color` | | string | 表示色(`#hex` 形式) |

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/status-type/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog status-type list [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/webhook/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog webhook create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes | Webhook 名 |
| `--hook-url` | | string | Yes | 通知先 URL |
| `--description` | `-d` | string | No | 説明 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/webhook/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog webhook delete <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--confirm` | | boolean | 確認プロンプトをスキップ |

## 使用例
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/webhook/edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog webhook edit <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Webhook 名 |
| `--hook-url` | | string | 通知先 URL |
| `--description` | `-d` | string | 説明 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/webhook/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog webhook list [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/webhook/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ backlog webhook view <id> [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/wiki/count.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog wiki count [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/wiki/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backlog wiki create [flags]

| フラグ | 短縮 | 型 | 必須 | 説明 |
|--------|------|------|------|------|
| `--project` | `-p` | string | Yes | プロジェクトキー |
| `--project` | `-p` | string | Yes | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--name` | `-n` | string | Yes* | ページ名 |
| `--body` | `-b` | string | Yes* | 本文 |
| `--notify` | | boolean | No | メール通知 |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/wiki/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Wiki ページの一覧を取得します。

| フラグ | 短縮 | 型 | デフォルト | 説明 |
|--------|------|------|------------|------|
| `--project` | `-p` | string | — | プロジェクトキー |
| `--project` | `-p` | string | — | プロジェクトキー(env: `BACKLOG_PROJECT`) |
| `--keyword` | `-k` | string | — | キーワード検索 |
| `--sort` | | string | `updated` | ソートキー |
| `--order` | | string | `desc` | 並び順(`asc` / `desc`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/commands/wiki/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ backlog wiki tags [flags]

| フラグ | 短縮 | 型 | 説明 |
|--------|------|------|------|
| `--project` | `-p` | string | プロジェクトキー |
| `--project` | `-p` | string | プロジェクトキー(env: `BACKLOG_PROJECT`) |

## 使用例

Expand Down
Loading