From dd7d23c4400e3994c627e2b2c233a5f10ef684d8 Mon Sep 17 00:00:00 2001 From: jawwad-ali Date: Wed, 22 Jul 2026 10:14:53 +0500 Subject: [PATCH] docs(core): document the 'py' (Python) --script type in the init option table 'specify init --script' accepts sh, ps, or py (init.py + SCRIPT_TYPE_CHOICES in _agent_config.py), and 'specify init --script py' scaffolds Python scripts. The core.md option reference listed only 'sh|ps', so a user following the canonical docs never learns about --script py. Update the option row to sh|ps|py. Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/reference/core.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/core.md b/docs/reference/core.md index ea3c4794a8..fad62fc36b 100644 --- a/docs/reference/core.md +++ b/docs/reference/core.md @@ -12,7 +12,7 @@ specify init [] | ------------------------ | ------------------------------------------------------------------------ | | `--integration ` | AI coding agent integration to use (e.g. `copilot`, `claude`, `gemini`). See the [Integrations reference](integrations.md) for all available keys | | `--integration-options` | Options for the integration (e.g. `--integration-options="--commands-dir .myagent/cmds"`) | -| `--script sh\|ps` | Script type: `sh` (bash/zsh) or `ps` (PowerShell) | +| `--script sh\|ps\|py` | Script type: `sh` (bash/zsh), `ps` (PowerShell), or `py` (Python) | | `--here` | Initialize in the current directory instead of creating a new one | | `--force` | Force merge/overwrite when initializing in an existing directory | | `--ignore-agent-tools` | Skip checks for AI coding agent CLI tools |