Skip to content

Commit 8c3e9db

Browse files
committed
Quick UI tweak
1 parent d1d5c82 commit 8c3e9db

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ The toolkit supports multiple AI coding assistants, allowing teams to use their
1010

1111
---
1212

13+
## General practices
14+
15+
- Any changes to `__init__.py` for the Specify CLI require a version rev in `pyproject.toml` and addition of entries to `CHANGELOG.md`.
16+
1317
## Adding New Agent Support
1418

1519
This section explains how to add support for new AI agents/assistants to the Specify CLI. Use this guide as a reference when integrating new AI tools into the Spec-Driven Development workflow.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to the Specify CLI will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.9] - 2025-09-19
9+
10+
### Changed
11+
12+
- Improved agent selector UI with cyan highlighting for agent keys and gray parentheses for full names
13+
814
## [0.0.8] - 2025-09-19
915

1016
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "specify-cli"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
description = "Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)."
55
requires-python = ">=3.11"
66
dependencies = [

src/specify_cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,9 @@ def create_selection_panel():
240240

241241
for i, key in enumerate(option_keys):
242242
if i == selected_index:
243-
table.add_row("▶", f"[bright_cyan]{key}: {options[key]}[/bright_cyan]")
243+
table.add_row("▶", f"[bright_cyan]{key}[/bright_cyan] [dim]({options[key]})[/dim]")
244244
else:
245-
table.add_row(" ", f"[white]{key}: {options[key]}[/white]")
245+
table.add_row(" ", f"[cyan]{key}[/cyan] [dim]({options[key]})[/dim]")
246246

247247
table.add_row("", "")
248248
table.add_row("", "[dim]Use ↑/↓ to navigate, Enter to select, Esc to cancel[/dim]")

0 commit comments

Comments
 (0)