From 50afcae9f4dd8172f55676b9c0f2366f3b496347 Mon Sep 17 00:00:00 2001 From: Bittu kumar Date: Mon, 29 Jun 2026 04:38:47 +0530 Subject: [PATCH] docs: improve CLI flags table readability (#323) * docs(readme): improve CLI flags table readability * feat: add more details * docs(cli-reference): keep table default markers consistent Revert the "no default" markers for --target and --no-input from em dash back to the plain hyphen used in every other CLI-reference table, and drop the code-font styling on the descriptive "ktx project dir" default so it reads as text rather than a literal value. Co-Authored-By: Claude Opus 4.8 --------- Co-authored-by: Luca Martial Co-authored-by: Claude Opus 4.8 --- docs-site/content/docs/cli-reference/ktx-setup.mdx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs-site/content/docs/cli-reference/ktx-setup.mdx b/docs-site/content/docs/cli-reference/ktx-setup.mdx index 7b66ed81..700de548 100644 --- a/docs-site/content/docs/cli-reference/ktx-setup.mdx +++ b/docs-site/content/docs/cli-reference/ktx-setup.mdx @@ -29,10 +29,18 @@ below. | `--agents` | Install agent configuration and rules only | `false` | | `--target ` | Agent target: `claude-code`, `claude-desktop`, `codex`, `cursor`, `opencode`, or `universal` | - | | `--global` | Install agent integration into the global target scope for `claude-code` or `codex` | `false` | -| `--install-dir ` | Directory to install project-scoped agent config into. Defaults to the ktx project directory; resolved against the current directory and created if missing. Use it to install `.claude/`, `.mcp.json`, and rules where you open your agent (e.g. `--install-dir .`). Mutually exclusive with `--global` and `--local` | ktx project dir | +| `--install-dir ` | Install project-scoped agent configuration | ktx project dir | | `--yes` | Accept project creation and runtime install defaults where setup asks for confirmation | `false` | | `--no-input` | Disable interactive terminal input | - | +> **`--install-dir `** +> +> Installs project-scoped agent configuration into the specified directory. +> The path is resolved against the current directory and created if it doesn't +> exist. Use it to install `.claude/`, `.mcp.json`, and rules where you open +> your agent (for example, `--install-dir .`). This option is mutually exclusive +> with `--global` and `--local`. + Use the global `--project-dir ` option when setup should target a specific directory.